:root {
    --light-green: #ACBF60;
    --dark-green: #0b2b22;
    --bg-light: #f5f9ed4d;
    --card-bg: #ffffff;
    --text-muted: #64748b;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
}
.banner-section {
    position: relative;
 padding-top: 150px;
    padding-bottom: 50px;
    overflow: hidden;
    background-color: #0a3a3a; 
    direction: rtl;
}

.banner-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.4) 0%,   
        rgba(0, 0, 0, 0.7) 100%  
    );
    
    z-index: 1; 
}



.banner-bg-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}
.banner-bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 43, 34, 0.95) 0%, rgba(20, 60, 45, 0.75) 100%);
    mix-blend-mode: multiply;
}.banner-bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
   background: radial-gradient(50% 50% at 100% 0%, rgba(172, 191, 96, 0.3), transparent 70%), radial-gradient(50% 50% at 0% 100%, rgba(251, 201, 72, 0.2), transparent 70%), linear-gradient(180deg, rgb(10 58 58 / 46%), rgb(7 36 36 / 67%));
    /* background: 
        radial-gradient(50% 50% at 100% 0%, rgba(172, 191, 96, 0.3), transparent 70%), 
        radial-gradient(50% 50% at 0% 100%, rgba(251, 201, 72, 0.2), transparent 70%), 
        linear-gradient(180deg, rgba(10, 58, 58, 0.85), rgba(7, 36, 36, 0.9)); */
}

.banner-section .container {
    position: relative;
    z-index: 5; 
}
.banner-content {
    position: relative;
    z-index: 2;
    
}

/* --- Top Pill Tag --- */
.sub-title-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    backdrop-filter: blur(5px);
}

/* --- Typography (Crisp & High Contrast) --- */
.banner-content .title {
    color: #ffffff !important; /* Force true white */
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Adds a crisp edge separation */
    
    opacity: 0;
    animation: fadeInUpFade 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.4s;
}

.banner-content .highlight-text {
    color:#ACBF60;

    position: relative;
    display: inline-block;
}

.banner-content .description {
    font-size: 19px;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 750px;
    margin: 0 auto 40px auto;
    font-weight: 400;
}

/* --- Action Buttons Layout --- */
.banner-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}
.btn-primary-white {
    background-color: #ffffff;
    color: #0b2b22 !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary-white i {
    transition: transform 0.3s ease;
}

.btn-primary-white:hover {
    background-color: #b4cc34;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(180, 204, 52, 0.3);
}

.btn-primary-white:hover i {
    transform: translateX(-5px);
}

.header-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /* background: linear-gradient(to bottom, rgba(11, 43, 34, 0.9) 0%, rgba(11, 43, 34, 0) 100%); */
    padding: 15px 0;
}

.header-menu-content .navbar-nav .nav-link,
.header-menu-content .navbar-nav li a {
    color: #e2e8f0 !important;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.header-menu-content .navbar-nav li a:hover {
    color: #b4cc34 !important;
}

.btn--base {
    background-color: rgba(180, 204, 52, 0.2);
    border: 1px solid #ACBF60;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn--base:hover {
    background-color: #b4cc34;
    color: #0b2b22 !important;
    box-shadow: 0 4px 15px rgba(180, 204, 52, 0.4);
}

.banner-section {
    position: relative;
    padding: 220px 0 140px 0;
    background-color: #0b2b22; 
    overflow: hidden;
    color: #ffffff;
}

.banner-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-bg-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.banner-bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 43, 34, 0.95) 0%, rgba(20, 60, 45, 0.75) 100%);
    mix-blend-mode: multiply;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.sub-title-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    backdrop-filter: blur(5px);
}

.banner-content .title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 24px;
}

.banner-content .highlight-text {
    color: #ACBF60; 
    position: relative;
    display: inline-block;
}

.banner-content .description {
    font-size: 19px;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 750px;
    margin: 0 auto 40px auto;
    font-weight: 400;
}

