/* -------------------------------------------------------------
 * Fajr Crescent Premium Distribution Theme - Matching Design Image
 * Primary Green: #105128 | Secondary Orange: #f37021
 * ------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --primary-color: #105128;
    --primary-hover: #0b3d1d;
    --primary-light: rgba(16, 81, 40, 0.05);

    --secondary-color: #f37021;
    --secondary-hover: #d95d14;
    --secondary-light: rgba(243, 112, 33, 0.08);

    --bg-light: #fafbfa;
    --bg-gray: #f0f3f0;
    --bg-white: #ffffff;
    --text-dark: #1f2937;
    --text-muted: #4b5563;
    --border-color: rgba(16, 81, 40, 0.08);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
    /* Used for the script-like text in hero header */

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 40px rgba(16, 81, 40, 0.08);
    --shadow-float: 0 20px 35px rgba(0, 0, 0, 0.08);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}

section {
    padding: 4rem 0;
}

/* Custom Titles from Design Image */
.section-subtitle {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

/* Buttons Styling */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
    border: 1px solid var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    padding: 0.7rem 1.6rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(16, 81, 40, 0.15);
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    color: var(--bg-white) !important;
    border: 1px solid var(--secondary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    padding: 0.7rem 1.6rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(243, 112, 33, 0.2);
}

/* Header & Navbar */
.navbar-custom {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
}

.navbar-brand img {
    height: 52px;
}

.nav-link-custom {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151 !important;
    padding: 0.5rem 1.1rem !important;
    transition: var(--transition);
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--primary-color) !important;
}

/* Hero Section - Background Banner Slider */
.hero-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 75vh;
    /* Increased from 60vh */
    min-height: 520px;
    background-color: #0b1f11;
}

@media (max-width: 991px) {
    .hero-section {
        height: 65vh;
        /* Proper height for mobile/tablet */
        min-height: 440px;
    }
}

.hero-swiper {
    height: 100%;
    width: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Ken Burns Zoom In Effect */
.swiper-slide-active .hero-slide-bg {
    transform: scale(1.08);
}

.hero-slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(11, 31, 17, 0.94) 0%, rgba(11, 31, 17, 0.5) 100%);
    z-index: 2;
}

.hero-slide-content-overlay {
    position: relative;
    z-index: 3;
    color: var(--bg-white);
    max-width: 650px;
    padding-bottom: 2rem;
    /* Add padding to prevent any potential overlap */
}

.hero-slide-content-overlay h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--bg-white);
}

.hero-slide-content-overlay h1 span {
    font-family: var(--font-accent);
    color: var(--secondary-color);
    font-weight: 700;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-slide-content-overlay h1 {
        font-size: 2.2rem;
    }
}

.hero-slide-content-overlay p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .hero-slide-content-overlay p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

