:root {
    --primary-color: #5D4037; /* Earthy Brown */
    --secondary-color: #D4A24E; /* Golden Ochre */
    --bg-color: #FDFBF5; /* Creamy White */
    --bg-alt-color: #F7F5F0; /* Light Beige */
    --dark-color: #3E2723; /* Dark Brown */
    --white-color: #FFFFFF;
    --text-color: #545454;
    --light-gray: #E0E0E0;
    --font-family: 'Poppins', sans-serif;
    --header-height: 80px;
    --nav-height: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: #4E342E;
    color: var(--white-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: #c8933a;
    color: var(--dark-color);
    transform: translateY(-3px);
}

.header {
    position: relative;
    z-index: 1000;
    position: sticky;
}

.top-header {
    background-color: var(--dark-color);
    color: var(--light-gray);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-left {
    display: flex;
    gap: 20px;
}

.top-header-item {
    color: var(--light-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-header-item:hover {
    color: var(--secondary-color);
}

.top-header-right {
    display: flex;
    align-items: center;
}

.top-header-right .social-icon {
    color: var(--light-gray);
    margin-left: 15px;
    font-size: 1rem;
}

.navbar {
    background-color: var(--white-color);
    height: 100px;
    background-color: var(--white-color);    
    display: flex;
    align-items: center;
    width: 100%;
    transition: all 0.3s ease;
    /* height: var(--header-height); */
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: slideDown 0.5s ease-out;
}

.nav-layout {
    width: 100%;
}

.nav-layout > .container {
    padding: 0 15px;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo-container {
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo i {
    color: var(--secondary-color);
    margin-right: 10px;
}


.logo img {
    max-width: 200px; /* Adjust as needed */
    height: auto;
    max-height: 100px;
    width: auto;
    transition: max-height 0.3s ease;
}

.navbar.sticky .logo img {
    max-width: 100px;
    transition: max-width 0.3s ease;
    max-height: 50px;
}


.nav-menu {
    display: flex;
    gap: 30px;
    padding: 10px 30px;
    background-color: var(--bg-alt-color);
    border-radius: 50px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 5px 10px;
}

.navbar.sticky .nav-link {
    color: var(--text-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 50%;
    left: 25%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.hero-slider {
    position: relative;
    background-color: #e9e9e9;
    overflow: hidden;
    height: 500px;
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide.active {
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.slider-nav button {
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-nav button:hover {
    background: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--white-color);
}

.trust-section {
    background-color: var(--bg-alt-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-card {
    background: var(--white-color);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.trust-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.trust-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.about-section {
    overflow: hidden;
    background: var(--white-color);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    position: relative;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text {
    background: var(--bg-color);
    padding: 50px;
    border-radius: 10px;
    position: relative;
    left: -100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 2;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 500;
}

.section-title-left {
    text-align: left;
    margin-bottom: 20px;
}

.section-title-left h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title-left h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 20px;
}

.product-section {
    background-color: var(--bg-alt-color);
}

.section-title .tagline {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: -10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.view-all-container {
    text-align: center;
}

.product-card {
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.product-card .product-image {
    position: relative;
}

.product-card .product-image::after {
    content: attr(data-hover-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image {
    height: 475px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.why-us-section {
    background-color: var(--bg-color);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.item-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.item-text h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.why-us-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    height: 400px;
}

.image-grid-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.image-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-grid-item.item-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
.image-grid-item.item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.image-grid-item.item-3 { grid-column: 2 / 3; grid-row: 2 / 3; }

.process-section {
    background-color: var(--white-color);
}
.process-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.process-step {
    text-align: center;
    position: relative;
    padding: 20px;
}
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 43px;
    left: 50%;
    width: calc(100% + 30px);
    border-top: 2px dashed var(--light-gray);
    z-index: 0;
}
.process-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    border: 4px solid var(--white-color);
}
.step-number {
    position: absolute;
    top: -5px;
    right: 25%;
    background: var(--secondary-color);
    color: var(--dark-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    z-index: 2;
}
.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.testimonial-section {
    background-color: var(--bg-alt-color);
}

.testimonial-slider-container {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: calc(100% / 3);
    padding: 0 15px;
}

.testimonial-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    text-align: center;
    position: relative;
    margin: 0 0 20px;
}
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--light-gray);
    position: absolute;
    top: 20px;
    left: 30px;
}
.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}
.testimonial-review {
    font-style: italic;
    margin-bottom: 15px;
    color: #616161;
}
.testimonial-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.testimonial-rating {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.testimonial-dots {
    text-align: center;
    margin-top: 20px;
}

.testimonial-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.testimonial-dots .dot.active {
    background: var(--primary-color);
}

.contact-section {
    background-color: var(--white-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white-color);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form h3, .contact-details h3 {
    font-size: 1.75rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-details ul {
    margin-top: 20px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.footer {
    background-image: url('https://www.transparenttextures.com/patterns/textured-paper.png'), linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1550542325-3c5a4213232c?q=80&w=1974&auto=format&fit=crop');
    background-size: auto, cover, cover;
    background-position: center;
    background-blend-mode: overlay, normal;
    color: var(--light-gray);
    padding: 60px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(62, 39, 35, 0.85);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    position: relative;
}

.footer-col .logo {
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-socials .social-icon {
    color: var(--white-color);
    border: 1px solid var(--white-color);
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-socials .social-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-col h3 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a, .footer-col p a {
    color: #ccc;
}

.footer-col ul a:hover, .footer-col p a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    text-align: center;
    position: relative;
    color: #ccc;
}

.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: var(--white-color);
}

.whatsapp-btn { background-color: #25D366; }
.call-btn { background-color: #34B7F1; bottom: 90px; }
.scroll-top-btn {
    background-color: var(--primary-color);
    bottom: 150px;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    border: none;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@keyframes zoom-in {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.map-insta-section {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.map-container {
    overflow: hidden;
}

.map-container iframe {
    /* filter: grayscale(1); */
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0);
}

.insta-feed {
    background-color: var(--bg-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insta-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.insta-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.insta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.insta-post {
    overflow: hidden;
    border-radius: 8px;
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-post:hover img {
    transform: scale(1.1);
}

.online-presence-section { background-color: var(--white-color); }

.presence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.presence-card {
    padding: 30px;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.presence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.presence-card img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.presence-card:hover img {
}

@media (max-width: 992px) {
    :root { --header-height: auto; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .nav-menu {
        --header-height: 70px;
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: left 0.4s ease-in-out;
        background: var(--white-color);
        border-radius: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link { font-size: 1.2rem; }
    .navbar.sticky .nav-link, .nav-link { color: var(--dark-color); }

    .hamburger {
        display: block;
        position: relative;
        z-index: 1001; /* Ensure hamburger is above the menu */
    }
    .hamburger { display: block; }
    .hamburger span { background-color: var(--dark-color); }
    .navbar.sticky .hamburger { position: fixed; top: 15px; right: 15px; z-index: 1001; }

    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-layout { flex-direction: row; justify-content: space-between; height: 70px; align-items: center; }
    .logo-container { padding: 0; }
    .nav-menu { display: none; }
    .logo img {
        max-width: 90px;
        width: 90px;
        height: auto;
        max-height: none;
    }
    .nav-menu.active { display: flex; }

    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .about-content { grid-template-columns: 1fr; }
    .about-text { left: 0; padding: 30px; }
    .about-image { margin-bottom: -50px; }
    .section-title-left h2::after { left: 50%; transform: translateX(-50%); }
    .process-wrapper { grid-template-columns: repeat(2, 1fr); }
    .process-step:nth-child(2n)::after { display: none; }
    .testimonial-card { min-width: 100%; }

    .why-us-content { grid-template-columns: 1fr; gap: 40px; }
    .why-us-image { order: -1; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .presence-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-header-content { flex-direction: column; gap: 10px; }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-slider { height: 210px; }
    .hero-slider, .testimonial-card { min-width: 50%; }
    .slide img { object-fit: contain; height: auto; max-height: 60vh; }
    .slider-nav { padding: 0 15px; }
    .slider-nav button { width: 40px; height: 40px; font-size: 1.2rem; }
    .map-insta-section { grid-template-columns: 1fr; }

    /* Disable animations on mobile for better performance and to fix visibility issues */
    .anim-fade-up, .anim-slide-left, .anim-slide-right {
        opacity: 1 !important;
        transform: none !important;
    }
    .map-container { height: 400px; }
}

@media (max-width: 576px) {
    .section-padding { padding: 60px 0; }
    .trust-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: 100%; }
    .process-wrapper { grid-template-columns: 1fr; }
    .process-step::after { display: none; }
    .contact-wrapper { padding: 20px; }
    .floating-btn { width: 45px; height: 45px; font-size: 1.2rem; right: 20px; }
    .call-btn { bottom: 75px; }
    .scroll-top-btn { bottom: 130px; }
    .presence-grid { gap: 20px; }
}

/* ===== Inner Page Styles ===== */

/* Breadcrumb */
.page-breadcrumb {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    color: var(--white-color);
}

.page-breadcrumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(62, 39, 35, 0.75);
}

.page-breadcrumb .container {
    position: relative;
    z-index: 1;
}

.page-breadcrumb h1 {
    color: var(--white-color);
    font-size: 2.75rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb-nav a {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--white-color);
}

.breadcrumb-nav span {
    color: var(--light-gray);
}

.breadcrumb-nav .separator {
    color: var(--secondary-color);
}

/* About Page */
.about-page-section {
    background-color: var(--white-color);
}

.about-page-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-page-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-page-content h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-page-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.about-page-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.about-page-content .divider {
    border: none;
    border-top: 2px solid var(--light-gray);
    margin: 40px 0;
}

.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.about-block:nth-child(even) .about-block-image {
    order: 2;
}

.about-block:nth-child(even) .about-block-text {
    order: 1;
}

.about-block-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.about-block-text h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.about-block-text h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.about-block-text p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-block-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.about-block-text ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.about-leadership {
    background-color: var(--bg-alt-color);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.leadership-card {
    background: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.leadership-card .leadership-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    border: 3px solid var(--secondary-color);
}

.leadership-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.leadership-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Products Page */
.products-page-section {
    background-color: var(--bg-alt-color);
}

.product-category {
    margin-bottom: 60px;
}

.product-category-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.product-category-title h2 {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-category-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.product-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-category-card {
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-category-card .product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-category-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-category-card:hover .product-image img {
    transform: scale(1.1);
}

.product-category-card .product-image::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(212, 162, 78, 0.9);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    z-index: 2;
}

.product-category-card:hover .product-image::after {
    transform: translate(-50%, -50%) scale(1);
}

.product-category-card .product-info {
    padding: 20px;
    text-align: center;
}

.product-category-card .product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.product-category-card .product-info p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Homepage Product Card Styles */
.home-product-card {
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    text-align: center;
}

.home-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.home-product-card .product-image {
    height: 250px;
    overflow: hidden;
}

.home-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-product-card:hover .product-image img { transform: scale(1.1); }

/* Gallery Page */
.gallery-section {
    background-color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(212, 162, 78, 0.9);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    z-index: 2;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white-color);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-color);
}

.lightbox-caption {
    text-align: center;
    color: var(--white-color);
    margin-top: 15px;
    font-size: 1rem;
}

/* Why Choose Us Page */
.why-us-page-section {
    background-color: var(--white-color);
}

.leader-profile {
    /* display: grid; */
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    background: var(--bg-color);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align:center
}

.leader-profile:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.leader-profile:nth-child(even) .leader-image {
    order: 2;
}

.leader-profile:nth-child(even) .leader-text {
    order: 1;
}

.leader-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.leader-text h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.leader-text p {
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Contact Page */
.contact-page-section {
    background-color: var(--bg-color);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white-color);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-card .contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: var(--primary-color);
    border: 3px solid var(--secondary-color);
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-card p {
    color: var(--text-color);
    line-height: 1.7;
}

.contact-card a {
    color: var(--text-color);
}

.contact-card a:hover {
    color: var(--secondary-color);
}

.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.contact-page-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.contact-page-form {
    background: var(--white-color);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-page-form h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.75rem;
}

.contact-page-form .form-group input,
.contact-page-form .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-page-form .form-group input:focus,
.contact-page-form .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-page-form .form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-page-map {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-page-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive for inner pages */
@media (max-width: 992px) {
    .page-breadcrumb { padding: 80px 0; }
    .page-breadcrumb h1 { font-size: 2.25rem; }
    .leadership-grid { grid-template-columns: 1fr; }
    .product-category-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-page-wrapper { grid-template-columns: 1fr; }
    .leader-profile,
    .leader-profile:nth-child(even) { grid-template-columns: 1fr; }
    .leader-profile:nth-child(even) .leader-image { order: 1; }
    .leader-profile:nth-child(even) .leader-text { order: 2; }
    .about-block,
    .about-block:nth-child(even) { grid-template-columns: 1fr; }
    .about-block:nth-child(even) .about-block-image { order: 1; }
    .about-block:nth-child(even) .about-block-text { order: 2; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

@media (max-width: 768px) {
    .page-breadcrumb { padding: 60px 0; }
    .page-breadcrumb h1 { font-size: 1.75rem; }
    .product-category-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item { height: 200px; }
}

@media (max-width: 576px) {
    .page-breadcrumb { padding: 50px 0; }
    .page-breadcrumb h1 { font-size: 1.5rem; }
    .product-category-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 250px; }
    .contact-page-form { padding: 25px; }
    .leader-profile { padding: 25px; }
}