.banner-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.btn-primary-white {
    background-color: #ffffff;
    color: #0b2b22 !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary-white:hover {
    background-color: #ACBF60;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(180, 204, 52, 0.3);
}

.btn-secondary-outline {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff !important;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-secondary-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}
.banner-content .title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 24px;
}

@keyframes fadeInUpFade {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .banner-content .title {
        font-size: 38px;
    }
    .banner-content .description {
        font-size: 16px;
    }
    .banner-section {
        padding: 160px 0 100px 0;
    }
    .banner-btn-group {
        flex-direction: column;
        gap: 12px;
    }
    .btn-primary-white, .btn-secondary-outline {
        width: 100%;
        max-width: 280px;
    }
}

.btn--base-green {
    display: inline-flex;
    align-items: center;
    background-color: #0b2b22 !important; 
    color: #ffffff !important;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(11, 43, 34, 0.15);
}

.btn--base-green i {
    transition: transform 0.3s ease;
}

.btn--base-green:hover {
    background-color: #ACBF60 !important;
    color: #0b2b22 !important; 
    box-shadow: 0 6px 20px rgba(172, 191, 96, 0.3);
    border-color:#ACBF60 ;
}

.btn--base-green:hover i {
    transform: translateX(-5px); 
}

@media (max-width: 991px) {
    .about-content .title {
        font-size: 30px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }
    .stat-box-item:nth-child(2)::after {
        display: none; 
    }
}

@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px 0;
    }
    .stat-box-item::after {
        display: none; 
    }
    .about-video-wrapper {
        bottom: 20px;
        right: 20px;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-left {
    animation: fadeInLeft 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        text-align: center;
        margin-top: 30px;
    }
    .about-content .description {
        text-align: center;
    }
    .btn--base-green {
        margin: 0 auto;
    }
}
.about-label-wrapper{
    background: #f5f9ed4d;
    padding-top: 40px;
    padding-bottom: 10px;
}

.about-label-box{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.about-label-text{
    font-size: 23px;
    font-weight: 700;
    color: #0b2b22;
    position: relative;
}

.about-label-line{
    width: 90px;
    height: 4px;
    border-radius: 50px;
    background:   #0b2b22
}
.team-section {
    background-color: #f5f9ed4d;
    padding: 120px 0;
    overflow: hidden;
}

.feature-item-pro:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(172, 191, 96, 0.15) !important;
        border-color: #ACBF60 !important;
    }
    .feature-item-pro:hover .feature-icon {
        transform: scale(1.1);
    }

    @media (min-width: 992px) {
        .col-five {
            flex: 0 0 20%;
            max-width: 20%;
        }
    }

    @media (max-width: 768px) {
        .vision-banner {
            flex-direction: column-reverse !important; 
        }
        .vision-content-wrapper {
            padding: 40px 25px !important;
        }
        .vision-thumb-wrapper {
            min-height: 260px !important;
        }
    }

    .containers{
        margin-right: 8rem;
    margin-left: 8rem;
    }

 /* CONTAINER & AREA SETUP */
