/* ARANYA INTERNATIONAL - Professional Import Export Website */

/* Global Typography */
body, p, span, li, a, input, textarea, button, label, small, div {
    font-family: 'Nunito', sans-serif;
    color: var(--primary-black);
    font-size: 16px;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

h1 {
    font-size: 46px;
    font-weight: 800;
}

h2 {
    font-size: 36px;
    font-weight: 700;
}

h3 {
    font-size: 28px;
    font-weight: 700;
}

h4 {
    font-size: 24px;
    font-weight: 600;
}

h5 {
    font-size: 20px;
    font-weight: 600;
}

h6 {
    font-size: 18px;
    font-weight: 600;
}

/* CSS Variables for Strict Black and White Theme */
:root {
    --primary-white: #ffffff;
    --primary-black: #000000;
    --primary-green: #2E7D32;
    --light-green: #4CAF50;
    --dark-green: #1B5E20;
    --primary-red: #D32F2F;
    --light-red: #F44336;
    --dark-red: #B71C1C;
}

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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.7;
    color: var(--primary-black);
    background-color: var(--primary-white);
}

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

/* Header & Navigation */
header {
    background-color: var(--primary-white);
    border: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
    margin-bottom: 0;
}

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

.nav-left {
    display: flex;
    align-items: center;
    order: 1;
    flex-shrink: 0;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
    flex: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    order: 3;
    gap: 1rem;
    flex-shrink: 0;
}

.logo {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-black);
    text-decoration: none;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 600;
    transition: text-decoration 0.3s ease;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: block;
}

.logout-form {
    display: inline;
    margin: 0;
    padding: 0;
}

.logout-button {
    font-family: 'Nunito', sans-serif;
    background-color: var(--primary-red);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button {
    font-family: 'Nunito', sans-serif;
    background-color: var(--primary-green);
    color: var(--primary-white);
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.language-selector {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 0;
}

.language-dropdown {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
    min-width: 120px;
    margin: 0;
    height: 40px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.language-dropdown:hover {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.language-dropdown:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.language-dropdown option {
    background-color: var(--primary-white);
    color: var(--primary-black);
    padding: 8px;
}

.cta-button {
    font-family: 'Nunito', sans-serif;
    background-color: var(--primary-green);
    color: var(--primary-white);
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: var(--dark-green);
    color: var(--primary-white);
}

/* Logout Button */
.logout-button {
    font-family: 'Nunito', sans-serif;
    background-color: var(--primary-red);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
}

.logout-button:hover {
    background-color: var(--dark-red);
    color: var(--primary-white);
    transform: translateY(-1px);
}

/* Products Hero Section */
.products-hero {
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 80px 0;
    text-align: center;
    border: none;
}

.products-hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 1;
    color: var(--primary-black);
}

.product-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.branding-line {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-black);
    margin: 0;
}

/* Premium Product Highlight Section */
.premium-highlight {
    background-color: var(--primary-white);
    padding: 80px 60px;
    border: none;
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-text h2 {
    font-size: 42px;
    font-weight: bold;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    white-space: nowrap;
    line-height: 1.2;
}

.premium-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-black);
}

.premium-text p {
    font-size: 18px;
    color: var(--primary-black);
    line-height: 1.6;
    margin: 0;
}

.product-image-container {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: 12px;
    border: none;
    max-width: 450px;
    margin: 0 auto;
}

.premium-product-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Product Details Section */
.product-details {
    padding: 80px 0;
    background-color: var(--primary-white);
    border: none;
}

.product-details-card {
    background: var(--primary-white);
    border-radius: 12px;
    padding: 40px;
    border: none;
}

.product-details-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-name {
    font-size: 32px;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.specifications-column h3,
.advantages-column h3 {
    color: var(--primary-black);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.spec-list,
.advantage-list {
    list-style: none;
    padding: 0;
}

.spec-list li,
.advantage-list li {
    padding: 10px 0;
    border: none;
    color: var(--primary-black);
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.spec-list li:before,
.advantage-list li:before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Customization Section */
.customization-section {
    padding: 80px 0;
    background-color: var(--primary-white);
    border: none;
}

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

.section-header h2 {
    font-size: 36px;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--primary-black);
    margin: 0;
}

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

.customization-card {
    background: var(--primary-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: none;
    transition: transform 0.3s ease;
}

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

.card-icon {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.customization-card h4 {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-black);
    margin: 15px 0 10px 0;
}

.customization-card p {
    color: var(--primary-black);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section .lead {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--primary-green);
    border: none;
    color: var(--primary-white);
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border: none;
    color: var(--primary-white);
}

/* Certificates Page Styles */
.certificates-hero {
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 80px 0;
    text-align: center;
    border: none;
}

.certificates-hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.certificates-hero .hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin: 0;
}

.certificates-intro {
    padding: 60px 0;
    background-color: var(--primary-white);
    border: none;
}

.intro-text {
    font-size: 18px;
    color: var(--primary-black);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.certificate-display {
    padding: 80px 0;
    background-color: var(--primary-white);
    border: none;
}

.certificate-card {
    background: var(--primary-white);
    border-radius: 12px;
    padding: 40px;
    border: none;
    max-width: 1000px;
    margin: 0 auto;
}

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

.certificate-image {
    text-align: center;
}

.image-container {
    background: var(--primary-white);
    padding: 20px;
    border-radius: 12px;
    border: none;
    max-width: 350px;
    margin: 0 auto;
}

.certificate-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease;
}

.certificate-img:hover {
    transform: scale(1.02);
}

.image-container a {
    text-decoration: none;
    display: block;
}

.certificate-details h2 {
    font-size: 28px;
    color: var(--primary-black);
    margin-bottom: 25px;
    font-weight: bold;
}

.info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.info-list li {
    padding: 10px 0;
    border: none;
    color: var(--primary-black);
    line-height: 1.6;
}

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

.info-list strong {
    color: var(--primary-black);
}

.certificate-description {
    font-size: 16px;
    color: var(--primary-black);
    line-height: 1.6;
    margin: 0;
}

.trust-badges {
    padding: 60px 0;
    background-color: var(--primary-white);
    border: none;
}

.trust-header {
    text-align: center;
    margin-bottom: 40px;
}

.trust-header h3 {
    font-size: 32px;
    color: var(--primary-black);
    margin: 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.badge-item {
    text-align: center;
    background: var(--primary-white);
    padding: 25px 20px;
    border-radius: 12px;
    border: none;
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
}

.badge-icon {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.badge-item h4 {
    font-size: 16px;
    color: var(--primary-black);
    margin: 0;
    font-weight: bold;
}

/* Product Images - No Filters Applied */
.product-slide img,
.home-product-slide img,
.premium-product-img,
.certificate-img,
.about-preview-img {
    filter: none !important;
    opacity: 1 !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
}

/* More Details Section */
.more-details-section {
    padding: 40px 0;
    background-color: var(--primary-white);
    border: none;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background: #ffffff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(18px);
    transform: scale(1.1);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg.active {
    opacity: 1;
}

.hero-bg-img1 {
    background-image: url('/static/images/img1.png');
}

.hero-bg-img2 {
    background-image: url('/static/images/img2.jpeg');
}

.hero-bg-img3 {
    background-image: url('/static/images/img3.jpeg');
}

.hero-main-img {
    position: absolute;
    inset: 0;
    margin: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 2;
}

.hero-main-img.active {
    opacity: 1;
}

/* Slider Text Overlay */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.overlay-content {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 30px 40px;
    border-radius: 8px;
    backdrop-filter: none;
    max-width: 80%;
}

.overlay-text {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #2F2F2F;
    margin: 0 0 15px 0;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #556B2F, #8FBC8F);
    margin: 0 auto;
    border-radius: 2px;
}

/* Responsive Overlay Text */
@media (max-width: 768px) {
    .overlay-content {
        padding: 20px 30px;
        max-width: 90%;
    }
    
    .overlay-text {
        font-size: 24px;
        font-weight: 600;
    }
    
    .underline {
        width: 60px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .overlay-content {
        padding: 15px 20px;
        max-width: 95%;
    }
    
    .overlay-text {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .underline {
        width: 50px;
        height: 2px;
    }
}

/* Product Image Slider */
.product-slider-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    border: none;
    background: var(--primary-white);
}

.product-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-white);
}

.product-slide.active {
    opacity: 1;
    z-index: 2;
}

.product-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--primary-black);
    font-size: 18px;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: none;
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-black);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Responsive Product Slider */
@media (max-width: 768px) {
    .product-slider-container {
        max-width: 350px;
    }
    
    .product-slider {
        height: 350px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev-arrow {
        left: 10px;
    }
    
    .next-arrow {
        right: 10px;
    }
    
    .slider-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .product-slider-container {
        max-width: 300px;
    }
    
    .product-slider {
        height: 300px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .prev-arrow {
        left: 8px;
    }
    
    .next-arrow {
        right: 8px;
    }
    
    .slider-indicators {
        bottom: 12px;
        gap: 6px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
        border-width: 1px;
    }
}

/* Home Page Product Slider */
.home-product-slider-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    border: none;
    background: var(--primary-white);
}

.home-product-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.home-product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-white);
}

.home-product-slide.active {
    opacity: 1;
    z-index: 2;
}

.home-product-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: none;
    opacity: 1;
}

/* Home Slider Navigation Arrows */
.home-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--primary-black);
    font-size: 16px;
}

