    :root {
        --primary-color: #314E4F;
        --secondary-color: #BB906B;
        --accent-color: #49784F;
        --text-color: #333333;
        --light-text: #666666;
        --bg-color: #ffffff;
        --bg-light: #f8f8f8;
        --border-color: #e5e5e5;
        --shadow: 0 4px 20px rgba(49, 78, 79, 0.1);
        --shadow-lg: 0 10px 40px rgba(49, 78, 79, 0.15);
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Lato', sans-serif;
        color: var(--text-color);
        line-height: 1.6;
        overflow-x: hidden;
    }

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

    /* Header */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--bg-color);
        box-shadow: var(--shadow);
        z-index: 1000;
        transition: var(--transition);
    }

    .header.scrolled {
        box-shadow: var(--shadow-lg);
    }

    .header-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 90px;
    }

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

    .logo-icon {
        width: 50px;
        height: 50px;
    }

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

    .logo-text h1 {
        font-family: 'Lato', sans-serif;
        font-size: 28px;
        font-weight: 400;
        color: var(--primary-color);
        letter-spacing: 3px;
        line-height: 1;
    }

    .logo-text h1 sup {
        font-size: 14px;
        top: -0.8em;
    }

    .logo-text p {
        font-family: 'Playfair Display', serif;
        font-size: 12px;
        font-style: italic;
        color: var(--primary-color);
        letter-spacing: 1px;
    }

    /* Navigation */
    .nav-list {
        display: flex;
        list-style: none;
        gap: 35px;
        align-items: center;
    }

    .nav-link {
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: var(--transition);
        position: relative;
        padding: 5px 0;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--secondary-color);
        transition: var(--transition);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--secondary-color);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    /* Regular Dropdown */
    .has-dropdown {
        position: relative;
    }

    .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--bg-color);
        box-shadow: var(--shadow-lg);
        border-radius: 8px;
        min-width: 220px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
        margin-top: 20px;
        padding: 15px 0;
        border-top: 3px solid var(--secondary-color);
        z-index: 1000;
    }

    .has-dropdown:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown li {
        list-style: none;
    }

    .dropdown a {
        display: block;
        padding: 12px 25px;
        color: var(--text-color);
        text-decoration: none;
        font-size: 13px;
        transition: var(--transition);
    }

    .dropdown a:hover {
        background: var(--bg-light);
        color: var(--secondary-color);
        padding-left: 35px;
    }

    /* MEGA MENU */
    .has-mega-menu {
        position: relative;
    }

    .mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        background: var(--bg-color);
        box-shadow: var(--shadow-lg);
        border-radius: 15px;
        width: 800px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        margin-top: 20px;
        border-top: 4px solid var(--secondary-color);
        z-index: 1000;
    }

    .has-mega-menu:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .mega-menu-container {
        padding: 30px;
    }

    .mega-menu-header {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid var(--border-color);
    }

    .mega-menu-header h3 {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        color: var(--primary-color);
        margin-bottom: 8px;
    }

    .mega-menu-header p {
        font-size: 13px;
        color: var(--light-text);
    }

    .mega-menu-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .mega-menu-column {
        /* Empty - just for structure */
    }

    .mega-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mega-menu-list li {
        margin-bottom: 5px;
    }

    .mega-menu-list a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 12px 15px;
        border-radius: 8px;
        text-decoration: none;
        transition: var(--transition);
    }

    .mega-menu-list a:hover {
        background: var(--bg-light);
        transform: translateX(5px);
    }

    .menu-icon {
        font-size: 24px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #a67c56 100%);
        border-radius: 8px;
        flex-shrink: 0;
    }

    .menu-text {
        flex: 1;
    }

    .menu-text strong {
        display: block;
        font-size: 14px;
        color: var(--primary-color);
        margin-bottom: 3px;
        font-weight: 600;
    }

    .menu-text small {
        display: block;
        font-size: 11px;
        color: var(--light-text);
        line-height: 1.3;
    }

    .mega-menu-footer {
        margin-top: 25px;
        padding-top: 20px;
        border-top: 2px solid var(--border-color);
        text-align: center;
    }

    .view-all-btn {
        display: inline-block;
        padding: 12px 30px;
        background: var(--secondary-color);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: var(--transition);
    }

    .view-all-btn:hover {
        background: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .btn-enquire {
        background: var(--secondary-color);
        color: white !important;
        padding: 10px 25px !important;
        border-radius: 50px;
    }

    .btn-enquire::after {
        display: none;
    }

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

    /* Mobile Toggle */
    .mobile-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .mobile-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        transition: var(--transition);
        border-radius: 2px;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero Section */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 90px;
        background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
        overflow: hidden;
    }

    .hero-background {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #a67c56 100%);
        opacity: 0.08;
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    }

    .hero-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 80px 40px 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .hero-subtitle {
        font-size: 14px;
        color: var(--secondary-color);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 600;
        margin-bottom: 20px;
        opacity: 0;
        animation: fadeInUp 0.8s ease forwards 0.2s;
    }

    .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: 68px;
        font-weight: 700;
        color: var(--primary-color);
        line-height: 1.1;
        margin-bottom: 30px;
        opacity: 0;
        animation: fadeInUp 0.8s ease forwards 0.4s;
    }

    .hero-description {
        font-size: 17px;
        color: var(--light-text);
        margin-bottom: 40px;
        line-height: 1.8;
        opacity: 0;
        animation: fadeInUp 0.8s ease forwards 0.6s;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        opacity: 0;
        animation: fadeInUp 0.8s ease forwards 0.8s;
    }

    .btn {
        padding: 16px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: var(--transition);
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

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

    .btn-primary:hover {
        background: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    .btn-secondary {
        background: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }

    .btn-secondary:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-3px);
    }

    .hero-image {
        position: relative;
        opacity: 0;
        animation: fadeInRight 1s ease forwards 0.6s;
    }

    /* Ensure the container holds the image correctly */
    .image-placeholder {
        width: 100%;
        height: 500px;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        background: #e5e5e5;
        /* Fallback color */
    }

    /* Style the actual image */
    .hero-img-fluid {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* This prevents stretching */
        display: block;
    }

    /* Remove the decorative background circle from your original CSS */
    .image-placeholder::before {
        display: none;
    }



    .floating-badge {
        position: absolute;
        top: 30px;
        right: 30px;
        background: var(--secondary-color);
        color: white;
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase;
        animation: float 3s ease-in-out infinite;
        z-index: 10;
    }

    /* About Section */
    .about-section {
        padding: 100px 0;
        background: var(--bg-color);
    }

    .about-content {
        max-width: 900px;
        margin: 0 auto;
    }

    .about-text h2 {
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        color: var(--primary-color);
        margin-bottom: 15px;
        text-align: center;
    }

    .divider {
        width: 100px;
        height: 3px;
        background: var(--secondary-color);
        margin: 0 auto 40px;
    }

    .intro {
        font-size: 19px;
        color: var(--text-color);
        margin-bottom: 30px;
        line-height: 1.8;
        font-weight: 500;
    }

    .about-text p {
        font-size: 16px;
        color: var(--light-text);
        margin-bottom: 25px;
        line-height: 1.9;
    }

    .about-text strong {
        color: var(--primary-color);
        font-weight: 600;
    }

    /* Perfection Section */
    .perfection-section {
        padding: 100px 0;
        background: var(--bg-light);
    }

    .perfection-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    /* Updated Perfection Image Styles */
    .perfection-image .image-wrapper {
        width: 100%;
        height: 550px;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: #e5e5e5;
        /* Fallback color */
    }

    /* Make the image fill the entire container */
    .perfection-image .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* This ensures the image doesn't stretch */
        display: block;
    }

    /* Remove the circle decoration you mentioned */
    .perfection-image .image-wrapper::before {
        display: none;
    }

    .perfection-text h2 {
        font-family: 'Playfair Display', serif;
        font-size: 42px;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .perfection-text p {
        font-size: 16px;
        color: var(--light-text);
        margin-bottom: 25px;
        line-height: 1.9;
    }

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

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

    .section-header.centered {
        margin-bottom: 70px;
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        color: var(--primary-color);
        font-weight: 700;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 17px;
        color: var(--light-text);
        margin-top: 15px;
    }

    .products-slider-container {
        position: relative;
    }

    .products-wrapper {
        overflow: hidden;
        position: relative;
    }

    .products-grid {
        display: flex;
        transition: transform 0.5s ease-in-out;
        will-change: transform;
    }

    .product-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        transition: var(--transition);
        cursor: pointer;
        /* On Desktop: Show 3 items (minus the margin) */
        flex: 0 0 calc(33.333% - 20px);
        margin-right: 30px;
        box-sizing: border-box;
        border: 1px solid var(--border-color);
        flex-shrink: 0;
    }

    .product-card.clone:last-child {
        margin-right: 30px;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: var(--secondary-color);
    }

    .product-image {
        height: 300px;
        position: relative;
        overflow: hidden;
        background: #f5f5f5;
        /* Fallback color */
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Prevents stretching */
        display: block;
        transition: var(--transition);
    }

    /* Hover effect: Zoom image slightly */
    .product-card:hover .product-image img {
        transform: scale(1.05);
    }

    /* Remove the circle decoration you had before */
    .product-image::before {
        display: none;
    }

    /* Keep the badge on top of the image */
    .product-badge {
        z-index: 2;
    }


    /* .product-image::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;
        height: 60%;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #a67c56 100%);
        opacity: 0.15;
        border-radius: 50%;
        transition: var(--transition);
    } */

    .product-card:hover .product-image::before {
        width: 80%;
        height: 80%;
    }

    .product-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--secondary-color);
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .product-info {
        padding: 30px;
    }

    .product-info h3 {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .product-info p {
        color: var(--light-text);
        margin-bottom: 20px;
        font-size: 14px;
    }

    .product-link {
        color: var(--secondary-color);
        text-decoration: none;
        font-weight: 600;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: var(--transition);
    }

    .product-link:hover {
        color: var(--primary-color);
        padding-left: 10px;
    }

    /* Slider Navigation */
    .slider-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 50px;
    }

    .slider-arrow {
        background: white;
        border: 2px solid var(--border-color);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        font-size: 20px;
        color: var(--primary-color);
        font-weight: bold;
    }

    .slider-arrow:hover:not(:disabled) {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
        color: white;
        transform: scale(1.1);
    }

    .slider-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .slider-dots {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--border-color);
        cursor: pointer;
        transition: var(--transition);
        border: none;
        padding: 0;
    }

    .dot.active {
        background: var(--secondary-color);
        width: 32px;
        border-radius: 5px;
    }

    .dot:hover:not(.active) {
        background: var(--secondary-color);
        opacity: 0.5;
    }

    /* Why Choose Us */
    .why-choose {
        padding: 100px 0;
        background: var(--bg-light);
    }

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

    .feature-item {
        text-align: center;
        padding: 40px 30px;
        background: white;
        border-radius: 15px;
        transition: var(--transition);
        border: 1px solid var(--border-color);
    }

    .feature-item:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: var(--secondary-color);
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #a67c56 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
    }

    .feature-icon svg {
        width: 35px;
        height: 35px;
        color: white;
    }

    .feature-item h4 {
        font-size: 20px;
        color: var(--primary-color);
        margin-bottom: 15px;
        font-weight: 600;
    }

    .feature-item p {
        color: var(--light-text);
        font-size: 14px;
        line-height: 1.7;
    }

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

    .testimonials-slider-container {
        position: relative;
    }

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

    .testimonials-grid {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .testimonial-card {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        flex: 0 0 calc(33.333% - 20px);
        margin-right: 30px;
        border: 1px solid var(--border-color);
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--secondary-color);
    }

    .testimonial-stars {
        color: var(--secondary-color);
        font-size: 22px;
        margin-bottom: 20px;
    }

    .testimonial-text {
        font-size: 15px;
        color: var(--text-color);
        line-height: 1.8;
        margin-bottom: 25px;
        font-style: italic;
    }

    .testimonial-author h4 {
        font-size: 17px;
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 5px;
    }

    .testimonial-author p {
        font-size: 13px;
        color: var(--light-text);
    }

    /* CTA Section */
    .cta-section {
        padding: 100px 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, #284042 100%);
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: var(--secondary-color);
        opacity: 0.1;
        border-radius: 50%;
    }

    .cta-content {
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .cta-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        color: white;
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 40px;
    }

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

    .btn-light {
        background: white;
        color: var(--primary-color);
    }

    .btn-light:hover {
        background: var(--secondary-color);
        color: white;
    }

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

    .btn-outline:hover {
        background: white;
        color: var(--primary-color);
    }

    /* Footer */
    .footer {
        background: var(--primary-color);
        color: white;
        padding: 80px 0 30px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 60px;
        margin-bottom: 50px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .footer-logo .logo-icon {
        width: 45px;
        height: 45px;
    }

    .footer-logo h3 {
        font-family: 'Lato', sans-serif;
        font-size: 24px;
        font-weight: 400;
        letter-spacing: 2px;
        line-height: 1;
    }

    .footer-logo h3 sup {
        font-size: 12px;
    }

    .footer-logo .tagline {
        font-family: 'Playfair Display', serif;
        font-size: 11px;
        font-style: italic;
        color: var(--secondary-color);
        letter-spacing: 1px;
    }

    .footer-col h4 {
        font-size: 18px;
        margin-bottom: 20px;
        font-weight: 600;
        color: var(--secondary-color);
    }

    .footer-col p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
        margin-bottom: 25px;
    }

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

    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
        font-size: 14px;
    }

    .footer-col ul li a:hover {
        color: var(--secondary-color);
        padding-left: 10px;
    }

    .contact-info {
        list-style: none;
        padding: 0;
    }

    .contact-info li {
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        align-items: flex-start;
        /* Aligns icon to top of multi-line address */
        gap: 15px;
        margin-bottom: 20px;
    }

    .footer-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        /* Prevents icon from squishing on mobile */
        color: white;
        /* Makes SVG lines white */
        margin-top: 3px;
        /* Fine-tunes vertical alignment with first line of text */
    }

    .contact-info span {
        font-size: 14px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
        /* Slightly muted white for better readability */
    }

    /* Mobile Adjustments */
    @media (max-width: 768px) {
        .contact-info li {
            margin-bottom: 15px;
        }
    }

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

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .social-links a:hover {
        background: var(--secondary-color);
        transform: translateY(-3px);
    }

    .social-links svg {
        width: 20px;
        height: 20px;
    }

    .footer-bottom {
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 13px;
    }

    .footer-bottom a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
    }

    .footer-bottom a:hover {
        color: var(--secondary-color);
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .header-container {
            padding: 0 30px;
        }

        .hero-content {
            grid-template-columns: 1fr;
            gap: 50px;
            padding: 60px 30px 40px;
        }

        .hero-title {
            font-size: 52px;
        }

        .perfection-content {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .product-card {
            flex: 0 0 calc(33.333% - 20px);
            /* This ensures 3 items per view */
            margin-right: 30px;
            /* The gap used in JS */
            box-sizing: border-box;
        }

        .testimonial-card {
            flex: 0 0 calc(50% - 15px);
        }

        .footer-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
    }

    /* Responsive Design - Update the @media (max-width: 768px) section */
    @media (max-width: 768px) {
        .mobile-toggle {
            display: flex;
            z-index: 1001;
        }

        .nav {
            position: fixed;
            top: 90px;
            /* Adjust if your header height is different */
            left: 0;
            right: 0;
            background: white;
            box-shadow: var(--shadow-lg);
            max-height: 0;
            overflow-y: auto;
            transition: var(--transition);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
        }

        .nav.active {
            max-height: calc(100vh - 90px);
            opacity: 1;
            visibility: visible;
        }

        /* 1. FIXED: Removed padding: 20px that created the outer gap */
        .nav-list {
            flex-direction: column;
            gap: 0;
            padding: 0;
            align-items: stretch;
        }

        .nav-list li {
            width: 100%;
            border-bottom: 1px solid var(--border-color);
            list-style: none;
        }

        .nav-link {
            display: block;
            padding: 18px 25px;
            /* Clean, consistent padding */
            width: 100%;
            text-decoration: none;
            color: var(--text-color);
        }

        /* 2. FIXED: Removed all margins/padding when closed to kill the "bad gap" */
        .dropdown,
        .mega-menu {
            position: static;
            width: 100%;
            max-height: 0;
            opacity: 0;
            visibility: hidden;
            overflow: hidden;
            background: #f9f9f9;
            /* Subtle contrast */
            border: none;
            padding: 0;
            /* Reset padding to 0 when closed */
            margin: 0;
            /* Reset margin to 0 when closed */
            box-shadow: none;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* 3. FIXED: Padding only returns when the menu is actually OPEN */
        .has-dropdown.active>.dropdown,
        .has-mega-menu.active>.mega-menu {
            max-height: 1500px;
            opacity: 1;
            visibility: visible;
            padding: 10px 0;
            /* Small vertical breathing room inside the open menu */
        }

        /* Cleanup Mega Menu content for mobile */
        .mega-menu-container {
            padding: 0;
        }

        .mega-menu-content {
            display: block;
            /* Stack items vertically */
        }

        .mega-menu-header {
            padding: 15px 40px 5px;
            text-align: left;
        }

        .mega-menu-header h3 {
            font-size: 14px;
            text-transform: uppercase;
            color: var(--primary-color);
        }

        .dropdown a,
        .mega-menu-list a {
            padding: 12px 45px;
            /* Indented for hierarchy */
            font-size: 13px;
            color: var(--light-text);
            display: block;
            text-decoration: none;
        }

        /* Resetting your specific button colors to match screenshot */
        .nav-list li:has(.enquire-btn) {
            border-bottom: none;
            padding: 15px 25px;
        }

        .enquire-btn {
            background: #BB906B !important;
            color: white !important;
            text-align: center;
            border-radius: 30px;
            padding: 12px !important;
        }

        /* Other mobile styles */
        .hero-title {
            font-size: 42px;
        }

        .hero-description {
            font-size: 16px;
        }

        .section-title {
            font-size: 36px;
        }

        .products-wrapper {
            overflow: hidden;
            width: 100%;
        }

        .products-grid {
            display: flex;
            width: 100%;
        }

        .product-card {
            flex: 0 0 100% !important;
            margin-right: 20px;
            max-width: 100%;
        }

        .product-card {
            flex: 0 0 100%;
            margin-right: 20px;
        }

        .products-slider-container {
            padding: 0;
            margin: 0;
            overflow: hidden;
        }

        .testimonial-card {
            flex: 0 0 calc(100% - 0px);
            margin-right: 0;
        }

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

        .footer-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .cta-content h2 {
            font-size: 32px;
        }
    }

    @media (max-width: 480px) {
        .header-container {
            padding: 0 20px;
            height: 80px;
        }

        .logo-text h1 {
            font-size: 24px;
        }

        .hero {
            padding-top: 80px;
        }

        .hero-title {
            font-size: 36px;
        }

        .btn {
            padding: 14px 30px;
            font-size: 13px;
        }

        .hero-buttons {
            flex-direction: column;
            width: 100%;
        }

        .btn {
            width: 100%;
            text-align: center;
        }

        .section-title {
            font-size: 28px;
        }

        .slider-nav {
            gap: 15px;
            margin-top: 40px;
        }

        .slider-arrow {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

        .dot {
            width: 8px;
            height: 8px;
        }

        .dot.active {
            width: 24px;
        }

        .product-card {
            flex: 0 0 100%;
            margin-right: 10px;
        }
    }




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

    .hero-slides {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-img-fluid {
        position: absolute;
        /* Stack images */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        /* Smooth fade effect */
        z-index: 1;
    }

    .hero-img-fluid.active {
        position: relative;
        /* Only the active image provides height */
        opacity: 1;
        z-index: 2;
    }

    .floating-badge {
        z-index: 3;
        /* Keep badge on top of all images */
    }



    /* Shared Styles for both pages */
    .page-header-simple {
        background: var(--primary-color);
        padding: 60px 0;
        color: white;
        text-align: center;
    }

    .section-spacer {
        padding: 20px 0 80px;
    }

    /* Contact Page Specific */
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }

    .contact-card {
        text-align: center;
        padding: 40px 20px;
        background: var(--bg-light);
        border: 1px solid var(--border-color);
        transition: var(--transition);
    }

    .contact-card:hover {
        border-color: var(--secondary-color);
        background: white;
        box-shadow: var(--shadow);
    }

    .contact-card svg {
        color: var(--secondary-color);
        margin-bottom: 20px;
        width: 40px;
        height: 40px;
    }

    /* Enquiry Page Specific */
    .enquiry-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .form-box {
        background: white;
        padding: 50px;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
    }

    .form-title {
        color: var(--primary-color);
        margin-bottom: 30px;
        text-align: center;
        font-size: 2rem;
    }

    .input-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin-bottom: 10px;
    }

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

    .field-group label {
        display: block;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 8px;
        font-size: 0.9rem;
    }

    .field-group input,
    .field-group select,
    .field-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid var(--border-color);
        font-family: inherit;
        font-size: 1rem;
    }

    .field-group input:focus {
        outline: none;
        border-color: var(--secondary-color);
    }

    .btn-submit {
        background: var(--primary-color);
        color: white;
        width: 100%;
        padding: 15px;
        border: none;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        transition: var(--transition);
    }

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

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

        .input-row {
            grid-template-columns: 1fr;
        }

        .form-box {
            padding: 30px 20px;
        }
    }



    .about-hero {
        /* Fixed background path (removed leading slash) */
        background: linear-gradient(rgba(49, 78, 79, 0.85), rgba(49, 78, 79, 0.85)),
            url('assets/images/home/pams-about-img.png') center/cover no-repeat;

        padding: 120px 0 80px;
        color: white;
        margin-bottom: 80px;

        /* Added these 4 lines to force centering */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .about-hero h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        letter-spacing: -1px;
        width: 100%;
        /* Ensures text aligns to its own center */
    }

    .breadcrumb {
        color: var(--secondary-color);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        display: block;
        /* Ensures it sits on its own line */
        margin-bottom: 10px;
    }

    /* Section Styling */
    .section-padding {
        padding: 0px 0 80px;
    }

    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-image-wrapper {
        position: relative;
    }

    .about-image-wrapper img {
        width: 100%;
        border-radius: 4px;
        box-shadow: var(--shadow-lg);
    }

    .about-image-wrapper::after {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100px;
        height: 100px;
        border-top: 5px solid var(--secondary-color);
        border-left: 5px solid var(--secondary-color);
        z-index: -1;
    }

    .accent-title {
        color: var(--primary-color);
        font-size: 2.5rem;
        margin-bottom: 25px;
        position: relative;
    }

    .accent-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: var(--secondary-color);
        margin-top: 15px;
    }

    /* Stats Section */
    .stats-bar {
        background: var(--bg-light);
        padding: 60px 0;
        margin: 40px 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        text-align: center;
    }

    .stat-item h2 {
        color: var(--primary-color);
        font-size: 3rem;
        margin-bottom: 5px;
    }

    .stat-item p {
        color: var(--light-text);
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    /* Value Cards */
    .values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

    .value-card {
        padding: 40px;
        background: white;
        border: 1px solid var(--border-color);
        transition: var(--transition);
    }

    .value-card:hover {
        border-color: var(--secondary-color);
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .value-card i {
        font-size: 2rem;
        color: var(--secondary-color);
        margin-bottom: 20px;
        display: block;
    }

    .value-card h3 {
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    @media (max-width: 992px) {

        .grid-2,
        .values-grid {
            grid-template-columns: 1fr;
        }

        .stats-grid {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .about-hero h1 {
            font-size: 2.5rem;
        }
    }

    /* Why Choose Us Section */
    .why-choose-us {
        padding: 100px 0;
        background-color: var(--bg-color);
    }

    .section-intro {
        text-align: center;
        max-width: 750px;
        margin: 0 auto 60px;
    }

    .section-intro .accent-title {
        display: inline-block;
        color: var(--primary-color);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
    }

    .section-intro .accent-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: var(--secondary-color);
        margin: 15px auto 0;
    }

    .section-intro p {
        color: var(--light-text);
        font-size: 1.1rem;
    }

    /* Grid Logic */
    .values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .value-card {
        padding: 50px 35px;
        background: var(--bg-light);
        border: 1px solid var(--border-color);
        transition: var(--transition);
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .value-card:hover {
        background: var(--bg-color);
        border-color: var(--secondary-color);
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .value-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 25px;
        color: var(--secondary-color);
    }

    .value-card h3 {
        color: var(--primary-color);
        font-size: 1.4rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .value-card p {
        color: var(--text-color);
        font-size: 1rem;
        line-height: 1.7;
    }

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

    @media (max-width: 768px) {
        .why-choose-us {
            padding: 60px 0;
        }

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

        .section-intro .accent-title {
            font-size: 2rem;
        }

        .value-card {
            padding: 40px 25px;
        }
    }




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

    .testimonial-item {
        background: var(--bg-light);
        padding: 40px;
        border: 1px solid var(--border-color);
        position: relative;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .testimonial-item:hover {
        background: white;
        border-color: var(--secondary-color);
        box-shadow: var(--shadow-lg);
        transform: translateY(-5px);
    }

    .quote-icon {
        color: var(--secondary-color);
        font-size: 3rem;
        line-height: 1;
        margin-bottom: 10px;
        font-family: serif;
        opacity: 0.3;
    }

    .testimonial-text {
        font-style: italic;
        color: var(--text-color);
        margin-bottom: 25px;
        line-height: 1.8;
    }

    .testimonial-user {
        display: flex;
        align-items: center;
        gap: 15px;
        border-top: 1px solid var(--border-color);
        padding-top: 20px;
    }

    .user-info h4 {
        color: var(--primary-color);
        margin: 0;
        font-size: 1.1rem;
    }

    .user-info p {
        color: var(--secondary-color);
        margin: 0;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .star-rating {
        color: #f1c40f;
        /* Gold for stars */
        margin-bottom: 15px;
        font-size: 0.9rem;
    }

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

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

        .testimonial-header h1 {
            font-size: 2.5rem;
        }
    }










    /* Product Detail Layout */
.product-detail-section {
    padding: 20px 0 80px;
    background: var(--bg-color);
}

.product-display-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 100px;
}

/* Image Presentation */
.product-large-view {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
}

.product-large-view img {
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply; /* Agar white background image hai toh */
}

/* Product Info & Specs */
.product-specs-box h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.product-code {
    background: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 5px 15px;
    font-weight: 700;
    margin-bottom: 25px;
}

.product-description {
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Technical Table - Like your Catalog */
.tech-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tech-table th {
    background: var(--primary-color);
    color: white;
    text-align: left;
    padding: 12px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.tech-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.tech-table tr:nth-child(even) {
    background: var(--bg-light);
}

.material-tag {
    margin-top: 20px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

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






.pams-products-section {
    padding: 20px 0 80px;
    background-color: #fcfcfc;
}

.pams-products-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.pams-products-intro {
    text-align: center;
    margin-bottom: 60px;
}

.pams-products-intro h1 {
    font-size: 2.8rem;
    color: #314e4f;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif; /* Or your site's heading font */
}

.pams-products-intro p {
    color: #777;
    font-size: 1.1rem;
}

/* Gallery Grid */
.pams-products-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns like your screenshot */
    gap: 30px;
}

/* Card Styling */
.pams-products-cat-card {
    background: #fff;
    border-radius: 15px; /* Rounded corners like image */
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.pams-products-cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pams-products-img-area {
    background: #f4f4f4;
    /* Use aspect-ratio instead of fixed height to ensure it scales perfectly on all screens */
    aspect-ratio: 4 / 3; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0; /* Remove padding so image touches the edges */
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.pams-products-img-area img {
    width: 100%;
    height: 100%;
    /* 'cover' will now fill the 4:3 box completely without gaps */
    object-fit: cover; 
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Luxury hover effect: slight zoom and dim to make text pop */
.pams-products-cat-card:hover .pams-products-img-area img {
    transform: scale(1.1);
}

.pams-products-cat-card:hover .pams-products-img-area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.05); /* Very subtle overlay on hover */
}

/* Badge like the "NEW" tag in your screenshot */
.pams-products-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #c09d7a;
    color: white;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
}

.pams-products-content {
    padding: 30px;
}

.pams-products-content h3 {
    font-size: 1.4rem;
    color: #314e4f;
    margin-bottom: 10px;
}

.pams-products-content p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.pams-products-link {
    display: inline-block;
    color: #c09d7a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.pams-products-link:hover {
    color: #314e4f;
}

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

@media (max-width: 600px) {
    .pams-products-gallery { grid-template-columns: 1fr; }
    .pams-products-intro h1 { font-size: 2rem; }
}









/* Product Grid Wrapper */
.product-catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two products per row like the catalog */
    gap: 40px;
    padding: 10px 0;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
}

/* Catalog Image Style */
.catalog-img-holder {
    background: #f9f9f9;
    padding: 30px;
    text-align: center;
}

.catalog-img-holder img {
    max-width: 100%;
    height: auto;
}

/* Technical Data Table */
.catalog-info {
    padding: 20px;
    display: none;
}

.catalog-header {
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    margin-bottom: 10px;
}

.catalog-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.catalog-header span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.spec-table th {
    text-align: left;
    padding: 8px;
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
}

.spec-table td {
    padding: 8px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.spec-table tr:nth-child(even) {
    background: #fafafa;
}

@media (max-width: 768px) {
    .product-catalog-grid { grid-template-columns: 1fr; }
}