.creative-about-image {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: auto;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape-green {
    position: absolute;
    width: 380px;
    height: 380px;
    background: #162a20;
    border-radius: 40% 60% 40% 60%; 
    bottom: 10px;
    right: 20px;
    z-index: 1;
    animation: floatShape 6s ease-in-out infinite;
    opacity: 0.95;
}

.image-wrapper {
        position: relative;
    width: 452px;
    height: 427px;
    z-index: 3;
    overflow: hidden;
    border-radius: 48% 52% 45% 55% / 55% 45% 55% 45%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.creative-about-image:hover .main-img {
    transform: scale(1.06);
}

.dots-element {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#ACBF60 2px, transparent 2px);
    background-size: 12px 12px;
    bottom: 40px;
    right: -10px;
    z-index: 0;
    opacity: 0.4;
}

.small-circle {
    position: absolute;
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 8px solid #162a20;
    border-radius: 50%;
    bottom: -10px;
    left: 30%;
    z-index: 4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.title-line {
    width: 5px;
    height: 28px;
    background: #ACBF60;
    border-radius: 4px;
    display: inline-block;
}

.title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #162a20;
    margin-top: 5px;
    line-height: 1.3;
}

.description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5568;
    text-align: justify;
}

@keyframes floatShape {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@media (max-width: 991px) {
    .creative-about-image {
        padding: 20px;
        max-width: 400px;
        margin-bottom: 30px;
    }
    .shape-green {
        width: 280px;
        height: 280px;
    }
    .image-wrapper {
        width: 310px;
        height: 310px;
    }
    .title {
        font-size: 1.85rem;
    }
    .dots-element {
        width: 90px;
        height: 90px;
        bottom: 20px;
    }
}

.premium-about-section {
    background-color: #f5f9ed4d;
    padding: 44px 0;
    position: relative;
    z-index: 1;
}

.content-glass-card {
    background: #ffffff;
    border: 1px solid rgba(11, 43, 34, 0.05);
    padding: 22px;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(11, 43, 34, 0.04);
    height: 100%;
    z-index: 3;
}

.modern-subtitle-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.modern-subtitle-badge .badge-line {
    width: 6px;
    height: 24px;
    background-color: var(--light-green);
    border-radius: 4px;
    display: inline-block;
}

.modern-subtitle-badge .badge-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--light-green);
}

.modern-header {
    color: var(--dark-green);
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 24px;
}

.company-description {
    color: #555f6d;
    font-size: 1rem;
    line-height: 1.9;
    font-weight: 400;
    text-align: justify;
}

.image-showcase-container {
    position: relative;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 500px; 
    box-shadow: 0 30px 60px rgba(11, 43, 34, 0.12);
    z-index: 2;
    transition: var(--transition-premium);
}

.about-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; 
    object-position: center center;
    transition: var(--transition-premium);
}

.geo-backdrop {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 95%;
    height: 90%;
    background-color: var(--dark-green);
    border-radius: 32px;
    z-index: 1;
    transition: var(--transition-premium);
}

.image-showcase-container:hover .image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(11, 43, 34, 0.18);
}

.image-showcase-container:hover .about-main-img {
    scale: 1.05;
}

.image-showcase-container:hover .geo-backdrop {
    transform: translate(-15px, 15px);
    /* background-color: var(--light-green); */
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
margin-top: 32px;}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 0.5px solid #d5e8c2;
    border-radius: 10px;
    padding: 10px 12px;
    height: 100%;
    transition: border-color 0.2s ease;
}

.pillar-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 12px;
    height: 100%;
    transition: border-color 0.2s ease;
}
.pillar-icon-wrapper i {
    font-size: 1.2rem;
    color: var(--light-green);
    transition: var(--transition-premium);
}

.pillar-item span {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-green) !important;
    white-space: nowrap; 
    transition: var(--transition-premium);
}

.pillar-item:hover {
        border-color: #7ab648;
color:#0b2b22;
}

.pillar-item:hover .pillar-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.15);
}

.pillar-item:hover .pillar-icon-wrapper i {
    color: #ffffff;
}

.pillar-item:hover span {
    color: #ffffff;
}

@media (max-width: 991px) {
    .content-glass-card {
        padding: 30px;
    }
    .modern-header {
        font-size: 2.1rem;
    }
    .image-wrapper {
        min-height: 380px;
    }
    .pillar-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .pillar-item {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: right;
        padding: 15px 25px;
    }
    .pillar-icon-wrapper {
        margin: 0;
    }
    .geo-backdrop {
        display: none; 
    }
}

.premium-why-us-section {
    background-color: #ffff;
    padding: 100px 0;
    position: relative;
    overflow-x: hidden;
}

.modern-section-title {
    color: var(--dark-green);
    font-weight: 900;
    font-size: 2.8rem;
    margin-top: 10px;
    margin-bottom: 0;
}