.home-slider-arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: none;
}

/* Home Slider Indicators */
.home-slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.home-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-indicator.active {
    background: var(--primary-black);
    transform: scale(1.2);
}

.home-indicator:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Responsive Home Product Slider */
@media (max-width: 768px) {
    .home-product-slider-container {
        max-width: 300px;
    }
    
    .home-product-slider {
        height: 300px;
    }
    
    .home-slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .home-slider-indicators {
        bottom: 12px;
    }
    
    .home-indicator {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .home-product-slider-container {
        max-width: 250px;
    }
    
    .home-product-slider {
        height: 250px;
    }
    
    .home-slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .home-slider-indicators {
        bottom: 10px;
        gap: 4px;
    }
    
    .home-indicator {
        width: 5px;
        height: 5px;
        border-width: 1px;
    }
}

/* About Us Preview Section */
.about-preview-section {
    padding: 80px 0;
    background-color: var(--primary-white);
    border: none;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-preview-text h2 {
    font-size: 36px;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.about-preview-text p {
    font-size: 18px;
    color: var(--primary-black);
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-preview-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: none;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--primary-white);
    padding: 40px 30px;
    border-radius: 12px;
    border: none;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

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

.service-card .service-icon {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: var(--primary-black);
    line-height: 1.6;
}
.services-preview-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.services-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-preview-card {
    background: var(--primary-white);
    padding: 40px 30px;
    border-radius: 12px;
    border: none;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-preview-card .service-icon {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.service-preview-card h3 {
    font-size: 22px;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.service-preview-card p {
    font-size: 16px;
    color: var(--primary-black);
    line-height: 1.6;
}

/* Customization Preview Section */
.customization-preview-section {
    padding: 80px 0;
    background-color: var(--primary-white);
    border: none;
}

.customization-preview-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.customization-preview-card {
    background: var(--primary-white);
    padding: 30px 20px;
    border-radius: 12px;
    border: none;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.customization-preview-card .card-icon {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.customization-preview-card h4 {
    font-size: 18px;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.customization-preview-card p {
    font-size: 14px;
    color: var(--primary-black);
    line-height: 1.5;
}

/* Certificates Grid for Home Page */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.certificates-grid .certificate-card {
    background: var(--primary-white);
    border-radius: 12px;
    padding: 30px;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.certificates-grid .certificate-card:hover {
    transform: translateY(-5px);
}

.certificates-grid .certificate-image {
    margin-bottom: 20px;
}

.certificates-grid .certificate-image .image-container {
    background: var(--primary-white);
    padding: 15px;
    border-radius: 12px;
    border: none;
    max-width: 200px;
}

.certificates-grid .certificate-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.certificates-grid .certificate-details h3 {
    font-size: 18px;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.certificates-grid .certificate-details p {
    font-size: 14px;
    color: var(--primary-black);
    line-height: 1.5;
}

/* Company Glimpse Section */
.company-glimpse-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.company-glimpse-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.company-info-card {
    background: var(--primary-white);
    padding: 30px 20px;
    border-radius: 12px;
    border: none;
    text-align: center;
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

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

.info-icon {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.company-info-card h3 {
    font-size: 18px;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.company-info-card p {
    font-size: 16px;
    color: var(--primary-black);
    font-weight: 600;
    margin: 0;
}
.certificates-preview-section {
    padding: 80px 0;
    background-color: #ffffff;
    border: none;
}


.certificate-preview-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px;
    border: none;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
}


.certificate-preview-image .image-container {
    background: #f9f9f9;
    padding: 16px;
    border-radius: 12px;
    border: none;
    max-width: 320px;
    margin: 0 auto;
}


.certificate-preview-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    cursor: default;     /* prevents click feel */
    pointer-events: none; /* PDF cannot open */
}

/* Certificate Preview Styles */
.certificate-preview {
    width: 100%;
    height: 210px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    cursor: default;     /* prevents click feel */
    pointer-events: none; /* PDF cannot open */
}

.certificate-title {
    font-size: 16px;
    color: #555;
    margin-top: 15px;
    margin-bottom: 0;
    line-height: 1.5;
}


.certificate-preview-text h3 {
    font-size: 26px;
    color: #2b2b2b;
    margin-bottom: 12px;
    font-weight: 600;
}

.certificate-preview-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}


/* FAQ Preview Section */
.faq-preview-section {
    padding: 80px 0;
    background-color: var(--dark-cream-bg);
}

.faq-preview-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-preview-item {
    background: var(--rich-cream);
    margin-bottom: 20px;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--cream-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-preview-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.15);
}

.faq-preview-item h4 {
    font-size: 18px;
    color: var(--dark-olive);
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-preview-item p {
    font-size: 15px;
    color: var(--charcoal-text);
    line-height: 1.6;
    margin: 0;
}

/* Google Review CTA Section */
.google-review-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
}

.review-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.review-cta-content h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.review-cta-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #4285f4;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-review:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
    color: white;
    text-decoration: none;
}

.btn-review i {
    font-size: 1.2rem;
}

/* Contact CTA Section */
.contact-cta-section {
    background-color: #C9D8B6;
    padding: 80px 0;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 36px;
    color: #2F2F2F;
    margin-bottom: 20px;
}

.contact-cta-content p {
    font-size: 18px;
    color: #2F2F2F;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.cta-buttons .btn-primary {
    background-color: var(--primary-green);
    color: var(--primary-white);
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
}

.cta-buttons .btn-primary:hover {
    background-color: var(--dark-green);
    color: var(--primary-white);
}

.cta-buttons .whatsapp-button {
    background-color: #25D366;
    color: var(--primary-white);
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
}

.cta-buttons .whatsapp-button:hover {
    background-color: #128C7E;
    color: var(--primary-white);
}

/* Hero Section */
.hero {
    background: var(--dark-olive);
    color: var(--dark-cream-bg);
    padding: 100px 0 80px 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.hero p {
    font-size: 20px;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Hero Text Slider */
.hero-slider {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.slider-text {
    font-family: 'Nunito', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark-cream-bg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-text.active {
    opacity: 1;
}

/* Product Section */
.product-section {
    padding: 4rem 0;
    background-color: var(--rich-cream);
}

.product-card {
    background: var(--rich-cream);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--cream-border);
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-content {
    padding: 2rem;
}

.product-title {
    font-size: 2rem;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.product-subtitle {
    color: var(--dark-olive);
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-specifications,
.product-advantages {
    margin-top: 2rem;
}

.product-specifications h3,
.product-advantages h3 {
    color: var(--dark-olive);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.spec-list,
.advantage-list {
    list-style: none;
}

.spec-list li,
.advantage-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--secondary-color);
}

.spec-list li,
.advantage-list li {
    margin-bottom: 0.5rem;
    color: var(--charcoal-text);
    position: relative;
    padding-left: 1.5rem;
}

.spec-list li:before,
.advantage-list li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: var(--dark-cream-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--rich-cream);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--cream-border);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--dark-olive);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--dark-olive);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: var(--rich-cream);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--rich-cream);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--cream-border);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-family: 'Nunito', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    font-family: 'Nunito', sans-serif;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--cream-border);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--charcoal-text);
    background-color: var(--dark-cream-bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-olive);
    box-shadow: 0 0 0 2px rgba(107, 142, 35, 0.2);
}

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

.company-info {
    background: var(--primary-olive);
    color: var(--dark-cream-bg);
    padding: 2rem;
    border-radius: 10px;
}

.company-info h3 {
    margin-bottom: 1rem;
}

.company-info p {
    margin-bottom: 0.5rem;
}

.whatsapp-button {
    font-family: 'Nunito', sans-serif;
    background-color: #25D366;
    color: var(--dark-cream-bg);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: var(--rich-cream);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--rich-cream);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid var(--cream-border);
}

.faq-question {
    font-family: 'Nunito', sans-serif;
    background: var(--dark-olive);
    color: var(--dark-cream-bg);
    padding: 1rem 2rem;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--darker-olive);
}

.faq-answer {
    padding: 1rem 2rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Footer */
footer {
    background-color: #C9D8B6;
    color: #2F2F2F;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #AEBF98;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: #2F2F2F;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.social-links a:hover {
    color: #556B2F;
    opacity: 1;
}

.copyright p {
    margin: 0.5rem 0;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
}

.contact-details h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2F2F2F;
    margin-bottom: 1rem;
}

.contact-details p {
    font-family: 'Nunito', sans-serif;
    margin: 0.5rem 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.contact-details a {
    font-family: 'Nunito', sans-serif;
    color: #2F2F2F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #556B2F;
    text-decoration: underline;
}

.head-office {
    margin-top: 1rem;
}

.head-office h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #556B2F;
    margin-bottom: 0.5rem;
}

.head-office p {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    line-height: 1.4;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: #25D366 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.whatsapp-float i {
    font-size: 30px !important;
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* GLOBAL ICONS - COLORFUL + BIG (EXCEPT FOOTER & WHATSAPP) - REMOVED */
/* i:not(.fa-whatsapp),
.fa:not(.fa-whatsapp),
.bi:not(.fa-whatsapp) {
  font-size: 34px !important;
  margin: 0 10px !important;
  background: linear-gradient(
    45deg,
    #ff4d4d,
    #ffb84d,
    #4dff88,
    #4dd2ff,
    #b84dff
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
} */

/* Authentication Forms */
.auth-container {
    max-width: 400px;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--rich-cream);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--cream-border);
}

.auth-container h2 {
    text-align: center;
    color: var(--dark-olive);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-family: 'Nunito', sans-serif;
        font-size: 15px;
    }
    
    h1 { 
        font-family: 'Nunito', sans-serif;
        font-size: 32px; 
    }
    h2 { 
        font-family: 'Nunito', sans-serif;
        font-size: 26px; 
    }
    h3 { 
        font-family: 'Nunito', sans-serif;
        font-size: 22px; 
    }
    .hero-slider .slider-text { 
        font-family: 'Nunito', sans-serif;
        font-size: 22px; 
    }
    
    /* Mobile Navigation */
    header {
        height: auto;
        padding: 15px 0;
        margin-bottom: 20px;
    }
    
    nav.container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .logo {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
        background-color: #C9D8B6;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 8px 15px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    
    .nav-links a:hover {
        background-color: #AEBF98;
    }
    
    .cta-button, .logout-button {
        display: block;
        width: 100%;
        text-align: center;
        margin: 5px 0;
        box-sizing: border-box;
    }
    
    .hero {
        padding: 60px 0 60px 0;
        min-height: 350px;
    }
    
    .hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .slider-text {
        font-size: 32px;
        line-height: 1.4;
    }
    
    .hero-slider {
        height: 100px;
    }
    
    /* Products Hero Responsive */
    .products-hero {
        padding: 60px 0;
    }
    
    .products-hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .branding-line {
        font-size: 16px;
    }
    
    /* Premium Highlight Responsive */
    .premium-highlight {
        padding: 60px 30px;
    }
    
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .premium-text h2 {
        font-size: 28px;
        text-align: center;
        white-space: nowrap;
        line-height: 1.2;
    }
    
    .premium-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .product-image-container {
        max-width: 350px;
        padding: 20px;
    }
    
    /* Product Details Responsive */
    .product-details {
        padding: 60px 20px;
    }
    
    .product-details-card {
        padding: 30px 20px;
    }
    
    .product-name {
        font-size: 28px;
    }
    
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Customization Section Responsive */
    .customization-section {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .customization-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .customization-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        font-size: 40px;
    }
    
    /* CTA Section Responsive */
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    /* Certificates Page Responsive */
    .certificates-hero {
        padding: 60px 0;
    }
    
    .certificates-hero h1 {
        font-size: 32px;
    }
    
    .certificates-hero .hero-subtitle {
        font-size: 18px;
    }
    
    .certificates-intro {
        padding: 40px 20px;
    }
    
    .intro-text {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .certificate-display {
        padding: 60px 20px;
    }
    
    .certificate-card {
        padding: 30px 20px;
    }
    
    .certificate-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .certificate-details h2 {
        font-size: 24px;
        text-align: center;
    }
    
    .image-container {
        max-width: 300px;
        padding: 15px;
    }
    
    .trust-badges {
        padding: 40px 20px;
    }
    
    .trust-header h3 {
        font-size: 24px;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .badge-item {
        padding: 20px 15px;
    }
    
    .badge-icon {
        font-size: 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Preview Sections Responsive */
    .about-preview-section {
        padding: 60px 20px;
    }
    
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-preview-text h2 {
        font-size: 28px;
    }
    
    .services-preview-section {
        padding: 60px 20px;
    }
    
    .services-preview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .customization-preview-section {
        padding: 60px 20px;
    }
    
    .customization-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .certificates-preview-section {
        padding: 60px 20px;
    }
    
    .certificate-preview-card {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 30px 20px;
    }
    
    .certificate-preview-image .image-container {
        max-width: 250px;
    }
    
    .faq-preview-section {
        padding: 60px 20px;
    }
    
    .faq-preview-item {
        padding: 25px 20px;
    }
    
    .contact-cta-section {
        padding: 60px 20px;
    }
    
    .contact-cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .whatsapp-button {
        width: 100%;
        max-width: 300px;
    }
    
    /* Mobile Footer */
    footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-left,
    .footer-right {
        text-align: center;
        flex: 1;
    }
    
    .social-links {
        margin-bottom: 1.5rem;
    }
    
    .social-links a {
        font-size: 1.8rem;
        margin: 0 1rem;
    }
    
    .contact-details h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .contact-details p {
        font-size: 14px;
        margin-bottom: 0.5rem;
    }
    
    .head-office h4 {
        text-align: center;
        font-size: 1rem;
    }
    
    .head-office p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    /* Mobile WhatsApp Float */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 0.8rem;
        font-size: 1.3rem;
    }
    
    /* Mobile Container Padding */
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Buttons */
    .btn-primary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Mobile Forms */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Mobile Cards */
    .service-card,
    .product-card,
    .faq-item,
    .certificate-card {
        margin-bottom: 20px;
    }
    
    /* Mobile Spacing */
    section {
        padding: 40px 0;
    }
    
    /* Mobile Images */
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    body {
        font-family: 'Nunito', sans-serif;
        font-size: 14px;
    }
    
    h1 { 
        font-family: 'Nunito', sans-serif;
        font-size: 28px; 
    }
    h2 { 
        font-family: 'Nunito', sans-serif;
        font-size: 22px; 
    }
    h3 { 
        font-family: 'Nunito', sans-serif;
        font-size: 20px; 
    }
    .hero-slider .slider-text { 
        font-family: 'Nunito', sans-serif;
        font-size: 18px; 
    }
    
    /* Small Mobile Navigation */
    .logo {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .nav-links {
        padding: 10px;
        gap: 0.3rem;
    }
    
    .nav-links a {
        padding: 6px 10px;
        font-size: 14px;
    }
    
    /* Small Mobile Image Slider */
    .image-slider {
        height: 250px;
    }
    
    /* Small Mobile Hero */
    .hero {
        padding: 40px 0;
        min-height: 300px;
    }
    
    .hero h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 1rem;
    }
    
    /* Small Mobile Sections */
    section {
        padding: 30px 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Small Mobile Cards */
    .service-preview-card,
    .customization-preview-card,
    .certificate-preview-card {
        padding: 20px 15px;
    }
    
    .customization-preview-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Small Mobile Footer */
    footer {
        padding: 30px 0 15px 0;
    }
    
    .social-links a {
        font-size: 1.5rem;
        margin: 0 0.8rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 13px;
    }
    
    .head-office p {
        font-size: 11px;
    }
    
    /* Small Mobile WhatsApp */
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
        padding: 0.6rem;
        font-size: 1.2rem;
    }
    
    /* Small Mobile Buttons */
    .btn-primary,
    .cta-button,
    .logout-button {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    /* Small Mobile Forms */
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 16px;
    }
    
    /* Small Mobile Typography */
    .section-header h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    /* Small Mobile Spacing */
    .about-preview-section,
    .services-preview-section,
    .customization-preview-section,
    .certificates-preview-section,
    .faq-preview-section,
    .contact-cta-section {
        padding: 30px 0;
    }
    
    /* Small Mobile Google Review CTA */
.google-review-cta {
    padding: 60px 0;
}

.review-cta-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.review-cta-content p {
    font-size: 16px;
    margin-bottom: 25px;
}

.btn-review {
    padding: 12px 24px;
    font-size: 1rem;
}

/* Small Mobile CTA */
    .contact-cta-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .contact-cta-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
/* Modern Icon System with Circular Backgrounds */
.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.icon-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.icon-wrapper i {
    font-size: 24px;
    line-height: 1;
}

/* Icon Color Variations */
.icon-blue-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.icon-teal-gradient {
    background: linear-gradient(135deg, #0fb9b1 0%, #20bf6b 100%);
    color: white;
}

.icon-orange-gradient {
    background: linear-gradient(135deg, #fa8231 0%, #fd79a8 100%);
    color: white;
}

.icon-purple-gradient {
    background: linear-gradient(135deg, #a55eea 0%, #8854d0 100%);
    color: white;
}

.icon-pink-gradient {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    color: white;
}

.icon-cyan-gradient {
    background: linear-gradient(135deg, #00d2d3 0%, #3b82f6 100%);
    color: white;
}

.icon-red-gradient {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.icon-indigo-gradient {
    background: linear-gradient(135deg, #5f27cd 0%, #341f97 100%);
    color: white;
}

/* Service Icon Specific Styling */
.service-icon .icon-wrapper {
    width: 70px;
    height: 70px;
    padding: 15px;
}

.service-icon .icon-wrapper i {
    font-size: 28px;
}

/* Company Info Icon Specific Styling */
.info-icon .icon-wrapper {
    width: 50px;
    height: 50px;
    padding: 10px;
}

.info-icon .icon-wrapper i {
    font-size: 20px;
}

/* Global Modern Icon System */
.icon-modern {
    font-size: 34px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: inline-block;
}

.icon-modern:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.4));
}

/* Distinct Color Palettes for Different Icon Types */
.icon-service-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-service-green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-service-purple {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-service-orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-service-pink {
    background: linear-gradient(135deg, #ff6a88 0%, #ee5a24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-service-teal {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Apply modern icons to all Font Awesome icons except exclusions */
i:not(footer i):not(.icon-wrapper *) {
    font-size: 34px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: inline-block;
}

i:not(footer i):not(.icon-wrapper *):hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.4));
}

/* Rainbow Icons for All Pages (Except Footer) */
i:not(footer i) {
    font-size: 32px;
    background: linear-gradient(
        45deg,
        #ff0080,
        #ff8c00,
        #40e0d0,
        #8a2be2,
        #ff1493,
        #00ced1
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer Social Media Icons - HORIZONTAL LAYOUT */
.footer-social {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-social a i {
    font-size: 26px;
    color: #000;
}

.footer-social a {
    text-decoration: none;
    transition: transform 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

/* Override any existing footer ul/li styles */
.footer-social ul,
.footer-social li,
.footer-left ul,
.footer-left li {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
}

.footer-social ul li,
.footer-left ul li {
    display: inline-flex !important;
    margin: 0 10px 0 0 !important;
}

/* Footer Social Media Icons - HARD OVERRIDE */
.footer-social-icons {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 18px !important;
}

.footer-social-icons a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Remove any vertical layout causing styles */
.footer-social-icons * {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    flex-direction: row !important;
    display: inline-flex !important;
}

/* Footer Social Media Icons Alignment */
.social-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    margin-bottom: 20px;
    flex-wrap: nowrap !important;
}

.social-links a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0 !important;
}

.social-links a:hover {
    transform: translateY(-2px);
}

/* Icon Color System (Multicolor Aesthetic) */
.icon-blue { color: #3b82f6; }
.icon-green { color: #22c55e; }
.icon-orange { color: #f97316; }
.icon-purple { color: #8b5cf6; }
.icon-red { color: #ef4444; }

/* Shared Plant Slider Component */
.plant-slider {
    max-width: 450px;
    margin: auto;
}

.plant-slider img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: #f5f5f5;
}

/* Plant Carousel for Contact Page */
.plant-carousel {
    max-height: 320px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.plant-carousel img {
    height: 320px;
    width: 100%;
    object-fit: contain;
    border-radius: 14px;
    background-color: #f5f5f5;
}

.plant-carousel .carousel-control-prev,
.plant-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 10px;
}

.plant-carousel .carousel-control-prev-icon,
.plant-carousel .carousel-control-next-icon {
    width: 16px;
    height: 16px;
}

/* Plant Images Grid for Contact Page */
.plant-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 1.5rem;
}

.plant-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plant-image-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.plant-thumb {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.plant-image-item:hover .plant-thumb {
    transform: scale(1.05);
}

/* Responsive adjustments for plant images grid */
@media (max-width: 768px) {
    .plant-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .plant-thumb {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .plant-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .plant-thumb {
        height: 80px;
    }
}

/* Plant Image Slider Styles */
#plantCarousel {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#plantCarousel .carousel-item img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

#plantCarousel .carousel-control-prev,
#plantCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

#plantCarousel .carousel-control-prev-icon,
#plantCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

#plantCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #plantCarousel .carousel-item img {
        height: 250px;
    }
    
    #plantCarousel .carousel-control-prev,
    #plantCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    #plantCarousel .carousel-item img {
        height: 200px;
    }
    
    #plantCarousel .carousel-control-prev,
    #plantCarousel .carousel-control-next {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }
}

/* Ensure no horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
}
    
    .hero {
        padding: 50px 0 50px 0;
        min-height: 300px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .slider-text {
        font-size: 28px;
        line-height: 1.4;
    }
    
    .hero-slider {
        height: 120px;
    }
    
    /* Products Hero Mobile */
    .products-hero {
        padding: 40px 15px;
    }
    
    .products-hero h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .branding-line {
        font-size: 14px;
    }
    
    /* Premium Highlight Mobile */
    .premium-highlight {
        padding: 40px 20px;
    }
    
    .premium-text h2 {
        font-size: 24px;
        white-space: nowrap;
        line-height: 1.2;
    }
    
    .product-image-container {
        max-width: 300px;
        padding: 15px;
    }
    
    /* Product Details Mobile */
    .product-details {
        padding: 40px 15px;
    }
    
    .product-details-card {
        padding: 25px 15px;
    }
    
    .product-name {
        font-size: 24px;
    }
    
    /* Customization Mobile */
    .customization-section {
        padding: 40px 15px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .customization-card {
        padding: 20px 15px;
    }
    
    .card-icon {
        font-size: 36px;
    }
    
    .customization-card h4 {
        font-size: 18px;
    }
    
    .customization-card p {
        font-size: 14px;
    }
    
    /* CTA Mobile */
    .cta-section {
        padding: 40px 15px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .cta-section .lead {
        font-size: 16px;
    }
    
    /* Certificates Mobile Responsive */
    .certificates-hero {
        padding: 40px 15px;
    }
    
    .certificates-hero h1 {
        font-size: 28px;
    }
    
    .certificates-hero .hero-subtitle {
        font-size: 16px;
    }
    
    .certificates-intro {
        padding: 30px 15px;
    }
    
    .intro-text {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .certificate-display {
        padding: 40px 15px;
    }
    
    .certificate-card {
        padding: 25px 15px;
    }
    
    .certificate-details h2 {
        font-size: 20px;
    }
    
    .image-container {
        max-width: 250px;
        padding: 12px;
    }
    
    .trust-badges {
        padding: 30px 15px;
    }
    
    .trust-header h3 {
        font-size: 20px;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .badge-item {
        padding: 15px 12px;
    }
    
    .badge-icon {
        font-size: 28px;
    }
    
    .badge-item h4 {
        font-size: 14px;
    }


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

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

/* Alert Messages */
.alert {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Page Layout */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Contact Cards */
.contact-card, .address-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(107, 142, 35, 0.1);
    border: 1px solid var(--olive-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover, .address-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107, 142, 35, 0.15);
}

.card-title {
    color: var(--dark-olive);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal-text);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--dark-olive);
    width: 20px;
    text-align: center;
}

.phone-link {
    color: var(--dark-olive);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--darker-olive);
    text-decoration: underline;
}

/* WhatsApp Button */
.whatsapp-section {
    margin: 1rem 0;
}

.whatsapp-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
}

.whatsapp-button-large:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.whatsapp-button-large i {
    font-size: 1.3rem;
}

/* Address Details */
.address-details p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Map Container */
.map-container {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-panel {
        gap: 1rem;
    }
    
    .contact-card, .address-card {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .whatsapp-button-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .map-container iframe {
        height: 200px;
    }
}

/* Our Locations Section */
.locations-section {
    background-color: var(--light-olive-bg) !important;
}

.section-title {
    color: var(--dark-olive);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--charcoal-text);
    font-size: 1.2rem;
    margin-bottom: 0;
    text-align: center;
}

.locations-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(107, 142, 35, 0.1);
    border: 1px solid var(--olive-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(107, 142, 35, 0.15);
}

.location-title {
    color: var(--dark-olive);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-title::before {
    content: "📍";
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.location-address {
    text-align: center;
    color: var(--charcoal-text);
    font-size: 1rem;
    line-height: 1.6;
}

.location-address i {
    color: var(--dark-olive);
    margin-right: 0.5rem;
}

/* Responsive Design for Locations */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .locations-container {
        gap: 2rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .location-title {
        font-size: 1.3rem;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    .location-address {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .location-card {
        padding: 1rem;
    }
    
    .map-wrapper iframe {
        height: 200px;
    }
}

/* Force CTA buttons to appear in single horizontal line */
.contact-cta-section .cta-buttons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    width: 100%;
}

.contact-cta-section .cta-buttons a {
    display: inline-flex !important;
    white-space: nowrap;
}

/* Final forceful fix for CTA buttons */
.contact-cta-section .contact-cta-content .cta-buttons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    width: 100% !important;
}

.contact-cta-section .contact-cta-content .cta-buttons a {
    display: inline-flex !important;
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    white-space: nowrap !important;
}

/* WE PROMOTE Section Styles */
.we-promote-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.we-promote-title {
    color: var(--primary-black);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.we-promote-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.we-promote-track {
    display: flex;
    animation: slideLogos 20s linear infinite;
    width: fit-content;
}

.we-promote-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 120px;
}

.we-promote-item img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: none;
    transition: transform 0.3s ease;
}

.we-promote-item img:hover {
    transform: scale(1.05);
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate the track for infinite loop */
.we-promote-track::after {
    content: "";
    display: flex;
}

/* Hide the dots since we're using infinite slider */
.logo-slider-dots {
    display: none;
}

/* Footer Social Media Icons - HORIZONTAL LAYOUT */
footer .footer-social {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 32px !important;
}

footer .footer-social a {
    display: inline-flex !important;
}

footer .footer-social i {
    font-size: 30px !important;
    color: #000 !important;
}

/* GLOBAL ICONS – COLORFUL & BIG - REMOVED */
/* i, .fa, .bi {
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: inherit !important;
} */

/* FOOTER ICONS – BLACK ONLY - REMOVED */
/* footer i,
footer .fa,
footer .bi {
  font-size: 24px !important;
  color: #000000 !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
} */

/* .footer-social i {
    font-size:26px !important;
    color: black !important;
    background: none !important;
    -webkit-text-fill-color: black !important;
} */

.plant-img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    background: #f6f6f6;
    border-radius: 12px;
}

.blur-slide {
    position: relative;
    width: 100%;
    height: 440px;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.2);
}

.blur-slide .plant-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: none;
    height: 440px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 14px;
    z-index: 2;
}

.carousel-item {
    overflow: hidden;
}

.blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    opacity: 0.8;
}

.plant-img-center {
    position: relative;
    display: block;
    margin: 0 auto;
    height: 400px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    z-index: 2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }

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

@media (max-width: 992px) {
  body {
    overflow-x: hidden !important;
  }

  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .container,
  .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .col,
  [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* =====================================================
   GLOBAL ICONS – COLORFUL & BIG (EXCEPT FOOTER & WHATSAPP)
   ===================================================== */

body i:not(.fa-whatsapp):not(footer i),
body .fa:not(.fa-whatsapp):not(footer .fa),
body .bi:not(.fa-whatsapp):not(footer .bi) {

  font-size: 34px !important;
  margin: 0 10px !important;

  background-image: linear-gradient(
    45deg,
    #ff4d4d,
    #ffb84d,
    #4dff88,
    #4dd2ff,
    #b84dff
  ) !important;

  background-clip: text !important;
  -webkit-background-clip: text !important;

  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}


/* =====================================================
   FOOTER ICONS – BLACK ONLY
   ===================================================== */

footer i,
footer .fa,
footer .bi {
  font-size: 24px !important;
  color: #000000 !important;
  background: none !important;
  -webkit-text-fill-color: #000000 !important;
}


/* =====================================================
   WHATSAPP FLOATING BUTTON – PURE GREEN ONLY
   ===================================================== */

.whatsapp-float {
  background-color: #25D366 !important;
}

.whatsapp-float i {
  font-size: 30px !important;
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

.blog-preview-card h3 {
    font-weight: 700;
}

.blog-preview-card p {
    color: #555;
    line-height: 1.6;
}

/* Product Details Grid Layout */
.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.product-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-slider-container {
    position: relative;
    max-width: 380px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-slider {
    position: relative;
    width: 100%;
    height: auto;
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: block;
}

.product-slide.active {
    opacity: 1;
    position: relative;
}

.product-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger-menu:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
}

.mobile-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #333;
}

.mobile-nav-content {
    padding: 20px 0;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-links li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.mobile-nav-links a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.mobile-nav-overlay.active {
    display: block;
}

/* Global responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Large Tablets - 1200px and below */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    /* Premium Grid */
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .premium-text {
        text-align: center;
    }
    
    /* Product Details Grid */
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-slider-container {
        max-width: 100%;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Tablets - 992px and below */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    /* Navigation */
    .nav-center {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 2.5rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Customization Grid */
    .customization-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Product Details */
    .specifications-column {
        text-align: center;
    }
    
    /* Blog Preview */
    .blog-preview-card {
        margin-bottom: 2rem;
    }
}

/* Small Tablets - 768px and below */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 20px;
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Navigation */
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    /* Premium Section */
    .premium-text h2 {
        font-size: 1.8rem;
    }
    
    /* Product Details */
    .product-details-card {
        padding: 1.5rem;
    }
    
    .spec-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* About & Contact Pages */
    .blur-slide {
        height: 250px;
    }
    
    /* Contact Info */
    .contact-info-panel {
        padding: 1.5rem;
    }
    
    .address-card {
        margin-bottom: 1.5rem;
    }
    
    /* Footer */
    .footer-left,
    .footer-right {
        text-align: center;
    }
    
    .social-links a {
        margin: 0 0.5rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-outline-primary {
        width: 100%;
        padding: 1rem;
        margin: 0.5rem 0;
    }
    
    /* Forms */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-control {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Mobile Menu Adjustments */
    .mobile-nav-menu {
        width: 280px;
    }
}

/* Mobile Phones - 576px and below */
@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Hero Section */
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    /* Navigation */
    .nav-links {
        padding: 0.5rem;
    }
    
    .nav-links li a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    /* Premium Section */
    .premium-text h2 {
        font-size: 1.5rem;
    }
    
    .premium-text p {
        font-size: 0.9rem;
    }
    
    /* Product Details */
    .product-details-card {
        padding: 1rem;
    }
    
    .specifications-column h3 {
        font-size: 1.3rem;
    }
    
    .spec-list li {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    /* Product Slider */
    .product-slider-container {
        border-radius: 8px;
    }
    
    .product-slide img {
        border-radius: 8px;
    }
    
    /* About & Contact Pages */
    .blur-slide {
        height: 200px;
    }
    
    .plant-img {
        height: 200px;
    }
    
    /* Contact Info */
    .contact-info-panel {
        padding: 1rem;
    }
    
    .address-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .address-card h4 {
        font-size: 1.1rem;
    }
    
    .address-card p {
        font-size: 0.85rem;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    /* Blog Section */
    .blog-preview-card {
        padding: 1.5rem;
    }
    
    .blog-preview-card h3 {
        font-size: 1.1rem;
    }
    
    .blog-preview-card p {
        font-size: 0.85rem;
    }
    
    /* Footer */
    footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-left,
    .footer-right {
        margin-bottom: 1.5rem;
    }
    
    .social-links a {
        margin: 0 0.3rem;
    }
    
    .social-links .icon-wrapper {
        width: 32px;
        height: 32px;
        padding: 6px;
    }
    
    .social-links i {
        font-size: 14px;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-outline-primary {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Forms */
    .form-control {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    textarea.form-control {
        min-height: 100px;
    }
    
    /* WhatsApp Float Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
    
    /* Mobile Menu Adjustments */
    .mobile-nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .mobile-nav-header {
        padding: 15px;
    }
    
    .mobile-logo {
        font-size: 1.1rem;
    }
    
    .mobile-nav-links a {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile - 400px and below */
@media (max-width: 400px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .nav-links li a {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .specifications-column h3 {
        font-size: 1.2rem;
    }
    
    .spec-list li {
        font-size: 0.8rem;
    }
    
    .btn-primary,
    .btn-outline-primary {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
}

/* === CERTIFICATE FINAL LOCKED STYLE === */

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

.certificate-item {
    text-align: center;
}

.certificate-blur-img {
    width: 280px;
    max-width: 100%;
    height: auto;
    filter: blur(1.5px);
    border-radius: 8px;
}

/* Mobile fine-tuning */
@media (max-width: 768px) {
    .certificate-row {
        gap: 20px;
    }

    .certificate-blur-img {
        width: 220px;
        filter: blur(2px);
    }
}

/* Extra safety: block zoom tricks */
.certificate-row,
.certificate-item,
.certificate-blur-img {
    overflow: hidden;
}

/* Fix Footer Contact Spacing */
.footer-right p {
    margin: 4px 0 !important;
    line-height: 1.4;
}

.footer-right p strong {
    display: inline;
}

.footer-right a {
    display: inline;
}

/* Remove Extra Footer Number Spacing */
.footer-phone-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}

.footer-phone-group p {
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

/* Remove tick marks from Product Specifications only */
.spec-list {
    list-style: none;
    padding-left: 0;
}

.spec-list li {
    margin-bottom: 10px;
}

.spec-list li::before {
    content: none !important;
    display: none !important;
}

/* Certificates Layout */
.certificate-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;              /* spacing between 3 certificates */
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-top: 10px;
}

.certificate-item {
    text-align: center;
}

.certificate-item img {
    width: 220px;           /* reduced size */
    height: auto;
    filter: blur(1.5px);    /* light blur */
    transition: filter 0.3s ease;
    border-radius: 6px;
}

/* Prevent hover clear */
.certificate-item img:hover {
    filter: blur(1.5px);
}

.certificate-item p {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
}
