/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #1a365d;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: #2d6a9c;
    color: white;
}

.btn-primary:hover {
    background-color: #1a4d7c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #28a745;
    color: white;
}

.btn-secondary:hover {
    background-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1da851;
}

.btn-email {
    background-color: #EA4335;
    color: white;
}

.btn-email:hover {
    background-color: #d33426;
}

.btn-phone {
    background-color: #34B7F1;
    color: white;
}

.btn-phone:hover {
    background-color: #1aa3e6;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #2d6a9c;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a365d;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

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

.nav-links a {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d6a9c;
}

.nav-links a.active {
    color: #2d6a9c;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2d6a9c;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a365d;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 FULL PANEL COVER */
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* dark overlay for text readability */
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('assets/images/banner1.jpg');
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('assets/images/banner2.jpg');
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('assets/images/banner3.jpg');
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    padding: 30px;
    background-color: rgba(26, 54, 93, 0.7);
    border-radius: 8px;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
}

/* Brand Info Section */
.brand-info {
    padding: 80px 0;
    background-color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: #2d6a9c;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-img {
    height: 200px;
    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-info {
    padding: 20px;
}

.product-category {
    display: inline-block;
    background-color: #e8f4fc;
    color: #2d6a9c;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    min-height: 60px;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

/* Quick Links */
.quick-links {
    padding: 80px 0;
    background-color: white;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.link-card {
    display: block;
    padding: 40px 30px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.link-card:hover {
    background-color: #2d6a9c;
    color: white;
    transform: translateY(-5px);
}

.link-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2d6a9c;
}

.link-card:hover i {
    color: white;
}

.link-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.link-card p {
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: #1a365d;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-col p, .footer-col li {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #2d6a9c;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #2d6a9c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom i.fa-heart {
    color: #ff6b6b;
}

/* Page Header */
.page-header {
    padding: 100px 0 60px;
    background-color: #2d6a9c;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background-color: white;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-section p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.mv-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.mv-card i {
    font-size: 3rem;
    color: #2d6a9c;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.leadership {
    margin-bottom: 60px;
}

.leadership h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.team-card {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #e8f4fc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.team-img i {
    font-size: 3rem;
    color: #2d6a9c;
}

.team-card h3 {
    margin-bottom: 5px;
}

.team-card .role {
    color: #2d6a9c;
    font-weight: 500;
    margin-bottom: 15px;
}

.location {
    margin-bottom: 60px;
}

.location h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.location-text p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.location-text i {
    color: #2d6a9c;
    margin-right: 10px;
    margin-top: 3px;
}

.map-placeholder {
    height: 300px;
    background-color: #e8f4fc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2d6a9c;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background-color: white;
}

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

.contact-info h2, .contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    color: #2d6a9c;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-actions {
    margin-top: 40px;
}

.contact-actions h3 {
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.action-btn i {
    margin-right: 8px;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #1da851;
}

.email-btn {
    background-color: #EA4335;
    color: white;
}

.email-btn:hover {
    background-color: #d33426;
}

.phone-btn {
    background-color: #34B7F1;
    color: white;
}

.phone-btn:hover {
    background-color: #1aa3e6;
}

.contact-form-section p {
    margin-bottom: 30px;
    color: #666;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d6a9c;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.form-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Products Page Styles */
.products-filter {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.category-filter, .sort-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-filter label, .sort-filter label {
    font-weight: 500;
}

.category-filter select, .sort-filter select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 16px;
    min-width: 180px;
}

.products-section {
    padding: 60px 0;
    background-color: white;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h3 {
    margin-bottom: 10px;
}

.loading-spinner {
    text-align: center;
    padding: 40px;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #2d6a9c;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.order-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.order-info h2 {
    text-align: center;
    margin-bottom: 40px;
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #2d6a9c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.order-contact p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    z-index: 10;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 40px;
}

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

.detail-img {
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 20px;
}

.detail-category {
    display: inline-block;
    background-color: #e8f4fc;
    color: #2d6a9c;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.detail-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.info-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%; /* Agar circular image chahte ho */
    margin-bottom: 10px;
}
.info-card {
    text-align: center;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 10px;
    transition: transform 0.3s;
}
.info-card:hover {
    transform: translateY(-5px);
}
.team-img img {
    width: 120px;          /* size adjust karo */
    height: 120px;
    object-fit: cover;     /* image ko distort nahi hone dega */
    border-radius: 50%;    /* circular image */
    margin-bottom: 10px;
}

.team-card {
    text-align: center;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 15px;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}
.link-card img {
    width: 60px;        /* icon size adjust */
    height: 60px;
    object-fit: contain; /* distort na ho image */
    margin-bottom: 10px;
}

.link-card {
    text-align: center;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 10px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}



/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}
/* Add to Cart Button Styles */
/* Add to Cart Button Styles */
.btn-cart {
    background: #f39c12;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.btn-cart:hover {
    background: #e67e22;
}

.btn-success {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.btn-success:hover {
    background: #27ae60;
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.product-actions button {
    width: 100%;
    padding: 12px;
    font-size: 14px;
}

/* Cart quantity display */
.cart-quantity-display {
    background: #e8f4fc;
    padding: 8px 12px;
    border-radius: 5px;
    margin: 10px 0;
    font-size: 14px;
    color: #3498db;
    border-left: 3px solid #3498db;
}

.cart-quantity-display span {
    font-weight: 600;
}

/* Modal cart status */
.cart-status {
    background: #e8f6e8;
    padding: 12px 15px;
    border-radius: 5px;
    margin: 15px 0;
    color: #27ae60;
    border-left: 3px solid #2ecc71;
    font-size: 14px;
}

.cart-status i {
    margin-right: 8px;
}

/* Featured badge */
.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.product-img {
    position: relative;
}

/* Cart notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #2ecc71;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Cart icon badge */
.cart-icon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.nav-links a[href="cart.html"] {
    position: relative;
    display: flex;
    align-items: center;
}
.developer-name {
  background: linear-gradient(90deg, #1e90ff, #00c6ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}


.developer-name:hover {
  color: #0b5ed7;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 15px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-filter, .sort-filter {
        justify-content: space-between;
    }
    
    .contact-grid {
        gap: 40px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.2rem;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .info-grid, .links-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
}