.modern-subtitle-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.modern-subtitle-badge .badge-line {
    width: 6px;
    height: 24px;
    background-color: var(--light-green);
    border-radius: 4px;
    display: inline-block;
}

.modern-subtitle-badge .badge-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--light-green);
}

.anchor-feature-card {
    background: #ffffff;
    border: 1px solid rgba(11, 43, 34, 0.04);
    padding: 25px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(11, 43, 34, 0.02);
    transition: var(--transition-premium);
    height: 100%;
}

.anchor-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(172, 191, 96, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-premium);
}

.anchor-icon-box i {
    font-size: 1.3rem;
    color: var(--light-green);
    transition: var(--transition-premium);
}

.anchor-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 0;
    transition: var(--transition-premium);
}

.anchor-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 43, 34, 0.08);
    border-color: rgba(172, 191, 96, 0.2);
}

.anchor-feature-card:hover .anchor-icon-box {
    background-color: var(--dark-green);
}

.anchor-feature-card:hover .anchor-icon-box i {
    color: #ffffff;
}

.premium-dark-box {
    background: linear-gradient(135deg, var(--dark-green) 0%, #123e32 100%);
    border: none;
}

.premium-dark-box .anchor-icon-box {
    background-color: rgba(255, 255, 255, 0.08);
}

.premium-dark-box .anchor-icon-box i {
    color: var(--light-green);
}

.premium-dark-box .anchor-content h3 {
    color: #ffffff;
}

.premium-dark-box:hover {
    box-shadow: 0 25px 45px rgba(11, 43, 34, 0.2);
}

.premium-dark-box:hover .anchor-icon-box {
    background-color: var(--light-green);
}

.premium-dark-box:hover .anchor-icon-box i {
    color: var(--dark-green);
}

@media (max-width: 991px) {
    .modern-section-title {
        font-size: 2.2rem;
    }
    .anchor-feature-card {
        padding: 20px;
    }
}
.premium-vision-light-section {
    background-color: #ffffff;
    padding: 25px 0;
    position: relative;
    overflow-x: hidden;
    z-index: 1;
}

.vision-light-content-card {
    background: #ffffff;
    padding: 20px 0;
}

.vision-light-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.vision-light-badge .badge-line {
    width: 6px;
    height: 24px;
    background-color: var(--light-green);
    border-radius: 4px;
}

.vision-light-badge .badge-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--light-green);
}

.vision-light-title {
    color: var(--dark-green);
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.vision-light-statement {
    color: #4a5568;
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 500;
    text-align: justify;
    margin-bottom: 40px;
}

.text-highlight {
    color: var(--dark-green);
    font-weight: 800;
    background: linear-gradient(120deg, rgba(172, 191, 96, 0.2) 0%, rgba(172, 191, 96, 0.2) 100%);
    padding: 0 8px;
    border-radius: 6px;
}

.vision-light-sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 550px;
}

.sector-light-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 0.5px solid #d5e8c2;
    border-radius: 10px;
    padding: 10px 12px;
    height: 100%;
    transition: border-color 0.2s ease;
}

.sector-mini-icon {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-green);
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition-premium);
}

.sector-light-tag span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-green);
}

.sector-light-tag:hover {
   
        border-color: #7ab648;
color:#0b2b22;
    transform: translateY(-3px);
}

.sector-light-tag:hover span {
    color: #ffffff;
}

.sector-light-tag:hover .sector-mini-icon {
    background-color: var(--light-green);
    color: #ffffff;
}.pillar-item:hover .pillar-icon-wrapper{
    background-color: var(--light-green);
    color: #ffffff;
}

.vision-image-container {
    position: relative;
    padding: 15px;
}

.vision-image-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    width: 100%;
    height: 440px;
    box-shadow: 0 30px 60px rgba(11, 43, 34, 0.08);
    z-index: 2;
    transition: var(--transition-premium);
}

.vision-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center;
    transition: var(--transition-premium);
}