/* Staggered Smooth Text Animations when slide becomes active */
.hero-slide-content-overlay h1,
.hero-slide-content-overlay p,
.hero-slide-content-overlay .d-flex,
.hero-slide-content-overlay .section-subtitle {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .hero-slide-content-overlay .section-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.swiper-slide-active .hero-slide-content-overlay h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.swiper-slide-active .hero-slide-content-overlay p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.swiper-slide-active .hero-slide-content-overlay .d-flex {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Stats Floating Bar */
.stats-floating-bar {
    position: relative;
    z-index: 10;
    margin-top: -3.5rem;
    /* pull up over hero boundary on desktop */
}

@media (max-width: 991px) {
    .stats-floating-bar {
        margin-top: 1.5rem;
        /* Remove the overlap on mobile/tablet to avoid covering hero buttons */
    }
}

.stats-container {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(16, 81, 40, 0.05);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-icon.orange-icon {
    background-color: var(--secondary-light);
    color: var(--secondary-color);
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.15rem;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* About Us Section Sidebar Info */
.about-sidebar-card {
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.about-sidebar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.about-sidebar-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-sidebar-item:first-child {
    padding-top: 0;
}

.about-sidebar-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--secondary-light);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-sidebar-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.1rem;
}

.about-sidebar-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Brands Slider Navigation */
.slider-arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow-btn:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

.brand-logo-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 1.5rem;
    text-align: center;
}
.brand-logo-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}
.brand-logo-img {
    max-height: 120px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.95;
    transition: var(--transition);
}
.brand-logo-card:hover .brand-logo-img {
    opacity: 1;
    transform: scale(1.05);
}
.brand-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--text-dark);
}
.brand-logo-text.behrouz-logo {
    color: #0f172a;
    border: 2px solid #0f172a;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}
.brand-logo-text.fresh-logo {
    font-family: var(--font-accent);
    color: #10b981;
    font-size: 1.7rem;
    font-style: italic;
}
.brand-logo-text.teer-logo {
    color: #ef4444;
    letter-spacing: 2px;
    border-bottom: 2px solid #ef4444;
}

/* Popular Products Card */
.popular-product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.popular-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.pop-img-holder {
    height: 190px;
    /* Proper, premium image height */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.pop-img-holder img {
    max-height: 170px;
    max-width: 90%;
    object-fit: contain;
    transition: var(--transition);
}

.popular-product-card:hover .pop-img-holder img {
    transform: scale(1.04);
}

.pop-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pop-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.pop-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-explore-premium {
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
    border: 1px solid var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 6px;
    padding: 0.55rem 1.4rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(16, 81, 40, 0.18);
    /* Button Shadow */
}

.btn-explore-premium:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(243, 112, 33, 0.35);
    /* Glowing hover shadow */
}

/* Filter Sections - Double Tab Layer */
.shop-brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.filter-row-1,
.filter-row-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn-brand-tab {
    background-color: #e5e7eb;
    color: #4b5563;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    padding: 0.4rem 1.1rem;
    transition: var(--transition);
}

.btn-brand-tab.active,
.btn-brand-tab:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-category-tab {
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.4rem 1rem;
    transition: var(--transition);
}

.btn-category-tab.active,
.btn-category-tab:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.filter-grid-item.hidden {
    display: none !important;
}

/* Why Choose Us Center Image compose */
.why-compose-center {
    position: relative;
    text-align: center;
}

.why-compose-center img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--bg-white);
    box-shadow: var(--shadow-lg);
}

