:root {
    --primary-color: #e63946;
    --secondary-color: #f1faee;
    --dark-color: #333;
    --light-color: #a8dadc;
    --light: #f8f5f0;
    --accent-color: #ff7b00;
    --text-color: #555;
    --light-text: #f8f9fa;
    --gray-color: #6c757d;
    --yello-color: #FCB757;
    --light-gray: #eee;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
  padding: 16px 35px;
  color: var(--black-color);
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid var(--black-color);
  margin-right: 20px;
  transition: all .5s ease;
}

.btn:hover {
  color: var(--main-color);
  border: 2px solid var(--main-color);
  transform: scale(1.1) translateY(-6px);
}

/* Header Styles */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
   /* background-color: rgba(40, 37, 37, 0.9);*/
    transition: all 0.3s ease;
}

header.scrolled {
   
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items:center;
    padding: 20px 0;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
}

.logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

.logo img{
 max-width:300px;
  float: left;
  margin:0 10px 0 0;

}

.footer-logo img{
    max-width:200px;
     float: left;
     margin:0 5px 0 0;
   
   }
   
   /* Add this to your existing CSS */

nav ul.nav-links li {
    position: relative;
    margin-left: 50px;
}

nav ul.nav-links li a {
    color: white;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px; /* Add some space for the underline */
}

/* Create the animated underline */
nav ul.nav-links li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--yello-color);
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

/* Animate the underline on hover */
nav ul.nav-links li a:hover::before {
    visibility: visible;
    width: 100%;
}

/* Keep the underline visible for active link */
nav ul.nav-links li a.active::before {
    visibility: visible;
    width: 100%;
}

nav ul.nav-links li a:hover {
    transform: translateY(-2px); /* Slight lift effect on hover */
}


/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
}

nav ul.nav-links {
    display: flex;
    list-style: none;
}

nav ul.nav-links li {
    margin-left: 50px;
}

nav ul.nav-links li a {
    color: white;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul.nav-links li a:hover  {
    color: var(--yello-color);
    transition: var(--transition);
}


nav ul li a:hover, nav ul li a.active {
    color: var(--yello-color);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
}

/* SLIDESHOW CONTAINER */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: -2;
}

/* SLIDES */
.hero-slideshow img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: heroSlide 25s infinite;
}

/* Animation delays */
.hero-slideshow img:nth-child(1) { animation-delay: 0s; }
.hero-slideshow img:nth-child(2) { animation-delay: 5s; }
.hero-slideshow img:nth-child(3) { animation-delay: 10s; }
.hero-slideshow img:nth-child(4) { animation-delay: 15s; }
.hero-slideshow img:nth-child(5) { animation-delay: 20s; }

/* SLIDE FADE EFFECT */
@keyframes heroSlide {
    0% { opacity: 0; }
    8% { opacity: 1; }
    20% { opacity: 1; }
    28% { opacity: 0; }
    100% { opacity: 0; }
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        #00000096,
        rgba(0, 0, 0, 0.566)
    );
    z-index: -1;
}

/* CONTENT */
.hero-content {
    max-width: 620px;
    margin-top: 10rem;
    margin-left: 28rem;
    padding: 2.5rem 3rem;
    text-align: center;
  

    /* Glass transparent background */
    background: rgba(0, 0, 0, 0.014);
    backdrop-filter: blur(1px);
    border-radius: 22px;

    box-shadow: 
        0 15px 40px rgba(0,0,0,0.6),
        inset 0 1px 2px rgba(255,255,255,0.15);
}

/* HEADING */
.hero h2 {
    font-size: 2.2rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffffd2;
}

/* PARAGRAPH */
.hero p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #eaeaea;
}