.vision-geo-backdrop {
    position: absolute;
    bottom: -5px;
    left: -5px;
    width: 90%;
    height: 90%;
    background-color: var(--bg-light);
    border: 2px dashed rgba(172, 191, 96, 0.4);
    border-radius: 28px;
    z-index: 1;
    transition: var(--transition-premium);
}

.vision-image-container:hover .vision-image-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 40px 70px rgba(11, 43, 34, 0.15);
}

.vision-image-container:hover .vision-main-img {
    scale: 1.04;
}

.vision-image-container:hover .vision-geo-backdrop {
    transform: translate(-10px, 10px);
    background-color: rgba(172, 191, 96, 0.08);
}

@media (max-width: 991px) {
    .premium-vision-light-section {
        padding: 70px 0;
    }
    .vision-light-title {
        font-size: 2.2rem;
    }
    .vision-light-statement {
        font-size: 1.3rem;
    }
    .vision-image-wrapper {
        height: 340px;
    }
    .vision-geo-backdrop {
        display: none;
    }
}

@media (max-width: 575px) {
    .vision-light-sectors-grid {
        grid-template-columns: 1fr;
    }
}
.gre{
    background-color: #f2fddd4d !important ;
}
.premium-modern-services-static {
    background-color: #ffffff;
    padding: 25px 0;
    position: relative;
}

.modern-services-title {
    color: var(--dark-green);
    font-weight: 900;
    font-size: 1.4rem;
    margin-top: 10px;
}

.main-static-board {
    border: 1px solid rgba(11, 43, 34, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(11, 43, 34, 0.02);
    background-color: #ffffff;
}

.service-static-panel {
    border-left: 1px solid rgba(11, 43, 34, 0.08);
    background: #ffffff;
    transition: var(--transition-premium);
}

.service-static-panel:last-child {
    border-left: none;
}

.static-panel-inner {
    padding: 40px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.static-panel-header {
    text-align: center;
    margin-bottom: 25px;
}

.panel-icon-shield {
    width: 60px;
    height: 60px;
    background-color: #eaf3de;
;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #3b6d11;
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: var(--transition-premium);
}

.static-panel-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-green);
    margin: 0;
}

.static-panel-body-content {
    width: 100%;
}

.nested-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.nested-services-list li {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5568;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(11, 43, 34, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.nested-services-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nested-services-list li i {
    color: var(--light-green);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-static-panel:hover {
    border-color: #7ab648 !important;
    transform: translateY(0);
}

.service-static-panel:hover .panel-icon-shield {
    color: var(--dark-green) !important;
}

@media (max-width: 1199px) {
    .service-static-panel {
        border-left: none;
        border-bottom: 1px solid rgba(11, 43, 34, 0.08);
    }
    .service-static-panel:last-child {
        border-bottom: none;
    }
    .static-panel-inner {
        padding: 35px 20px;
    }
}

@media (max-width: 767px) {
    .modern-services-title {
        font-size: 2.1rem;
    }
}
.service-static-panel:hover {
    border-color: #7ab648 !important;
    transform: translateY(-5px); 
    /* box-shadow: 0 20px 40px rgba(11, 43, 34, 0.15); */
}



.service-static-panel:hover .static-panel-header h3 {
    color: #0b2b22;
}

.service-static-panel:hover .nested-services-list li {
    color: #0b2b22;
    border-bottom-color: rgba(255, 255, 255, 0.15); 
}

.service-static-panel:hover .nested-services-list li i {
    color: var(--light-green);
}

.premium-target-markets-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.market-section-title {
    color: var(--dark-green);
    font-weight: 900;
    font-size: 2.6rem;
    margin-top: 10px;
}

.market-compact-card {
    background-color: var(--dark-green);
    border: 1px solid var(--dark-green);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(11, 43, 34, 0.05);
    transition: var(--transition-premium);
    cursor: pointer;
}

.card-icon-box {
    width: 65px;
    height: 65px;
    background-color: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-green); 
    font-size: 1.5rem;
    transition: var(--transition-premium);
}

.market-compact-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    transition: var(--transition-premium);
}


.market-compact-card:hover {
    background-color: #ffffff;
    border-color: rgba(11, 43, 34, 0.1);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(11, 43, 34, 0.08);
}

.market-compact-card:hover .card-icon-box {
    background-color: var(--dark-green);
    color: #ffffff;
    transform: scale(1.05);
}

.market-compact-card:hover h3 {
    color: var(--dark-green);
}

@media (max-width: 991px) {
    .market-section-title {
        font-size: 2.1rem;
    }
    .market-compact-card {
        padding: 30px 20px;
    }
    .market-compact-card h3 {
        font-size: 1.1rem;
    }
}
.premium-distinct-section {
    background-color: #ffffff;
    position: relative;
}

.distinct-section-title {
    color: var(--dark-green);
    font-weight: 900;
    font-size: 2.6rem;
    margin-top: 10px;
}
.distinct-compact-card {
    background-color: #1c3126;
    border: 1px solid var(--dark-green);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(11, 43, 34, 0.05);
    transition: var(--transition-premium);
    cursor: pointer;
}

.distinct-icon-box {
    width: 65px;
    height: 65px;
    background-color: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-green);
    font-size: 1.5rem;
    transition: var(--transition-premium);
}
.distinct-compact-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    transition: var(--transition-premium);
}


