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

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d97706;
}

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

.phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.mobile-menu-btn {
    display: none;
}

.mobile-call-btn {
    display: none;
}

.nav-mobile {
    display: none;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

.btn-primary:hover {
    background-color: #b45309;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #d97706;
    border: 2px solid #d97706;
}

.btn-outline:hover {
    background-color: #d97706;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-green {
    color: #059669;
    border-color: #059669;
}

.btn-green:hover {
    background-color: #059669;
    color: white;
}

.btn-blue {
    color: #2563eb;
    border-color: #2563eb;
}

.btn-blue:hover {
    background-color: #2563eb;
    color: white;
}

.btn-orange {
    color: #ea580c;
    border-color: #ea580c;
}

.btn-orange:hover {
    background-color: #ea580c;
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fefcf8 0%, #ede3c8 100%);
    text-align: center;
}

.hero-content {
    margin-bottom: 60px;
}

.stars {
    color: #6b4d06;
    font-size: 24px;
    margin-bottom: 15px;
}

.quality-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-section h1 {
    font-size: 56px;
    color: #1f2937;
    line-height: 1.1;
    font-weight: 700;
}

.tagline {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: -70px;
}
@media (max-width: 480px) {
    .tagline {
        font-size: 14px;
        margin-bottom: -50px; /* Optional: adjust if spacing feels off */
    }
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-image {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
}

 .container {
      max-width: 1200px;
      margin: auto;
      padding: 1rem;
    }

    .row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }

    .card {
      border-radius: 1.25rem;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      background-color: #fff;
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .col {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0.5rem;
    }

    /* Responsive columns */
    .col-4 {
      flex: 1 1 calc(33.333% - 1rem);
    }

    .col-12 {
      flex: 1 1 100%;
    }

    /* Card sizes */
    .card-small {
      width: 300px;
      height: 350px;
    }

    .card-large {
      width: 100%;
      height: 400px;
    }

    @media (max-width: 768px) {
      .col-4 {
        flex: 1 1 100%;
      }

      .card-small, .card-large {
        width: 100%;
      }
    }

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

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.product-image {
    height: 250px;
    overflow: hidden;
}

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

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

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1f2937;
}

.product-content p {
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #1f2937;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background-color: white;
}

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

.brand-card {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.brand-card.green {
    background: linear-gradient(135deg, #faf6ec 0%, #fdf9f0 100%);
}

.brand-card.blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.brand-card.orange {
    background: linear-gradient(135deg, #fdf9f0 0%, #eee8da 100%);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    height: 80px;
    width: auto;
    margin-bottom: 25px;
}

.brand-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1f2937;
}

.brand-card p {
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

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

.category-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1f2937;
}

.category-image {
    height: 200px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

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

.featured-product {
    font-weight: 600;
    color: #d97706;
    margin-bottom: 15px;
}

.product-list {
    list-style: none;
}

.product-list li {
    padding: 8px 0;
    color: #6b7280;
    border-bottom: 1px solid #f3f4f6;
}

.product-list li:last-child {
    border-bottom: none;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: white;
}

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

.testimonial-card {
    background: #f9fafb;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card .stars {
    margin-bottom: 25px;
}

.testimonial-card p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.6;
    font-style: italic;
}

.customer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.customer-info strong {
    color: #1f2937;
    font-size: 18px;
}

.customer-info span {
    color: #6b7280;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: #d97706;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    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: #d97706;
}

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

/* Footer */
.footer {
    background-color: #1f2937;
    text-align: center;
    color: white;
}
@media (max-width: 480px) {
  .footer {
    padding-top: 15px;
  }
}
.footer-bottom a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  display: inline;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


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

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d97706;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    padding-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 48px;
    }
    
    .hero-image {
        width: 280px;
        height: 280px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .header-contact {
        display: none;
    }
    
    .mobile-call-btn {
        display: block;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .featured-grid,
    .brands-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .whatsapp-bubble {
        bottom: 80px;
        right: 20px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-bubble a {
        padding: 15px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 28px;
    }
    
    .hero-images {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image {
        width: 90%;
        height: auto;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .brand-card,
    .category-card,
    .testimonial-card {
        padding: 25px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Staggered animation delays */
.scroll-animate:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate:nth-child(5) { transition-delay: 0.5s; }
.scroll-animate:nth-child(6) { transition-delay: 0.6s; }
.scroll-animate:nth-child(7) { transition-delay: 0.7s; }
.scroll-animate:nth-child(8) { transition-delay: 0.8s; }

/* WhatsApp Bubble */
.whatsapp-bubble {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.whatsapp-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.whatsapp-bubble a {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.whatsapp-bubble a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
}

.whatsapp-text {
    white-space: nowrap;
}

/* Pulse animation for WhatsApp bubble */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

.whatsapp-bubble a {
    animation: whatsapp-pulse 2s infinite;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.brandname {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400; /* Replace with 700, 600, etc. if needed */
  font-style: normal;
}
.brandline {
 
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;

}