/* BUTTON */
.btn-hero {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    background: linear-gradient(135deg, #b30000, #e0b44c);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(224,180,76,0.6);
}

/* ===============================
   RESPONSIVE – HERO SECTION
================================ */

/* Tablets */
@media (max-width: 1024px) {

    .hero {
        height: 90vh;
    }

    .hero-content {
        margin: auto;
        margin-top: 8rem;
        max-width: 85%;
        padding: 2.2rem 2.5rem;
    }

    .hero h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .hero {
        height: 85vh;
        justify-content: center;
    }

    .hero-content {
        margin: auto;
        padding: 2rem;
        max-width: 92%;
        text-align: center;
        backdrop-filter: blur(2px);
    }

    .hero h2 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .btn-hero {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .hero {
        height: 80vh;
    }

    .hero-content {
        padding: 1.8rem 1.6rem;
    }

    .hero h2 {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }

    .hero p {
        font-size: 0.9rem;
    }
}


/* Categories Section */
.categories-section {
    padding: 15px 0;
    background-color: var(--light);
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.featured-products h2 {

    color: #b30000;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    text-align: center;

}

.btn.view-all {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--dark-color);
}

.btn.btn-hero {
    background-color: transparent;
    color: var(--yello-color);
    border: 2px solid var(--yello-color);
}

.btn-welcome {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}


.btn.btn-welcome:hover {
    background-color: var(--primary-color);
    color: white;
}


/* Learn more button */
.learn-more1 {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: bold;
  color: rgb(153, 0, 0);
  text-decoration: none;
  border-bottom: 1px solid var(--black-color);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.learn-more1:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 50px;
}

.category-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-info {
    padding: 20px;
    text-align: center;
}

.category-info h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.category-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Product Grid */

/* Content container */
.hero .container5 {
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin-left: 10%;
}

/* Heading */
.hero h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Paragraph */
.hero p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #ffffff;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 20px 0;
    margin-top: 100px;
    margin-bottom: 50px;
}

.product-card {
   border: 2px solid #8a0101;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px 15px 5px;
    color: var(--dark-color);
    text-align: center;
}

.product-card h6 {
    padding: 15px 15px 5px;
    color: var(--text-color);
    text-align: center;
}

.product-card .description {
    padding: 0 15px;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-card .spiciness {
    padding: 0 15px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.product-card .price {
    padding: 0 15px;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-card .arrow {
    margin: 0 15px 15px;
    display: block;
    text-align: center;
}

/* Spiciness Level */
.fa-star {
    margin-right: 3px;
}

/* About Page */
:root {
    --primary: #b30000; /* Deep red brand color */
    --dark: #222;
    --gray: #555;
    --light: #fafafa;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* MAIN HERO BACKGROUND */
.about-hero {
    background:  linear-gradient(rgba(0, 0, 0, 0.475), rgba(0, 0, 0, 0.55)),
    url('../images/pasta1.jpg') center center / cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Inner hero wrapper */
.hero1 {
    width: 100%;
    
}

/* Glass content box */
.container5 {
    max-width: 720px;
    text-align: center;
    padding: 40px 35px;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 22px;
    border: 3px solid rgb(0, 0, 0);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.55),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);

    color: #ffffff;
}

/* Heading */
.container5 h2 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Paragraph */
.container5 p {
    font-size: 1.1rem;
    line-height: 1.9;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .container5 {
        margin: auto;
        max-width: 90%;
        text-align: center;
        padding: 30px;
    }

    .container5 h2 {
        font-size: 2rem;
    }
}



.abt-wrapper {
    width: 100%;
    overflow: hidden;
}

.abt-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.center {
    text-align: center;
}


.abt-hero-section {
    width: 100%;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("../images/about-hero.jpg") no-repeat center center;

    background-size: cover; /* Full image with best layout */
}



/* ------------------------------
   VISION & MISSION
------------------------------ */
.abt-vm-section {
    padding: 80px 0;
}

.abt-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.abt-vm-text .abt-title {
    margin-top: 25px;
}

.abt-vm-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* ------------------------------
   TYPOGRAPHY
------------------------------ */
.abt-title {
    font-size: 2rem;
    font-weight: 600;
    color: #c0392b;
    margin-bottom: 10px;
}

.abt-desc {
    margin-bottom: 20px;
    color: #555;
}

/* ------------------------------
   OUR STORY + HISTORY
------------------------------ */
.abt-story-section {
    padding: 80px 0;
    background: #fafafa;
}

.abt-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.abt-story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ------------------------------
   TIMELINE
------------------------------ */
.abt-history {
    margin-top: 40px;
}

.abt-timeline {
    border-left: 3px solid #c0392b;
    padding-left: 25px;
    margin-top: 20px;
}

.abt-timeline-item {
    margin-bottom: 35px;
    position: relative;
}

.abt-year {
    position: absolute;
    left: -75px;
    top: 0;
    background: #c0392b;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.abt-timeline-content h3 {
    margin-bottom: 5px;
    color: #333;
}

.abt-timeline-content p {
    color: #666;
}

/* SECTION */
.abt-awards-section {
    padding: 1000px 1000px;
    text-align: center;
}

/* WRAPPER */
.abt-awards-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SLIDER */
.abt-awards-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px;
    max-width: 80%;
}

/* HIDE SCROLLBAR */
.abt-awards-carousel::-webkit-scrollbar {
    display: none;
}

/* CARD */
.abt-award-card {
    scroll-snap-align: center;
    flex: 0 0 200px;
    border-radius: 2rem;
    border: 3px solid #2b2b2b;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 6px 12px rgba(121, 43, 43, 0.5);
    transition: transform 0.3s ease;
}

.abt-award-card:hover {
    transform: scale(1.08);
}

.abt-award-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

/* ARROWS */
.award-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.8rem;
    color: #b30000;
    text-decoration: none;
    padding: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    z-index: 10;
    transition: 0.3s ease;
}

.award-arrow:hover {
    background: #b30000;
    color: #fff;
}

/* POSITIONS */
.award-arrow.left {
    left: 0;
}

.award-arrow.right {
    right: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .abt-awards-carousel {
        max-width: 95%;
    }

    .award-arrow {
        font-size: 2.2rem;
    }
}


/* ===============================
   PRODUCT HERO SECTION
================================ */
.product-hero {
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.526), rgba(0, 0, 0, 0.586)),
                url('../images/about-hero1.jpg') center center / cover no-repeat;
    overflow: hidden;
}