.distinct-compact-card:hover {
    background-color: #ffffff;
    border-color: rgba(11, 43, 34, 0.1);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(11, 43, 34, 0.08);
}

.distinct-compact-card:hover .distinct-icon-box {
    background-color: var(--dark-green);
    color: #ffffff;
    transform: scale(1.05);
}

.distinct-compact-card:hover h3 {
    color: var(--dark-green);
}

@media (max-width: 991px) {
    .distinct-section-title {
        font-size: 2.1rem;
    }
    .distinct-compact-card {
        padding: 30px 20px;
    }
    .distinct-compact-card h3 {
        font-size: 1.1rem;
    }
}
.our-products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(245, 249, 237, 0.3) 0%, rgba(255, 255, 255, 1) 100%);
    direction: rtl;
    margin-top: 3rem;
}

.modern-subtitle-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 8px 24px;
    margin-bottom: 20px;
}

.badge-text {
    color: var(--dark-green);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.badge-line {
    width: 20px;
    height: 2px;
    background-color: var(--light-green);
    display: inline-block;
    border-radius: 2px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 60px auto;
    line-height: 1.8;
}

.products-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.product-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid rgba(11, 43, 34, 0.05);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 220px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-premium);
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--dark-green) 0%, #133d31 100%);
    opacity: 0;
    z-index: 1;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card:hover::before {
    opacity: 1;
}

.product-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(11, 43, 34, 0.04);
    position: absolute;
    top: 15px;
    left: 30px;
    z-index: 0;
font-family: 'Tajawal', sans-serif;    transition: var(--transition-smooth);
}

.product-card:hover .product-number {
    color: rgba(255, 255, 255, 0.06);
    transform: scale(1.1);
}