/* Testimonial Cards Layout */
.testimonial-card-premium {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.testimonial-quote {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.05rem;
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* CTA Banner (Green backdrop) */
.cta-banner-green {
    background: linear-gradient(135deg, #105128 0%, #093318 100%);
    border-radius: 16px;
    padding: 3rem;
    color: var(--bg-white);
}

.cta-banner-green h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.cta-banner-green p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 0;
    max-width: 580px;
}

/* Blog Cards */
.blog-card-custom {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card-custom:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.blog-img-holder {
    height: 210px;
    /* Premium height for blog image */
    overflow: hidden;
    position: relative;
}

.blog-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card-custom:hover .blog-img-holder img {
    transform: scale(1.05);
}

.blog-details-custom {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-title-text {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-desc-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Map Form Layout */
.contact-map-form-row {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-sidebar-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-sidebar-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-sidebar-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

/* Footer Fajr style */
.footer-fajr {
    background-color: #0b1f11;
    color: #94a3b8;
    padding: 4rem 0 2rem 0;
    font-size: 0.85rem;
}

.footer-fajr-title {
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-fajr-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-fajr-links li {
    margin-bottom: 0.5rem;
}

.footer-fajr-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-fajr-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 2rem 0 1.5rem 0;
}

/* Swiper Hero Custom Controls */
.hero-next,
.hero-prev {
    width: 44px;
    height: 44px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    color: var(--primary-color) !important;
    transition: var(--transition);
}

.hero-next::after,
.hero-prev::after {
    font-size: 1rem !important;
    font-weight: 800;
}

.hero-next:hover,
.hero-prev:hover {
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.hero-pagination .swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.2;
    width: 10px;
    height: 10px;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary-color) !important;
    opacity: 1;
    width: 24px;
    border-radius: 5px;
}

/* Why Choose Us Section Premium Styling */
.why-choose-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.why-choose-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.2rem;
    transition: var(--transition);
}

.why-choose-feature.text-md-end {
    justify-content: flex-end;
}

.feature-icon-round {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.why-choose-feature:hover .feature-icon-round {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 8px 18px rgba(16, 81, 40, 0.15);
}

.feature-content {
    flex-grow: 1;
}

.why-choose-feature h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.why-choose-feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Organic Morphing Center Image */
.why-compose-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-compose-center img {
    width: 310px;
    height: 310px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    object-fit: cover;
    border: 8px solid var(--bg-white);
    box-shadow: var(--shadow-lg);
    animation: morphCenterImage 12s ease-in-out infinite alternate;
}

@keyframes morphCenterImage {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 65% 35% 35% 65% / 65% 65% 35% 35%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@media (max-width: 991px) {
    .why-choose-feature {
        margin-bottom: 1.8rem;
    }

    .why-choose-feature.text-md-end {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row !important;
        /* Force left alignment on small screens */
    }

    .why-choose-feature.text-md-end .feature-content {
        order: 2 !important;
        padding-left: 1rem !important;
        padding-right: 0 !important;
    }

}

/* -------------------------------------------------------------
 * Premium About Us Page Specific Styles
 * ------------------------------------------------------------- */
.about-header-banner {
    background: linear-gradient(135deg, #105128 0%, #082d16 100%);
    padding: 6rem 0;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}
.about-header-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1600&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 1;
}
.about-header-content {
    position: relative;
    z-index: 2;
}
.about-header-banner h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}
.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}
.about-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}
.about-breadcrumb a:hover {
    color: var(--secondary-color);
}
.about-breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}
.about-breadcrumb .current {
    color: var(--secondary-color);
}

/* About Layout Details */
.about-img-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-box img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-img-box:hover img {
    transform: scale(1.05);
}
.about-img-floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.about-img-floating-badge i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}
.about-img-floating-badge .badge-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.1rem;
}
.about-img-floating-badge .badge-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
}

/* Sidebar Custom Info List */
.about-info-grid {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.about-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.about-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.about-info-row:first-child {
    padding-top: 0;
}
.about-info-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.about-info-row:hover .about-info-icon-box {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}
.about-info-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.15rem;
}
.about-info-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Mission & Vision Styling */
.mv-section {
    background-color: var(--bg-gray);
    padding: 5rem 0;
}
.mv-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.mv-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 6px; height: 100%;
    background-color: var(--primary-color);
}
.mv-card.vision-card::after {
    background-color: var(--secondary-color);
}
.mv-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.mv-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.75rem;
    transition: var(--transition);
}
.mv-card.vision-card .mv-icon-wrapper {
    background-color: var(--secondary-light);
    color: var(--secondary-color);
}
.mv-card:hover .mv-icon-wrapper {
    transform: scale(1.08) rotate(5deg);
}
.mv-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.mv-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}
.mv-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* What We Do Cards */
.solutions-section {
    padding: 5rem 0;
}
.solution-card-premium {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.solution-card-premium:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.solution-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: var(--secondary-light);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    flex-shrink: 0;
}
.solution-card-premium:hover .solution-icon-box {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: scale(1.05) rotate(4deg);
}
.solution-card-premium h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}
.solution-card-premium p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Values Grid Cards */
.values-section {
    background-color: var(--bg-gray);
    padding: 5rem 0;
}
.values-card-premium {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}
.values-card-premium:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.values-icon-badge {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.4rem;
    transition: var(--transition);
}
.values-card-premium:hover .values-icon-badge {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.1) rotate(8deg);
}
.values-card-premium h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}
.values-card-premium p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Premium Full-bleed Commitment Panel */
.commitment-section-banner {
    background: linear-gradient(135deg, #105128 0%, #082d16 100%);
    padding: 5rem 0;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}
.commitment-section-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=1600&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 1;
}
.commitment-banner-wrapper {
    position: relative;
    z-index: 2;
}
.commitment-section-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 1rem;
}
.commitment-section-banner p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.92;
    max-width: 820px;
    margin-bottom: 2rem;
}
.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--bg-white) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 6px;
    padding: 0.7rem 1.6rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-white:hover {
    background-color: var(--bg-white);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .about-header-banner {
        padding: 4rem 0;
        text-align: center;
    }
    .about-breadcrumb {
        justify-content: center;
    }
    .about-header-banner h1 {
        font-size: 2.4rem;
    }
    .mv-card {
        padding: 2rem;
    }
    }
    .commitment-section-banner {
        text-align: center;
    }
    .commitment-section-banner p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }
}

