html{
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Top Header */
.top-header {
    background-color: saddlebrown;
    padding: 10px 0;
    color: #fff;
}

.top-header-left {
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-header-left i {
    margin-right: 8px;
}

.top-header-right {
    display: flex;
    align-items: center;
}

.top-header-right li {
    margin-left: 20px;
    gap: 10px;
}

/* Main Header */
.main-header {
    border-top: 1px solid #8B5A2B;
    background-color: #fff;
    padding: 5px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.navbar ul {
    display: flex;
    gap: 20px;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    display: block;
    color: #222;
    font-weight: 600;
    padding: 15px 25px;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: saddlebrown;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown ul{
    display: none;
}

.navbar ul li:hover .dropdown-menu {
    display: block;
}

.header-icons {
    display: flex;
    gap: 15px;
}

.header-icons a {
    font-size: 18px;
    transition: color 0.3s;
}

.header-icons a:hover {
    color: #000;
}

.header-icons button {
    padding: 10px 20px;
    background-color: saddlebrown;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid rgb(139, 69, 69);
}

.header-icons button:hover {
    background-color: rgb(157, 108, 74);
    color: #000;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
}

/* Responsive Styles */
@media(max-width:955px){
    .navbar{
        display: flex;
        justify-content: space-evenly;
    }
    .navbar ul li a{
        padding: 10px;
    }
}
@media (max-width: 768px) {
    .top-header-left {
        align-items: center;
        gap: 5px;
    }

    .top-header-right {
        display: none;
    }

    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        top: 92px;
        border-top: 1px solid #8B5A2B;
        width: 500px;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .navbar.active {
        display: block;
    }

    .navbar ul {
        flex-direction: column;
        gap: 0;
    }

    .navbar ul li {
        text-align: left;
    }

    .navbar ul li a {
        padding: 12px;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background-color: #f4f4f4;
    }

    .navbar ul li:hover .dropdown-menu {
        display: none;
    }

    .navbar ul li.active .dropdown-menu {
        display: block;
    }

    .header-icons {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .top-header-left {
        font-size: 14px;
    }

    .logo img {
        max-width: 180px;
    }
}


/* CATEGORY LIST */

.category-list {
    list-style: none;
    display: flex;
    background-color: saddlebrown;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 3px;
}

.category-list li {
    display: block;
    border-right: 1px solid #fff;
    height: 20px;
    padding: 5px 15px;
    text-align: center;
}

.category-list li:last-child {
    border-right: none;
}

.category-list a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 5px;
    /* transition: all 0.3s ease-in-out; */
    /* border-right: 1px solid #fff; */
}

.category-list li a:hover {
    color: #000;
}
@media(max-width:1300px){
      .category-list a {
        font-size: 13px;
        font-weight: 500;
        padding: 5px 10px;
      }
}
@media (max-width: 768px) {
    .category-list {
        display: none;
    }
}

/* @media (min-width: 501px) {
    .category-list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .category-list li {
        margin: 0;
        padding: 5px 10px;
        height: auto;
        border-right: none;
    }
} */

/* BANNER SECTION */

.banner {
    position: relative;
    width: 100%;
    min-height: 550px;
    background: url('../images/banner.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.banner-content {
    position: relative;
    color: white;
    z-index: 1;
    max-width: 70%;
}

.banner-content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 10px 0;
}

@media(max-width:768px){
    .banner{
        min-height: 400px;
    }
}

/* Button Styling */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background-color: saddlebrown;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    background: #a0763a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .banner {
        min-height: 450px;
    }
    .banner-content h1 {
        font-size: 2.5rem;
    }
    .banner-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .banner {
        min-height: 400px;
    }
    .banner-content {
        max-width: 90%;
    }
    .banner-content h1 {
        font-size: 2rem;
    }
    .banner-content p {
        font-size: 0.95rem;
    }
    /* .btn {
        padding: 10px 20px;
        font-size: 16px;
    } */
}

@media (max-width: 480px) {
    .banner {
        min-height: 350px;
        padding: 15px;
    }
    .banner-content h1 {
        font-size: 1.8rem;
    }
    .banner-content p {
        font-size: 0.9rem;
    }
    /* .btn {
        padding: 8px 16px;
        font-size: 14px;
    } */
}



/* ABOIUT SECTION */
.about-section {
    padding: 50px 20px;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1 1 45%;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-content {
    flex: 1 1 45%;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 15px;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color:saddlebrown; 
}

.about-content .subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: saddlebrown;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-content p {
    font-size: 1rem;
    color: #222;
    line-height: 1.6;
    margin-bottom: 15px;
}

.services-section {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    width: 200px;
    color: #333;
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-item i {
    color: saddlebrown; 
    font-size: 1.4rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: saddlebrown; 
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #b8860b;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap:5px;
    }

    .about-image, .about-content {
        flex: 1 1 100%;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

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

    .services-section {
        gap: 15px;
    }

    .service-item {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 20px 10px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content .subtitle {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .services-section {
        flex-direction: column;
    }
}


/* PRODUCTS SECTION */
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-section {
    padding: 50px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.title{
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 10px;
}

.product-section .subtitle {
    font-size: 1.2rem;
    color: saddlebrown;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

.product-cards {
    background-color: #fff;
    border-radius: 3px;
    overflow: hidden;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-cards:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 230px;
    display: block;
    transition: transform 0.5s ease;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image:hover .overlay {
    opacity: 1;
}

.view-details {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-details:hover {
    background-color: saddlebrown;
    color: #fff;
}

.product-info {
    padding: 5px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.4rem;
    color: #222;
    margin-top: 5px;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 1.2rem;
    color: #b8860b; 
    margin-bottom: 15px;
    font-weight: 500;
}

.add-to-cart {
    background-color: #b8860b; 
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #a67c0a; 
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-section h2 {
        font-size: 2.2rem;
    }

    .product-section .subtitle {
        font-size: 1rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    .product-image img{
        width: 100%;
        height: 210px;
    }
   
}

@media (max-width: 480px) {
    .product-section {
        padding: 30px 0;
    }

    .product-section h2 {
        font-size: 2rem;
    }

    .product-info h3 {
        font-size: 1.3rem;
    }

    .product-info .price {
        font-size: 1rem;
    }

    .add-to-cart {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}


/* CATEGORIES */
.titlee{
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}
.category-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 20px;
    background-color: #f9f9f9;
}

.category-item {
    position: relative;
    width: 35%;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.category-image img {
    width: 100%;
    height: 350px;
    display: block;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px;
    text-align: center;
    transition: background 0.3s ease;
}

.category-item:hover .category-content {
    background: rgba(255, 255, 255, 1);
}

.category-content h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #333;
}

.category-content p {
    margin: 0 0 15px;
    font-size: 16px;
    color: #333;
}

.category-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.category-link:hover {
    background-color: #333;
}

@media(max-width:992px){
    .category-image img{
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .category-item {
        width: 100%;
    }
    .category-section{
        padding: 5px;
    }
    .category-image img{
        width: 100%;
        height: 220px;
    }
}


/* CTA Button */
.products-button {
    margin-top: 5px;
    padding: 30px;
    text-align: center;
}

.ctaa-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 500;
    align-items: center;
    background-color:#5a3822;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: saddlebrown;
}


/* FOOTER SECTION */

.footer {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 10px;
    margin-top: 60px;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
   
}

.footer-text {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    width: 250px;
    line-height: 1.5;
    margin-left: 3px;
}

.footer-links {
    list-style: none;
   
}

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

.footer-links i {
    padding: 5px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-links a:hover {
    color: #fff;
}

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

.social-links a i {
    font-size: 26px;
    gap: 15px;
    transition: opacity 0.3s ease;
}

.social-links a:hover i {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: left;
    }

    .footer-logo img{
        margin-top: 20px;
    }

    .footer-column {
        margin-bottom: 20px;
    }
    .social-links{
        margin-top: 30px;
    }
    .footer-logo{
        width: 200px;
        margin-top: 20px;
        text-align: center;
    }
}

.bottom-footer {
    background-color: #111;
    color: #fff;
    padding: 30px 0;
    border-top: 1px solid #444;
}

.bottom-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.copyright {
    font-size: 14px;
    margin: 0;
}

.legal-links {
    list-style: none;
    display: flex;
    gap: 15px; 
    margin: 0;
    padding: 0;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .bottom-footer-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .legal-links {
        justify-content: center;
    }
}


/* ABOUT BANNER */
.about-banner{
    position: relative;
    height: 500px; 
    background-image: url('../images/about-banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color:#fff;
  }
  
  .about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .about-text {
    position: relative;
    z-index: 1;
  }
  
  .about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .about-text p {
    font-size: 1.2rem; 
    max-width: 600px;
    margin: 0 auto;
  }

  @media(max-width:768px){
    .about-banner{
        height: 250px;
    }
  }


  /* ABOUT PAGE SECTION */
  
  .about-page-section {
    padding: 30px 0;
    background: #f9f9f9;
  }
  
  .about-page-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-page-section .about-page-container h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color:#000;
    font-family: 'Playfair Display', serif;
  }
  
  .about-page-columns {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .about-page-content {
    flex: 1;
  }

  .about-page-content h3{
    font-size: 1.8rem;
    color: saddlebrown;
    font-family:'Times New Roman', Times, serif;
    margin-bottom: 10px;
  }
  
  .about-page-content p {
    font-size: 1.1rem;
    color: #222;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .about-page-image {
    flex: 1;
    position: relative;
    text-align: center;
  }
  
  .about-page-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .image-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(127, 77, 17, 0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-page-columns {
      flex-direction: column;
    }
  
    .about-page-content {
      order: 2;
      text-align: center;
    }
  
    .about-page-image {
      order: 1;
    }
  
    .about-page-section h2 {
      font-size: 1.8rem;
    }
  
    .about-page-content p {
      font-size: 1rem;
    }
  
    .image-overlay {
      font-size: 1rem;
      padding: 4px 0px;
    }
  }
  

  /* EXPERIENCE SECTION */

  .experience-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    background: saddlebrown;
    padding: 20px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 1200px;
    margin: 30px auto;
    top: 30px;
}

.experience-box {
    flex: 1;
    padding: 10px;
}

.experience-box h2 {
    font-size: 2.8rem;
    color: #fff;
}

.experience-box p {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .experience-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin: 20px;
    }

    .experience-box h2 {
        font-size: 2rem;
    }

    .experience-box p {
        font-size: 1rem;
    }
}


/* MISSION & VISION */

.vision-mission {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.vision-mission .container {
    max-width: 1400px;
    margin: auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #8B5A2B; 
}

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

.box {
    background: #fff;
    border: 1px solid #5a3822;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

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

.box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: #5a3822;
}

.box p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .vision-mission .container{
        display: block;
    }
    .vision-mission{
        padding: 30px 10px;
    }
    .box{
        padding: 10px;
    }
    .section-title{
        font-size: 32px;
    }
}


/* CONTACT PAGE */
.contact-banner{
    position: relative;
    height: 550px; 
    background-image: url('../images/contact-banner.jpg');
    background-size: cover;
    background-position: center;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color:#fff;
  }
  
  .contact-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .contact-text {
    position: relative;
    z-index: 1;
  }
  
  .contact-text h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  @media(max-width:768px){
    .contact-banner{
        height: 250px;
    }
  }
  
  /* CONTACT SECTION FORM & DETAILS */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.contact-container h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-container p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.contact-form, .contact-details {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    padding: 20px;
    border-radius: 8px;
}

/* Contact Form */
.contact-form {
    border: 2px solid #a0763a;
    background-color: #a0763a;
    color: #fff;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

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

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

.form-group input, .form-group textarea {
    width: 90%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 90%;
    padding: 12px;
    background-color: #5a3822;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background-color: saddlebrown;
}

.details-group {
    margin-bottom: 20px;
    border: 1px solid #8B5A2B;
    text-align: center;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #000;
}

.details-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-color: transparent;
}

.details-group p {
    margin: 0;
    font-size: 1.05rem;
    color: #000;
    margin-top: 10px;
    line-height: 1.6;
}

.details-group a {
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.details-group a:hover {
    color: #5a3822;
}

.details-group i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #5a3822;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .contact-form{
        margin: -30px;
    }

    .contact-form, .contact-details {
        width: 90%;
        max-width: 500px;
    }

    .contact-form button {
        width: 100%;
    }
}

.map-container{
    margin: 30px;
}


  /* BLOG BANNER */
  .blog-banner{
    position: relative;
    height: 480px; 
    background-image: url('../images/blog-banner.jpg');
    background-size: cover;
    background-position: center;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color:#fff;
  }
  .blog-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .blog-text {
    position: relative;
    z-index: 1;
  }
  .blog-text h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  .blog-text p {
    font-size: 0.8rem; 
    max-width: 600px;
    margin: 0 auto;
  }

  ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
  }
  ul.breadcrumb li {
    display: inline;
    font-size: 16px;
    color: #fff;
  }
  ul.breadcrumb li+li:before {
    padding: 8px;
    color: #fff;
    content: "/\00a0";
  }
  ul.breadcrumb li a {
    color: #fff;
    text-decoration: none;
  }

  @media (max-width:768px){
    .blog-banner{
        height: 250px;
    }
  }

/* BLOG CONTENT */

.titleee {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
}

.blog-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    padding: 0 20px;
}

.blog-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

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

.blog-card img {
    width: 350px;
    height: 250px;
    border-radius: 3px;
}

.blog-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
    text-align: left;
}

.blog-card p {
    font-size: 16px;
    color: #111;
    line-height: 1.6;
    text-align: left;
}

.blog-card a {
    display: inline-block;
    margin-top: 10px;
    color: #5a3822;
    text-decoration: none;
    font-weight: bold;
}

.blog-card a:hover {
    text-decoration: underline;
}

/* Responsive Design */

@media (max-width: 992px) {
    .titleee {
        font-size: 2.5rem;
    }
    
    .blog-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .blog-card {
        padding: 18px;
    }

    .blog-card h2 {
        font-size: 20px;
    }

    .blog-card p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .titleee {
        font-size: 2.2rem;
    }
    
    .blog-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .blog-card {
        padding: 15px;
    }
    .blog-card img{
        width: 250px;
        height: auto;
    }

    .blog-card h2 {
        font-size: 18px;
    }

    .blog-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .titleee {
        font-size: 2rem;
    }

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

    .blog-card {
        padding: 12px;
        margin: 10px;
    }

    .blog-card h2 {
        font-size: 16px;
    }

    .blog-card p {
        font-size: 13px;
    }
}


/* TESTIMONIALS SECTION */
.testimonials {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.testimonial-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
}

.testimonial-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    flex: 1 1 300px;
}

.testimonial-text {
    font-size: 1rem;
    color: #222;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #333;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-author {
        font-size: 0.8rem;
    }
}


/* PRODUCTS BANNER */
.product-banner{
    position: relative;
    height: 500px; 
    background-image: url('../images/banner2.jpg');
    background-size: cover;
    background-position: center;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color:#fff;
  }
  
  .product-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .product-text {
    position: relative;
    z-index: 1;
  }
  
  .product-text h3 {
    font-family: 'playfair Display' serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  @media (max-width:768px){
    .product-banner{
        height: 250px;
    }
  }


/* PRODUCT SECTION */

.collection-container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
    text-align: center;
}

.collection-title {
    font-family: 'playfair Display', serif;
    font-size: 2.8rem;
    color: #111;
    margin-bottom: 25px;
    text-align: center;
}

.collections {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.collection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.collection-item:hover{
    text-decoration: underline;
}

.collection-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.collection-item img:hover{
    border: 1px solid #111;
}

.collection-item p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #8B5A2B;
    text-align: center;
}

/* .collection-item a {
    color: #8B5A2B;
    font-size: 14px;
    text-decoration: underline;
    margin-top:5px;
} */

@media (max-width: 768px) {
    .collections {
        gap: 20px;
    }

    .collection-item {
        width: 120px;
    }

    .collection-item img {
        width: 130px;
        height: 130px;
    }
}


/* EACH PRODUCT */

.eachproduct {
    max-width: 1300px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
    border-radius: 5px;
}

.eachproduct h2 {
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    color: #111;
    font-size: 36px;
    margin-bottom: 20px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.product-card {
    background:white;
    padding: 15px;
    border-radius: 3px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    /* text-align: center; */
    width: 280px;
    position: relative;
}

.sale-tag {
    position: absolute;
    left: -8px;
    top: -10px;
    z-index: 9999;
}
.product-card .sale-tag img{
    width: 60px;
    height: 60px;
}

.product-card img {
    width: 280px;
    height: 250px;
    border-radius: 3px;
}
.wardrobes{
    width: 100%;
    height: auto;
}
.product-card h3 {
    color: #111;
    font-size: 18px;
    margin: 15px 0;
}
.product-card p {
    font-size: 16px;
    color: #222;
}
.product-card button {
    background-color: #5a3822;
    color: #fff;
    border: none;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 50%;
}
.product-card button:hover {
    background-color:#8B5A2B;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-list {
        flex-direction: column;
        align-items: center;
    }
    .product-card {
        width: 90%;
    }
    .product-card img{
        width: 250px;
        height: 220px;
    }
}

/* RATINGS */
.ratings{
    display: flex;
    margin-bottom: 10px;
}
.ratings i{
    font-size: 15px;
    color: gold;
}

/* PRODUCTS SECTION */

.products-section {
    padding: 20px;
}

.products-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.products-details {
    text-align: center;
    /* max-width: 800px; */
    padding-left: 50px;
}

.products-details h2 {
    font-family: 'playfair Display', serif;
    text-align: center;
    font-size:2rem;
    margin-bottom: 10px;
    color: #111;
}

.products-details p {
    font-size: 1rem;
    line-height: 1.5;
    color: #222;
    text-align: left;
    margin-bottom: 20px;
}

.products-details a {
    display: inline-block;
    padding: 15px 30px;
    align-items: center;
    background-color: #8B5A2B;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.products-details a:hover {
    background-color: #a0763a;
}

/* Responsive styles */
@media(max-width:480px){
    .products-section{
        padding: 10px;
    }
    .products-details{
        padding-left: 0px;
    }
    .products-details h2{
        font-size: 1.9rem;
    }
}

@media (min-width: 768px) {
    .products-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .products-details {
        text-align: center;
        padding-left: 10px;
    }

    .products-details h2 {
        font-size: 2.5rem;
    }

    .products-details p {
        font-size: 1.1rem;
    }

    .products-details a {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .products-details h2 {
        font-size: 3rem;
    }

    .products-details p {
        font-size: 1.2rem;
    }

    .products-details a {
        font-size: 1.2rem;
    }
}

/* FEATURES */
.features {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
}

.feature-item i {
    font-size: 42px;
    color: #8B5A2B;
    margin-bottom: 10px;
}

.feature-item p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 17px;
    font-weight: 550;
}

@media (max-width: 768px) {
    .features {
        gap: 20px;
    }

    .feature-item {
        width: 140px;
    }

    .feature-item i {
        font-size: 34px;
    }

    .feature-item p {
        font-size: 14px;
    }
}

/* wardrobes */
.wardrobe-section {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    background: white;
    max-width: 1200px;
    margin: auto;
}
.wardrobe-content {
    text-align: left;
    max-width: 600px;
}
.wardrobe-content h2 {
    font-size: 30px;
    font-weight: bold;
}
.wardrobe-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.4;
}
.view-more {
    background-color: #8B5A2B;
    color: white;
    border: none;
    width: 30%;
    padding: 10px 15px;
    cursor: pointer;
    margin-top: 10px;
}
.wardrobe-images {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.wardrobe-images img {
    width: 300px;
    height: auto;
  
}

@media (max-width: 768px) {
    .wardrobe-section {
        flex-direction: column;
        align-items: center;
    }
    .wardrobe-images {
        flex-direction: column;
    }
    .wardrobe-images img {
        width: 100%;
    }
    .view-more{
        width: 50%;
    }
}

/* DESIGN */

.design-section {
    display: flex;
    /* flex-wrap: wrap; */
    width: 100%;
    max-width: 1400px;
    overflow: hidden;
    margin: 40px ;
}

.image-container{
    flex: 1;
}

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

.text-container {
    flex: 1;
    background-color: #a0763a;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.text-container .icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.text-container .icon img{
    width: 120px;
    height: 120px;
}

.text-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.text-container p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.text-container .contact-btn {
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid white;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    width: 50%;
}

.text-container .contact-btn:hover {
    background: white;
    color: #8c7756;
}
 
@media (max-width: 1024px) {
    .design-section {
        flex-direction: column;
        align-items: center; 
        text-align: center;
    }

    /* .image-container, .text-container {
        min-width: 100%; 
    } */

    .text-container {
        padding: 20px;
    }

    .text-container h2 {
        font-size: 24px;
    }

    .text-container p {
        font-size: 14px; 
    }

    .text-container .contact-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .design-section {
        margin: 20px; 
    }

    .text-container {
        padding: 25px;
    }

    .text-container h2 {
        font-size: 22px;
    }

    .text-container p {
        font-size: 14px;
    }

    .text-container .icon img {
        width: 100px;
        height: 100px;
    }

    .text-container .contact-btn {
        font-size: 14px;
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .design-section{
        margin: 0px;
    }
    .text-container {
        padding: 10px;
    }

    .text-container h2 {
        font-size: 20px;
    }

    .text-container p {
        font-size: 13px;
    }

    .text-container .icon img {
        width: 80px;
        height: 80px;
    }

    .text-container .contact-btn {
        font-size: 13px;
        padding: 6px 12px;
    }
}


/* whatsapp icon */
.whatsapp-chat {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}

.chat-bubble {
    background-color: #25d366;
    color: white;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    margin-right: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.3s, transform 0.3s;
}

.whatsapp-icon img {
    width: 50px;
    height: 50px;
    /* border-radius: 50%; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.whatsapp-chat:hover .chat-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.typing {
    display: inline-block;
    font-weight: bold;
    color: #d4f8c9;
    animation: typing 1.5s infinite;
}

@keyframes typing {
    0% { content: "Typing"; }
    33% { content: "Typing."; }
    66% { content: "Typing.."; }
    100% { content: "Typing..."; }
}

/* eachproduct banner */
.eachproduct-banner{
    background-color: #f9f9f9; 
    color:#000;
    font-weight: 600;
    padding: 10px; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

ul.breadcrumbs {
    font-weight: 500;
    padding: 10px 20px;
    list-style: none;
  }
  ul.breadcrumbs li {
    display: inline;
    font-size: 12px;
    color: #000;
  }
  ul.breadcrumbs li+li:before {
    padding: 8px;
    color: #000;
    content: "/\00a0";
  }
  ul.breadcrumbs li a {
    color: #000;
    text-decoration: none;
  }