.product-icon {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 65px;
    background: var(--bg-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.product-icon i {
    font-size: 1.8rem;
    color: var(--dark-green);
    transition: var(--transition-smooth);
}

.product-card:hover .product-icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.product-card:hover .product-icon i {
    color: var(--light-green);
    transform: rotate(-10deg) scale(1.1);
}

/* Typography Inside Cards */
.product-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.product-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-green);
    margin: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-content h4 {
    color: #ffffff;
}

.product-card.full-width {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    min-height: auto;
    padding: 30px 40px;
}

.product-card.full-width .product-icon {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .product-card.full-width {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .product-card.full-width .product-icon {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .our-products-section {
        padding: 60px 0;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-card.full-width {
        grid-column: span 1;
    }
    .section-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}
.our-products-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    direction: rtl;
font-family: 'Tajawal', sans-serif;    overflow: hidden;
}

.title-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.title-tag-line {
    width: 6px;
    height: 45px;
    background-color: var(--light-green);
    border-radius: 4px;
    display: inline-block;
}

.section-title {
    color: var(--dark-green);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
}

.section-desc {
    color: var(--dark-green);
    opacity: 0.85;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
}

.products-list-group {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(11, 43, 34, 0.15);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.list-arrow {
    width: 28px;
    height: 28px;
    background-color: var(--light-green);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.product-name {
    color: var(--dark-green);
    font-size: 1.3rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.product-list-item:hover {
    padding-right: 10px;
    border-bottom-color: var(--dark-green);
}

.product-list-item:hover .list-arrow {
    background-color: var(--dark-green);
    transform: scale(1.1);
}

.product-list-item:hover .product-name {
    color: var(--light-green);
}

.asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.grid-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 160px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-premium);
}

.grid-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-premium);
}

.grid-box:hover img {
    transform: scale(1.06);
}

.item-chicken {
    grid-column: span 8;
}

.item-rice-bowl {
    grid-column: span 4;
}

.item-fish {
    grid-column: span 4;
}

.item-meat {
    grid-column: span 8;
    height: 180px; 
}

.item-rice-cooked {
    grid-column: span   12;
}

.item-cta-btn {
    grid-column: span 3;
    background-color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.cta-arrow i {
    font-size: 2.5rem;
    color: #ffffff;
    transition: var(--transition-premium);
}

.item-cta-btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-4px);
}

.item-cta-btn:hover .cta-arrow i {
    transform: translate(-6px, 6px) scale(1.1); /* Smooth directional pull animation */
}

/* Responsive Fluidity Controls */
@media (max-width: 1200px) {
    .section-title { font-size: 2.3rem; }
    .grid-box { height: 140px; }
    .item-meat { height: 140px; margin-top: 0; }
}

@media (max-width: 991px) {
    .content-side { margin-bottom: 40px; }
    .section-desc { max-width: 100%; }
}

@media (max-width: 576px) {
    .asymmetric-grid {
        gap: 12px;
    }
    /* Fallback layout behavior on small touchscreens */
    .item-chicken, .item-rice-bowl, .item-fish, .item-meat, .item-rice-cooked, .item-cta-btn {
        grid-column: span 12;
        height: 180px;
    }
    .section-title { font-size: 2rem; }
}

 .sec-features {
      padding: 40px 0 32px;
    }
 
    /* ===== Header Badge ===== */
    .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #eaf3de;
      border: 0.5px solid #7ab648;
      border-radius: 20px;
      padding: 3px 12px;
      margin-bottom: 8px;
    }
 
    .badge-pill i {
      font-size: 10px;
      color: #7ab648;
    }
 
    .badge-pill span {
      font-size: 12px;
      font-weight: 500;
      color: #3b6d11;
    }
 
    .sec-title {
      font-size: 20px;
      font-weight: 600;
      color: #1a3d0f;
      margin: 0;
    }
 
    .feat-card {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #ffffff;
      border: 0.5px solid #d5e8c2;
      border-radius: 10px;
      padding: 10px 12px;
      height: 100%;
      transition: border-color 0.2s ease;
    }
 
    .feat-card:hover {
      border-color: #7ab648;
    }
 
    .feat-icon {
      width: 36px;
      height: 36px;
      min-width: 36px;
      border-radius: 8px;
      background: #eaf3de;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .feat-icon i {
      font-size: 17px;
      color: #3b6d11;
    }
 
    .feat-title {
      font-size: 13px;
      font-weight: 500;
      color: #1a3d0f;
      margin: 0;
      line-height: 1.4;
    }
    
    
@media (max-width: 991px) {
    .banner-section {
        padding-top: 100px; 
    }

    .header-section .navbar-collapse {
        background-color:#0a3a3a !important;
        padding: 20px;
        margin-top: 10px;
        border-radius: 8px;
    }

    .banner-content .title {
        font-size: 24px !important;
        line-height: 1.3;
    }
}