/* LEFT CONTENT */
.product-hero-content h2 {
    font-size: 3.2rem;
    text-align: center;
    font-family: "Sofia", sans-serif;;
    color: #f0c36d;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-hero-content p {
    font-size: 1rem;
    line-height: 2rem;
    text-align: center;
    margin-left: 8rem;
    color: #ffffff;
    max-width: 420px;
}

/* Glass content container */
.product-hero .container {
    max-width: 720px;
    text-align: center;
    margin-left: 28%;
    padding: 40px 35px;

    /* Glass effect */
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 22px;
    border: 3px solid rgb(0, 0, 0);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.55),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);

    color: #fff;
}

/* Heading */
.hero h2 {
    font-size: 2.4rem;
    color:#e0b44c;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Paragraph */
.hero p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.9;
    color: #ffffff;
    opacity: 0.95;
}

.video-btn1 {
    display: inline-block;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 50px;
    margin-left: 16rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #b30000, #e0b44c);
    color: #fff;
    font-weight: 650;
    text-decoration: none;
    transition: 0.3s ease;
}

/* RIGHT IMAGE AREA */
.product-hero-images {
    position: relative;
    width: 100%;
    height: 450px;
}

/* Images */
.product-hero-images img {
    position: absolute;
    inset: 0;
    margin: auto;
    max-width: 580px;
    width: 100%;
    border-radius: 16px;
    opacity: 0;
    transform: scale(0.8);
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.87));
    animation: productSlide 21s infinite;
}

/* Animation delays */
.product-hero-images img:nth-child(1) { animation-delay: 0s; }
.product-hero-images img:nth-child(2) { animation-delay: 3s; }
.product-hero-images img:nth-child(3) { animation-delay: 6s; }
.product-hero-images img:nth-child(4) { animation-delay: 9s; }
.product-hero-images img:nth-child(5) { animation-delay: 12s; }
.product-hero-images img:nth-child(6) { animation-delay: 15s; }
.product-hero-images img:nth-child(7) { animation-delay: 18s; }

/* Keyframes */
@keyframes productSlide {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    5% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    25% {
        opacity: 0;
        transform: scale(1.1) translateY(-20px);
    }
    100% {
        opacity: 0;
    }
}

/* ===============================
   RESPONSIVE – PRODUCT HERO
================================ */