/* -------------------------------------------------------------
 * Premium Homepage Design Upgrades & Alternating Gradients
 * ------------------------------------------------------------- */
.stats-floating-bar {
    margin-bottom: 2rem;
}
.stats-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 81, 40, 0.06);
    box-shadow: 0 20px 40px rgba(16, 81, 40, 0.05);
}

/* Brand Slider Section */
.brand-slider-section {
    background: radial-gradient(circle at 50% 50%, rgba(16, 81, 40, 0.03) 0%, rgba(250, 251, 250, 0.8) 100%);
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(16, 81, 40, 0.04);
}
.brand-slide-card {
    border: 1px solid rgba(16, 81, 40, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* Trending Products Section */
.trending-section {
    background-color: #f3f6f3;
    position: relative;
    padding: 5.5rem 0;
}
.trending-section::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(16, 81, 40, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}
.popular-product-card {
    background: var(--bg-white);
    border: 1px solid rgba(16, 81, 40, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border-radius: 16px;
    padding: 1.5rem;
}
.popular-product-card:hover {
    box-shadow: 0 20px 40px rgba(16, 81, 40, 0.08);
}
.pop-img-holder {
    background-color: #f7faf8;
}

/* Shop by Brand Section */
.filter-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #f1f4f1 100%);
    padding: 5.5rem 0;
}
.btn-brand-tab {
    background-color: var(--bg-white);
    color: var(--text-muted);
    border: 1px solid rgba(16, 81, 40, 0.08);
    font-family: var(--font-heading);
    padding: 0.55rem 1.4rem;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.btn-brand-tab.active,
.btn-brand-tab:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: 0 8px 18px rgba(16, 81, 40, 0.15);
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 5.5rem 0;
}
.why-choose-feature {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(16, 81, 40, 0.04);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.01);
}
.why-choose-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 81, 40, 0.06);
    border-color: rgba(16, 81, 40, 0.08);
}

/* Dark Luxury Client Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #0d3319 0%, #051a0c 100%);
    color: var(--bg-white) !important;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
}
.testimonials-section .section-title {
    color: var(--bg-white) !important;
}
.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 2.2rem;
    transition: var(--transition);
}
.testimonial-card-premium:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}
.testimonial-quote {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    font-style: italic;
}
.testimonial-name {
    color: var(--bg-white) !important;
    font-weight: 700;
}
.testimonial-role {
    color: rgba(255, 255, 255, 0.5);
}
.testimonial-rating {
    color: #ffb03a;
}
.testimonials-section .slider-arrow-btn {
    background-color: var(--secondary-color);
}
.testimonials-section .slider-arrow-btn:hover {
    background-color: var(--secondary-hover);
}

/* Blog Section */
.blog-section {
    background-color: var(--bg-light);
    padding: 5.5rem 0;
}
.blog-card-custom {
    border-radius: 16px;
    border: 1px solid rgba(16, 81, 40, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.blog-card-custom:hover {
    box-shadow: 0 20px 40px rgba(16, 81, 40, 0.06);
}
.blog-details-custom {
    padding: 1.8rem;
}

/* Contact Us Section Form Glow */
.contact-section {
    background-color: var(--bg-white);
    padding: 6rem 0;
}
.contact-map-form-row {
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(16, 81, 40, 0.06);
}
.contact-section .form-control {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}
.contact-section .form-control:focus {
    box-shadow: 0 0 0 3px var(--primary-light);
    border-color: var(--primary-color);
    background-color: var(--bg-white);
}

/* Floating WhatsApp Button Style */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 34px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: floatAnimation 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    margin-top: 0;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}