/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600&family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

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

:root {
    /* Black and White Theme Colors */
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #666666;
    --dark-text: #000000;
    --light-text: #333333;
    --bg-light: #FFFFFF;
    --bg-accent: #F5F5F5;
    --white: #FFFFFF;
    --black: #000000;
    --border-color: #000000;
    --error-color: #FF0000;
    --success-color: #00FF00;
    --gray-light: #F5F5F5;
    --gray-medium: #CCCCCC;
    --transition: all 0.3s ease;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 2px;
}

body {
    font-family: 'Raleway', sans-serif;
    color: #000000;
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #000000;
}

p {
    margin-bottom: 1rem;
    color: #000000;
}

a {
    text-decoration: none;
    color: #000000;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #000000;
    font-family: 'Raleway', sans-serif;
}

.btn-primary {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}

.btn-primary:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.btn-secondary:hover {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo img {
    height: 60px;
    margin-right: 10px;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

header.scrolled .logo h1 {
    color: #000000;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFFFFF;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.icon-link span{
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
}
header.scrolled .icon-link {
    color: #000000;
}

.icon-link i {
    font-size: 1.2rem;
}

.icon-link:hover {
    color: #FFFFFF;
    transform: scale(1.05);
}

header.scrolled .icon-link:hover {
    color: #333333;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #FFFFFF;
    color: #000000;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure it appears above other elements */
}

/* Responsive styles for cart icon */
@media (max-width: 768px) {
    .header-right .cart-icon {
        margin-left: 10px; /* Add some spacing in smaller screens */
    }
    
    .header-right .cart-icon .icon-link span {
        display: none; /* Hide the text on smaller screens */
    }
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

header.scrolled .login-btn {
    color: #000000;
    border-color: #000000;
}

.login-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

header.scrolled .login-btn:hover {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.signup-btn {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #FFFFFF;
}

.signup-btn:hover {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

header.scrolled .signup-btn {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}

header.scrolled .signup-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 10px 0;
    min-width: 150px;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.user-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 8px 15px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #F5F5F5;
}

.dropdown-item i {
    font-size: 1rem;
}

/* Cart Dropdown */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 15px;
    min-width: 300px;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cart-icon:hover .cart-dropdown {
    display: block;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #EEEEEE;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #000000;
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.quantity-btn {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
    background-color: transparent;
    cursor: pointer;
}

.cart-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #EEEEEE;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.cart-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.cart-actions .btn {
    flex: 1;
    text-align: center;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
    header {
        background-color: #FFFFFF;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }

    .logo h1 {
        color: #000000;
    }

    .icon-link {
        color: #000000;
    }

    .icon-link:hover {
        color: #333333;
    }

    .main-menu {
        display: none;
    }

    .main-menu.active {
        display: block;
        width: 100%;
        background-color: #FFFFFF;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .main-menu li {
        width: 100%;
    }

    .main-menu li a {
        color: #000000 !important;
        padding: 15px 20px;
        display: block;
        width: 100%;
        text-align: left;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .main-menu li a.active {
        color: #000000 !important;
        font-weight: 700;
        background-color: rgba(0, 0, 0, 0.05);
    }

    .main-menu li a:hover {
        color: #000000 !important;
        font-weight: 700;
        background-color: rgba(0, 0, 0, 0.05);
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .header-right {
        display: none;
    }

    .main-menu.active .header-right {
        display: block;
        width: 100%;
        padding: 15px 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        order: 2;
    }

    .user-actions {
        display: none;
    }

    .main-menu.active .user-actions {
        display: block;
        width: 100%;
        padding: 15px 0;
        order: 3;
    }

    .auth-buttons {
        display: none;
    }

    .main-menu.active .auth-buttons {
        display: block;
        width: 100%;
        padding: 0 20px;
        order: 4;
    }

    .auth-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .login-btn {
        color: #000000;
        border: 1px solid #000000;
    }

    .login-btn:hover {
        background-color: #000000;
        color: #FFFFFF;
        border: 2px solid #000000;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .signup-btn {
        background-color: #000000;
        color: #FFFFFF;
        border: 1px solid #000000;
    }

    .signup-btn:hover {
        background-color: transparent;
        color: #FFFFFF;
        border: 2px solid #FFFFFF;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cart-icon {
        display: none;
    }

    .main-menu.active .cart-icon {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        order: 5;
        text-decoration: none;
        color: #000000;
        position: relative;
        width: 100%;
    }

    .main-menu.active .cart-icon .icon-link {
        display: flex;
        align-items: center;
        color: #000000;
        text-decoration: none;
        font-weight: 500;
        width: 100%;
    }

    .main-menu.active .cart-icon .icon-link i {
        margin-right: 8px;
        font-size: 1.1rem;
        color: #000000;
    }

    .main-menu.active .cart-icon .icon-link span {
        display: inline-block !important;
        color: #000000 !important;
        font-size: 1rem;
        font-weight: 500;
    }

    .main-menu.active .cart-icon .cart-count {
        margin-left: auto;
        background-color: #000000;
        color: #FFFFFF;
        padding: 2px 6px;
        border-radius: 10px;
        font-size: 0.8rem;
        position: relative;
        top: 0;
        right: 0;
    }
}

/* Add this at the end of the file */
.mobile-menu-toggle {
    cursor: pointer;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    transition: all 0.3s ease;
}

header.scrolled nav {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.main-menu {
    display: flex;
    justify-content: flex-start;
    margin-left: 10px;
}

.main-menu li a {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    color: #FFFFFF;
}

header.scrolled .main-menu li a {
    color: #000000;
}

.main-menu li a:hover, .main-menu li a.active {
    color: #FFFFFF;
}

header.scrolled .main-menu li a:hover, 
header.scrolled .main-menu li a.active {
    color: #333333;
}

.main-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

header.scrolled .main-menu li a::after {
    background-color: #333333;
}

.main-menu li a:hover::after, .main-menu li a.active::after {
    width: 70%;
}

/* Update active state for transparent navbar */
.main-menu li a.active {
    color: #FFFFFF;
}

header.scrolled .main-menu li a.active {
    color: #333333;
}

/* Update hover state for transparent navbar */
.main-menu li a:hover {
    color: #FFFFFF;
}

header.scrolled .main-menu li a:hover {
    color: #333333;
}

/* Hero Section */
.hero {
    background-image: url('Assets/6.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 60px;
}

.hero-text {
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.hero-text .subtitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
    color: var(--white);
}

.hero-text h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    animation: slideInLeft 1s ease-out;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
    animation: slideInRight 1s ease-out;
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #000000;
    animation: scaleIn 0.6s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--secondary-color);
}

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

.feature-card p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Categories Section */
.categories {
    padding: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 300px;
    background-color: #FFFFFF;
    border: 1px solid #000000;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
}

.category-content h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Featured Products Section */
.featured-products {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark-text);
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
    text-transform: lowercase;
    font-family: 'Raleway', sans-serif;
}

.section-divider {
    width: 80px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 0 auto;
}

.featured-star {
    font-size: 0.8rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.featured-products {
    padding: 60px 0 80px;
    background-color: #fafafa;
}

.products-grid {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 18px 16px 16px 16px;
    margin: 16px;
    display: inline-block;
    vertical-align: top;
    width: 220px;
    min-height: 340px;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: center;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.03);
}

.product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #f7f7f7;
}

.product-card strong {
    font-size: 1.1rem;
    color: #222;
    display: block;
    margin-bottom: 6px;
}

.product-card div {
    margin-bottom: 6px;
}

.product-card .product-price {
    color: #e55353;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-card .product-description {
    color: #555;
    font-size: 0.97rem;
    min-height: 40px;
}

@media (max-width: 700px) {
  .product-card {
    width: 95%;
    margin: 12px auto;
    min-height: 0;
  }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: #FFFFFF;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid #000000;
}

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

.testimonial-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #000000;
}

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

.testimonial-content {
    flex-grow: 1;
}

.testimonial-stars {
    color: #000000;
    margin-bottom: 15px;
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    margin-top: 15px;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #333333;
    font-size: 0.9rem;
}

.testimonial-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.testimonial-nav-btn:hover {
    background: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    transform: scale(1.1);
}

.testimonial-nav-btn:focus {
    outline: none;
}

/* Responsive styles for testimonials */
@media (max-width: 992px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .testimonial-avatar {
        margin-bottom: 20px;
    }

    .testimonial-navigation {
        position: relative;
        margin-top: 20px;
        justify-content: center;
        gap: 20px;
    }
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background-color: #FFFFFF;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid #000000;
    animation: scaleIn 0.6s ease-out;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-content {
    padding: 25px 20px;
    position: relative;
}

.blog-date {
    font-size: 0.7rem;
    color: #000000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date i {
    margin-right: 5px;
    font-size: 0.8rem;
}

.blog-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    color: #000000;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--secondary-color);
}

.blog-excerpt {
    color: #000000;
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-text);
    border: 1px solid var(--dark-text);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: #FFFFFF;
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    background-color: #FFFFFF;
    color: #000000;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #FFFFFF;
    color: var(--dark-text);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column p {
    color: #000000;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    background-color: #333333;
    transform: scale(1.2);
}

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

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--secondary-color);
    min-width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.payment-methods {
    display: flex;
}

.payment-methods i {
    font-size: 1.5rem;
    margin-left: 10px;
    color: var(--dark-text);
}

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

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 50px auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal-product-details {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.modal-product-image {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-product-info {
    flex: 1;
}

.modal-product-info h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    color: #333;
}

.modal-product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.modal-product-description {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.purchase-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: none;
    background-color: #f0f0f0;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

#quantity {
    width: 60px;
    text-align: center;
    font-weight: bold;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* Responsive Modal */
@media (max-width: 992px) {
    .modal-content {
        margin: 20px auto;
        padding: 20px;
        width: 95%;
    }

    .modal-product-details {
        flex-direction: column;
    }

    .modal-product-image {
        width: 100%;
        height: 200px;
    }
}

/* Responsive Styles */
/* @media (max-width: 992px) {
    .features-grid,
    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .product-details {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .purchase-form {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 30px;
    }
} */

@media (max-width: 992px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .search-bar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .header-right {
        flex-direction: column;
        width: 100%;
    }
    
    .main-menu {
        display: none;
    }
    
    .main-menu.active {
        display: flex;
        flex-direction: column;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 25px;
        right: 15px;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .newsletter-form input {
        margin-bottom: 10px;
    }

    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }

    .product-image {
        height: 250px;
    }

    .product-info {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .features-grid,
    .products-container,
    .categories-grid,
    .blog-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        margin-bottom: 15px;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .payment-methods i {
        margin: 0 5px;
    }

    .products-container {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 280px;
    }
}

/* Additional styles specific to Private Education page */
.hero4{
    background-image: url('/Assets/private.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
}
.blog-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.blog-filters {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: center;
}

.blog-search {
    position: relative;
    width: 300px;
}

.blog-search input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.blog-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-category {
    padding: 8px 16px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: capitalize;
}

.blog-category:hover, .blog-category.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.featured-post {
    margin-bottom: 40px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-post-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-post-image {
    height: 100%;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-content {
    padding: 30px;
}

.post-date {
    display: flex;
    align-items: center;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.post-date i {
    margin-right: 5px;
}

.featured-post-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.featured-post-excerpt {
    margin-bottom: 20px;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.no-posts {
    text-align: center;
    padding: 60px 0;
}

.no-posts h3 {
    margin-bottom: 20px;
}

.newsletter-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* @media (max-width: 992px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */

@media (max-width: 992px) {
    .featured-post-inner {
        grid-template-columns: 1fr;
    }
    
    .featured-post-image {
        height: 300px;
    }
    
    .blog-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-search {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: var(--border-radius);
    }
    
    .newsletter-form input {
        margin-bottom: 10px;
    }
}

/* Additional styles specific to Products page */
.hero2 {
    background-image: url('/Assets/7.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
}
.filters-section {
    padding: 30px 0;
    background-color: var(--bg-light);
}

.filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-title {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.search-filter {
    position: relative;
    width: 300px;
}

.search-filter input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.search-filter i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    justify-content: center;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-filter {
    padding: 15px 30px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.5s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-filter span {
    position: relative;
    z-index: 2;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.category-filter:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.category-filter:hover::before {
    opacity: 1;
}

.category-filter:hover span {
    color: var(--white);
}

.category-filter.active {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-filter.active span {
    color: var(--white);
}

.no-products {
    text-align: center;
    padding: 60px 0;
}

.no-products h3 {
    margin-bottom: 20px;
}

.care-guide {
    padding: 60px 0;
    background-color: var(--white);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.guide-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid #000000;
}

.guide-card h3 {
    margin-bottom: 20px;
}

.guide-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-step {
    display: flex;
    margin-bottom: 15px;
}

.step-number {
    font-weight: bold;
    color: var(--secondary-color);
    margin-right: 10px;
}

/* @media (max-width: 992px) {
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */

@media (max-width: 992px) {
    .filters-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-title {
        margin-bottom: 15px;
    }

    .search-filter {
        width: 100%;
        margin-bottom: 15px;
    }

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

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

/* Additional styles specific to Feedback page */
.hero6{
    background-image: url('/Assets/8.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
}
.feedback-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.feedback-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid #000000;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #000000;
    border-radius: var(--border-radius);
    background-color: #FFFFFF;
    color: #000000;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-col {
    flex: 1;
}

.rating-container {
    display: flex;
    gap: 5px;
}

.star {
    color: var(--gray-medium);
    font-size: 30px;
    cursor: pointer;
}

.star.active {
    color: var(--secondary-color);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.checkbox-container input {
    margin-top: 5px;
    margin-right: 10px;
    width: auto;
}

.testimonials-section {
    padding: 60px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid #000000;
}

.testimonial-stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #000000;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* @media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */

@media (max-width: 992px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional styles specific to About page */
.hero1{
    background-image: url('/Assets/9.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
}
.history-section, .mission-section, .approach-section, .team-section {
    padding: 60px 0;
}

.history-section {
    background-color: var(--white);
}

.mission-section {
    background-color: var(--bg-light);
}

.approach-section {
    background-color: var(--white);
}

.team-section {
    background-color: var(--bg-accent);
}

.about-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.about-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.about-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.about-cta .btn-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.history-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.history-image {
    flex: 1;
    position: relative;
}

.history-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.est-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-family: 'Playfair Display', serif;
}

.history-text {
    flex: 1;
}

.mission-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border: 1px solid #000000;
    animation: fadeIn 1s ease-out;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.mission-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    animation: fadeIn 1s ease-out;
}

.value-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #000000;
    animation: scaleIn 0.6s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2);
}

.approach-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.approach-text {
    flex: 1;
}

.approach-item {
    display: flex;
    margin-bottom: 20px;
    background-color: #FFFFFF;
    border: 1px solid #000000;
}

.approach-icon {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 3px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #000000;
    animation: fadeIn 0.8s ease-out;
    transition: transform 0.3s ease;
}

.team-image {
    height: 300px;
    overflow: hidden;
}

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

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-title {
    color: #000000;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    color: #000000;
    font-size: 0.9rem;
}

/* @media (max-width: 992px) {
    .values-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} */

@media (max-width: 992px) {
    .history-content, .approach-content {
        flex-direction: column;
    }
    
    .history-image, .history-text, .approach-image, .approach-text {
        width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

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

/* Additional styles specific to Contact page */
.hero3{
    background-image: url('/Assets/10.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    min-height: 500px;
}
.contact-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form {
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #000000;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
}

.contact-details h4 {
    margin-bottom: 5px;
}

.contact-details p {
    color: #000000;
    margin-bottom: 0;
}

.social-media {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #000000;
    border-radius: var(--border-radius);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.map-section {
    padding: 60px 0;
}

.map-container {
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Update any remaining text colors */
p, span, a, li, label, input, textarea, select {
    color: #000000;
}

/* Update Contact Form Button */
.contact-form .btn-primary {
    display: block;
    margin: 0 auto;
    min-width: 200px;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}

.contact-form .btn-primary:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Update Feedback Form Button */
.feedback-form-container .btn-primary {
    display: block;
    margin: 30px auto 0;
    min-width: 200px;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
}

.feedback-form-container .btn-primary:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Add specific styles for the feedback form submit button */
.feedback-form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback-form-container .form-group {
    width: 100%;
}

/* Update Product Categories Styling */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    justify-content: center;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-filter {
    padding: 15px 30px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.5s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-filter span {
    position: relative;
    z-index: 2;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.category-filter:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.category-filter:hover::before {
    opacity: 1;
}

.category-filter:hover span {
    color: var(--white);
}

.category-filter.active {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-filter.active span {
    color: var(--white);
}

@media (max-width: 992px) {
    .category-filters {
        gap: 15px;
        padding: 15px;
    }
    
    .category-filter {
        min-width: 150px;
        padding: 12px 25px;
        font-size: 0.8rem;
    }
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Apply animations to elements */
.hero-text {
    animation: fadeIn 1s ease-out;
}

.hero-text h2 {
    animation: slideInLeft 1s ease-out;
}

.hero-text p {
    animation: slideInRight 1s ease-out;
}

.feature-card {
    animation: scaleIn 0.6s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card {
    animation: scaleIn 0.6s ease-out;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.team-card {
    animation: fadeIn 0.8s ease-out;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image img {
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.category-filter {
    animation: scaleIn 0.5s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-filter:hover {
    transform: translateY(-8px) scale(1.05);
}

.testimonial-card {
    animation: fadeIn 0.8s ease-out;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.blog-card {
    animation: scaleIn 0.6s ease-out;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.social-links a {
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Add animation delays for staggered effects */
.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.6s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay:  0.4s;
}

.product-card:nth-child(4) {
    animation-delay: 0.6s;
}

.team-card:nth-child(2) {
    animation-delay: 0.2s;
}

.team-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add animation to form elements */
.form-group input,
.form-group textarea,
.form-group select {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Add animation to navigation menu items */
.main-menu li a {
    transition: all 0.3s ease;
}

.main-menu li a:hover {
    transform: translateY(-2px);
}

/* Add animation to logo */
.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Mission Section Animations */
.mission-card {
    animation: fadeIn 1s ease-out;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.mission-icon {
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
}

.values-grid {
    animation: fadeIn 1s ease-out;
}

.value-card {
    animation: scaleIn 0.6s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.value-icon {
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2);
}

/* Add staggered animation delays for value cards */
.value-card:nth-child(2) {
    animation-delay: 0.2s;
}

.value-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Add animation for mission section text */
.mission-card h3 {
    animation: slideInLeft 0.8s ease-out;
}

.mission-card p {
    animation: slideInRight 0.8s ease-out;
}

.value-card h3 {
    animation: fadeIn 0.8s ease-out;
}

.value-card p {
    animation: fadeIn 0.8s ease-out;
}

header.scrolled .cart-icon .icon-link {
    color: #000000;
}

header.scrolled .cart-icon .icon-link:hover {
    color: #333333;
}

header.scrolled .cart-count {
    background-color: #000000;
    color: #FFFFFF;
}

.cart-icon .icon-link span {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    transition: color 0.3s ease;
}

header.scrolled .cart-icon .icon-link span {
    color: #000000;
}

header.scrolled .cart-icon .icon-link:hover span {
    color: #333333;
}

.checkout-btn {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Form Submit Button Styles */
.form-submit-btn {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin: 20px auto;
    display: block;
}

.form-submit-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Login and Signup Form Specific Styles */
.login-form .form-submit-btn,
.signup-form .form-submit-btn {
    margin-top: 30px;
}

.login-form .form-submit-btn:hover,
.signup-form .form-submit-btn:hover {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Additional Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

/* Apply animations to elements */
/* Hero Section */
.hero-text .subtitle {
    animation: fadeInDown 1s ease-out;
}

.hero-text h2 {
    animation: fadeInLeft 1s ease-out;
}

.hero-text p {
    animation: fadeInRight 1s ease-out;
}

/* Features Section */
.feature-card {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Categories Section */
.category-card {
    animation: fadeInUp 0.8s ease-out;
}

.category-card:hover img {
    animation: pulse 1s infinite;
}

/* Products Section */
.product-card {
    animation: fadeInUp 0.8s ease-out;
}

.product-badge {
    animation: fadeInDown 0.8s ease-out;
}

.product-actions {
    animation: fadeInRight 0.8s ease-out;
}

/* Testimonials Section */
.testimonial-card {
    animation: fadeInUp 0.8s ease-out;
}

.testimonial-avatar {
    animation: pulse 2s infinite;
}

.testimonial-stars {
    animation: fadeInDown 0.8s ease-out;
}

/* Blog Section */
.blog-card {
    animation: fadeInUp 0.8s ease-out;
}

.blog-image {
    animation: fadeInDown 0.8s ease-out;
}

.blog-date {
    animation: fadeInLeft 0.8s ease-out;
}

.blog-title {
    animation: fadeInRight 0.8s ease-out;
}

/* Newsletter Section */
.newsletter-content h3 {
    animation: fadeInDown 0.8s ease-out;
}

.newsletter-content p {
    animation: fadeInUp 0.8s ease-out;
}

.newsletter-form {
    animation: fadeInUp 1s ease-out;
}

/* Footer Section */
.footer-column {
    animation: fadeInUp 0.8s ease-out;
}

.social-links a {
    animation: bounce 2s infinite;
}

/* Contact Section */
.contact-info-item {
    animation: fadeInLeft 0.8s ease-out;
}

.contact-form {
    animation: fadeInRight 0.8s ease-out;
}

/* Feedback Section */
.feedback-form-container {
    animation: fadeInUp 0.8s ease-out;
}

.testimonial-item {
    animation: fadeInUp 0.8s ease-out;
}

/* About Section */
.history-content {
    animation: fadeInUp 0.8s ease-out;
}

.mission-card {
    animation: fadeInUp 0.8s ease-out;
}

.value-card {
    animation: fadeInUp 0.8s ease-out;
}

.team-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Add staggered animation delays */
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }
.feature-card:nth-child(4) { animation-delay: 0.6s; }

.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.4s; }
.product-card:nth-child(4) { animation-delay: 0.6s; }

.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.4s; }

.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.4s; }

.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.4s; }
.footer-column:nth-child(4) { animation-delay: 0.6s; }

/* Add hover animations */
.btn:hover {
    animation: pulse 0.5s ease-in-out;
}

.social-links a:hover {
    animation: bounce 0.5s ease-in-out;
}

.feature-icon:hover {
    animation: rotate 1s ease-in-out;
}

/* Add loading animation for images */
img {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

/* Add scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add animation to form elements */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    animation: pulse 0.5s ease-in-out;
}

/* Add animation to navigation menu items */
.main-menu li a {
    position: relative;
    overflow: hidden;
}

.main-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.main-menu li a:hover::after {
    transform: translateX(0);
}

/* Add animation to logo */
.logo {
    animation: fadeInDown 1s ease-out;
}

.logo:hover {
    animation: pulse 0.5s ease-in-out;
}

/* Add animation to cart icon */
.cart-icon {
    animation: fadeInRight 1s ease-out;
}

.cart-count {
    animation: bounce 2s infinite;
}

/* Add animation to mobile menu toggle */
.mobile-menu-toggle span {
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    animation: pulse 0.5s ease-in-out;
}

/* Navigation Menu Active State */
.main-menu li a {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    color: #FFFFFF;
}

header.scrolled .main-menu li a {
    color: #000000;
}

/* Active and Hover States */
.main-menu li a.active {
    color: #FFFFFF;
    font-weight: 700;
}

header.scrolled .main-menu li a.active {
    color: #000000;
    font-weight: 700;
}

.main-menu li a:hover {
    color: #FFFFFF;
    font-weight: 600;
}

header.scrolled .main-menu li a:hover {
    color: #000000;
    font-weight: 600;
}

/* Underline Animation */
.main-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

header.scrolled .main-menu li a::after {
    background-color: #000000;
}

.main-menu li a:hover::after {
    width: 70%;
}

.main-menu li a.active::after {
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
}

header.scrolled .main-menu li a.active::after {
    background-color: #000000;
}

/* Mobile Menu Active State */
@media (max-width: 992px) {
    .main-menu li a.active {
        color: #000000 !important;
        font-weight: 700;
        background-color: rgba(0, 0, 0, 0.05);
        border-bottom: 2px solid #000000;
    }

    .main-menu li a:hover {
        color: #000000 !important;
        font-weight: 600;
        background-color: rgba(0, 0, 0, 0.05);
    }

    .main-menu li a::after {
        display: none;
    }
}