/* Large tablets */
@media (max-width: 1024px) {

    .product-hero {
        padding: 60px 30px;
        min-height: auto;
    }

    /* Glass container */
    .product-hero .container {
        margin: auto;
        max-width: 85%;
        padding: 35px 30px;
    }

    .product-hero-content h2 {
        font-size: 2.6rem;
    }

    .product-hero-content p {
        margin: auto;
        font-size: 1rem;
    }

    .video-btn1 {
        margin-left: 0;
        margin-top: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {

    .product-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 20px;
    }

    .product-hero .container {
        max-width: 95%;
        margin: auto;
        padding: 30px 25px;
    }

    .product-hero-content h2 {
        font-size: 2.2rem;
    }

    .product-hero-content p {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .video-btn1 {
        display: inline-block;
        margin: 1.2rem auto 0;
    }

    .product-hero-images {
        margin-top: 40px;
        height: 320px;
    }

    .product-hero-images img {
        max-width: 90%;
    }
}

/* Mobile */
@media (max-width: 480px) {

    .product-hero {
        padding: 40px 15px;
    }

    .product-hero .container {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .product-hero-content h2 {
        font-size: 1.9rem;
        line-height: 2.4rem;
    }

    .product-hero-content p {
        font-size: 0.9rem;
    }

    .product-hero-images {
        height: 260px;
    }

    .product-hero-images img {
        max-width: 100%;
    }
}



/* ------------------------------
   DIRECTORS SECTION
------------------------------ */
.abt-directors-section {
    padding: 80px 0;
    text-align: center;
    background: #f9f9f9;
}

.abt-directors-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.abt-director-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.25s ease-in-out;
}

.abt-director-card:hover {
    transform: translateY(-7px);
}

.abt-director-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

.abt-director-name {
    font-size: 1.3rem;
    font-weight: 600;
}

.abt-director-role {
    color: #c0392b;
    margin-top: -5px;
}

.abt-director-bio {
    color: #666;
    margin-top: 10px;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 980px) {
    .abt-vm-grid,
    .abt-story-grid {
        grid-template-columns: 1fr;
    }

    .abt-hero-section {
        height: 50vh;
    }

    .abt-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .abt-heading {
        font-size: 2rem;
        padding: 0 20px;
    }

    .abt-year {
        left: -60px;
    }
}

/* ---------------------------------------------------
   RESPONSIVE DESIGN
--------------------------------------------------- */
@media (max-width: 900px) {

    .abt-vm-grid,
    .abt-story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .abt-vm-image img,
    .abt-story-image img {
        width: 85%;
        margin: auto;
    }

    .abt-hero-section {
        height: 40vh;
        padding-bottom: 40px;
    }

    .abt-heading {
        font-size: 2.3rem;
    }
}

@media (max-width: 600px) {
    .abt-heading {
        font-size: 2rem;
    }

    .abt-awards-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .abt-directors-carousel {
        grid-template-columns: 1fr;
    }
}

/* ================================
   CONTACT PAGE – LUXURY DESIGN
================================ */

/* HERO SECTION */


.contact-hero {
    background-size: cover;
    background-position: center;
    text-align: center;
    height: 50vh;
    padding: 120px 20px;
    background-image: url('../images/contact\ bg1.jpg') ;
}


.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
   
}

.contact-hero p {
    margin-top: 10px;
    font-size: 1rem;
    opacity: 0.85;
    color: #e7e7e7;
}

/* ================================
   PAGE CONTENT LAYOUT
================================ */
.contact-content .container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

/* ================================
   FORM – GLASS MORPHISM BOX
================================ */
.contact-form {
    flex: 1.2;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(2px);
    padding: 35px;
    margin-left: 5rem;
    border-radius: 30px;
    box-shadow:
        0 12px 40px rgba(0,0,0,0.45),
        inset 0 1px 5px rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
}

/* FORM INPUTS */
.form-group {
    margin-bottom: 18px;
    position: relative;
}

label {
    font-weight: 600;
    color: #b30000;
}

input, textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.829);
    background: rgba(255,255,255,0.6);
    font-size: 1rem;
    transition: 0.4s ease;
}

input:focus, textarea:focus {
    border-color: #e0b44c;
    box-shadow: 0 0 15px rgba(224,180,76,0.6);
    outline: none;
}

/* BUTTON */
.btn {
    background: linear-gradient(135deg, #b30000, #e0b44c);
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(224,180,76,0.6);
}



/* SUCCESS + ERROR MESSAGES */
.success-message, .error-message {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.success-message {
    background: rgba(0, 128, 0, 0.2);
    border-left: 5px solid green;
}

.error-message {
    background: rgba(255, 0, 0, 0.2);
    border-left: 5px solid red;
}

/* ================================
   RIGHT SIDE CONTACT DETAILS – CARD
================================ */
.contact-info {
    flex: 1;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(1px);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-left: 7px solid #b30000;
}

.contact-info h2 {
    margin-bottom: 20px;
    color: #b30000;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.info-item i {
    font-size: 1.4rem;
    color: #b30000;
}

/* SOCIAL LINKS */
.social-links a {
    margin-right: 12px;
    font-size: 1.5rem;
    color: #b30000;
    transition: 0.3s ease;
}

.social-links a:hover {
    color: #e0b44c;
    transform: scale(1.2);
}

/* MAP SECTION */
.map-section {
    margin-top: 60px;
    width: 70%;
    margin-left: 16rem;
}

.map-section iframe {
    border-radius: 25px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-content .container {
        flex-direction: column;
    }

    .contact-form, .contact-info {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-filter a {
    margin: 0 10px 10px;
    padding: 8px 15px;
    background-color: #eee;
    border-radius: 20px;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s;
}

.category-filter a.active,
.category-filter a:hover {
    background-color: var(--primary-color);
    color: white;
}

.no-products {
    text-align: center;
    grid-column: 1 / -1;
    padding: 30px;
    color: var(--gray-color);
}

/* Footer */
footer {
    background: linear-gradient(100deg, #770000, #d3ac59);
    color: var(--light-gray);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 7px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

       

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    transition: var(--transition);
    
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.brand-info h3 {
    color: var(--white-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.brand-info h3 span {
    color: var(--primary-color);
}

.brand-info p {
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--light-gray);
    margin-top: 20px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }

    nav ul.nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }

    nav ul.nav-links.active {
        right: 0;
    }

    nav ul.nav-links li {
        margin: 15px 0;
        transition: --a;
    }

    /* Show/hide toggle icons */
    .mobile-menu-toggle .fa-times {
        display: none;
    }

    .mobile-menu-toggle.active .fa-bars {
        display: none;
    }

    .mobile-menu-toggle.active .fa-times {
        display: block;
    }

    /* Prevent scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .about-content .container,
    .contact-content .container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    

    .hero {
        padding: 120px 0 80px;
    }

    .hero h2 span {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .category-image {
        height: 100px;
    }

    /* Timeline adjustments */
    .timeline::before {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-year {
        width: 60px;
        height: 60px;
        line-height: 60px;
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        right: auto;
        left: 0;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }
}

/* VIDEO SHOWCASE SECTION */
.video-showcase {
    padding: 15px 10px;
     background: linear-gradient(rgba(0, 0, 0, 0.526), rgba(0, 0, 0, 0.586)),
                url('../images/about-hero1.jpg') center center / cover no-repeat;
}

/* MAIN LAYOUT */
.video-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

/* VIDEO BOX */
.video-box {
    border-radius: 25px;
    border: #800000 solid 3px;
    height: 55%;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.video-content h2 {
    font-size: 3.2rem;
    text-align: center;
    font-family: "Sofia", sans-serif;;
    color: #f0c36d;
    margin-bottom: 15px;
    margin-left: 7rem;
    font-weight: 700;
    line-height: 4rem;
}


.video-content p {
    font-size: 1rem;
    line-height: 2rem;
    font-weight: 550;
    text-align: center;
    margin-left: 8rem;
    color: #ffffff;
    max-width: 420px;
}

.video-btn {
    display: inline-block;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 50px;
    margin-left: 16rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #b30000, #e0b44c);
    color: #fff;
    font-weight: 650;
    text-decoration: none;
    transition: 0.3s ease;
}

.video-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(224,180,76,0.6);
}

/* ===============================
   RESPONSIVE – VIDEO SHOWCASE
================================ */

/* Tablets */
@media (max-width: 1024px) {

    .video-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-box {
        height: 360px;
    }

    .video-content h2 {
        margin-left: 0;
        font-size: 2.6rem;
        line-height: 3.2rem;
        text-align: center;
    }

    .video-content p {
        margin: auto;
        font-size: 1rem;
        text-align: center;
    }

    .video-btn {
        display: block;
        margin: 1.5rem auto 0;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .video-showcase {
        padding: 40px 15px;
    }

    .video-box {
        height: 280px;
    }

    .video-content h2 {
        font-size: 2.1rem;
        line-height: 2.7rem;
    }

    .video-content p {
        font-size: 0.95rem;
        line-height: 1.8rem;
        max-width: 100%;
    }

    .video-btn {
        font-size: 0.9rem;
        padding: 10px 22px;
        display:table;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .video-box {
        height: 220px;
        border-radius: 18px;
    }

    .video-content h2 {
        font-size: 1.8rem;
    }

    .video-content p {
        font-size: 0.9rem;
    }
}






/* ===============================
   WELCOME SECTION – SPLIT LAYOUT
================================ */

/* Welcome Section */
.welcome-section {
    padding: 80px 30px;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.512), rgba(0, 0, 0, 0.447)),
                url('../images/welcome.jpg') center center / cover no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    overflow: hidden;
}

.welcome-section .container {
    max-width: 1200px;
    margin: auto;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE – H2 CENTER */
.welcome-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    line-height: 1.3;
    text-align: center;
    position: relative;
}

/* Decorative underline */
.welcome-content h2::after {
    content: "";
    display: block;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #b30000, #e0b44c);
    margin: 20px auto 0;
    border-radius: 5px;
}

/* RIGHT SIDE – TEXT + BUTTON CENTER */
.welcome-content p {
    font-size: 1.1rem;
    width: 900px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 18px;
    margin-left: 9rem;
    text-align: center;
}

/* BUTTON UNDER PARAGRAPH */
.hero-btn1 {
    
    margin-left: 32rem;
    text-align: left; /* or center if you prefer */
}



/* Welcome Button */
.btn-welcome {
    display: inline-block;
    padding: 10px 50px;
    border-radius: 50px;
    background: linear-gradient(135deg, #b30000, #e0b44c);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-welcome:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(224,180,76,0.5);
}

/* ===============================
   RESPONSIVE – WELCOME SECTION
================================ */

@media (max-width: 992px) {

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-content h2 {
        font-size: 2.3rem;
        -webkit-text-stroke: 1.5px #ffffff;
    }

    .welcome-content p {
        width: 100%;
        margin: auto;
        font-size: 1rem;
        text-align: center;
    }

    .hero-btn1 {
        margin: auto;
        text-align: center;
    }
}

@media (max-width: 576px) {

    .welcome-section {
        padding: 60px 20px;
        background-attachment: scroll; /* Disable parallax on mobile */
    }

    .welcome-content h2 {
        font-size: 2rem;
        -webkit-text-stroke: 1.2px #ffffff;
    }

    .welcome-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .btn-welcome {
        padding: 10px 26px;
        font-size: 0.95rem;
    }
}


/* =============================
   FEATURED PRODUCTS SECTION
============================= */

.featured-products-section {
    padding: 50px 0;
    background: #f6f6f6;
}

.center {
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 2px #7c0000;
    font-size: 2.5rem;
}

/* Carousel Container */
.featured-products-carousel {
    display: flex;
    gap: 2rem;
    animation: productsSlide 14s linear infinite;
    will-change: transform;
    padding: 1rem 1rem;
    align-items: center;
}

/* IMAGE ONLY */
.featured-products-carousel img {
    width: 420px;              /* image size */
    height: 360px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
}

/* Hover effect */
.featured-products-carousel img:hover {
    transform: scale(1.1);
}

/* Animation Keyframes */
@keyframes productsSlide {
    0% {
        transform: translateX(20%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ===============================
   RESPONSIVE – FEATURED PRODUCTS
================================ */

/* Large tablets */
@media (max-width: 1024px) {

    .featured-products-carousel img {
        width: 320px;
        height: 280px;
    }

    .center {
        font-size: 2.2rem;
        -webkit-text-stroke: 1.5px #7c0000;
    }
}

/* Tablets */
@media (max-width: 768px) {

    .featured-products-section {
        padding: 40px 0;
    }

    .featured-products-carousel {
        gap: 1.5rem;
    }

    .featured-products-carousel img {
        width: 260px;
        height: 220px;
    }

    .center {
        font-size: 2rem;
        -webkit-text-stroke: 1.2px #7c0000;
    }
}

/* Mobile */
@media (max-width: 480px) {

    .featured-products-section {
        padding: 30px 0;
    }

    .featured-products-carousel {
        gap: 1rem;
        padding: 1rem 0.5rem;
    }

    .featured-products-carousel img {
        width: 200px;
        height: 170px;
    }

    .featured-products-carousel img:hover {
        transform: scale(1.05); /* prevent overflow on small screens */
    }

    .center {
        font-size: 1.7rem;
        -webkit-text-stroke: 1px #7c0000;
    }
}



/* Welcome Section2 */
.welcome-section2 {
    padding: 80px 30px;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.595), rgba(0, 0, 0, 0.49)),
                url('../images/Seeds.jpg') center center / cover no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    overflow: hidden;
}

.welcome-section2 .container2 {
    max-width: 1200px;
    margin: auto;
}

.welcome-content2 {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE – H2 CENTER */
.welcome-content2 h2 {
    font-size: 3rem;
    font-family: "Sofia", sans-serif;
    color: #f0c36d;
    line-height: 1.3;
    text-align: center;
    position: relative;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .welcome-content h2 {
        font-size: 2.2rem;
    }
}



.carousel-container-aword{
    margin-bottom: 100px;
    margin-top: 100px;
}

