:root {
    --primary-color: #91c744;
    --primary-dark: #7aab3a;
    --third-color: #f0f8e8;
    --secondary-color: #034f31;
    --accent-color: #d9ef6f;
    --bg-dark: #0a2d24;
    --text-color: #333;
    --light-bg: #f8fcf8;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cairo", sans-serif;
}


ul {
    padding: 0;
    margin: 0;
}

body {
    direction: rtl;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* ==========================================
   Navbar
   ========================================== */
.navbar {
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 1000;
    padding: 0 5%;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    background: rgba(3, 79, 49, 0.95);
    backdrop-filter: blur(15px);
}

.navbar-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-toggle-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1005;
}

.vision-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.main-logo img {
    height: 80px;
}

.nav-capsule {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    display: flex;
    flex-direction: row-reverse;
    overflow: hidden;
    height: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.nav-download {
    background: var(--primary-color);
    padding: 0 30px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    order: 1;
}

.nav-download:hover {
    background: var(--primary-dark);
}

.nav-download a {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    flex-direction: row-reverse;
    list-style: none;
    align-items: center;
    padding: 0 25px;
    gap: 5px;
    order: 2;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 15px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li.active a {
    background: var(--white);
    color: var(--primary-color);
    border-radius: 40px;
    padding: 8px 25px;
}

.nav-menu li a i {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* ==========================================
   Hero Section with Carousel
   ========================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8%;
    color: var(--white);
    overflow: hidden;
}

/* Carousel slides */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}

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

/* Dark overlay for readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 100%
    );
    z-index: 2;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    text-align: right;
}

/* Hero Badge - matches Figma exactly */
.hero-badge {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 30px 0;
    margin-top: 100px;
    color: var(--white);
}

.hero-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 500;
    max-width: 700px;
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.btn-green {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 20px 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-green-icon {
    background: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 8px;
    object-fit: contain;
    order: -1;
}

.btn-white {
    background: var(--white);
    color: var(--secondary-color);
    padding: 14px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
    font-size: 0.95rem;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(145, 199, 68, 0.4);
    background: var(--primary-dark);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
    border-color: var(--primary-color);
}

/* Hero Thumbnails - Bottom Left */
.hero-thumbs {
    position: absolute;
    bottom: 50px;
    left: 6%;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.thumb-item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.15);
    transition: var(--transition);
    opacity: 0.6;
}

.thumb-item.active {
    border-color: var(--primary-color);
    opacity: 1;
    transform: translateY(-3px);
}

.thumb-item:hover {
    opacity: 1;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.thumb-item img {
    width: 70px;
    height: 45px;
    object-fit: cover;
    display: block;
}

/* Hero Progress Dots - Bottom Right */
.hero-progress {
    position: absolute;
    bottom: 60px;
    right: 8%;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.progress-dot {
    width: 50px;
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.progress-dot:hover {
    background: rgba(255,255,255,0.6);
}

.progress-dot.active {
    background: var(--primary-color);
    width: 70px;
}

/* ==========================================
   Strategic Partnership Section (شراكة استراتيجية)
   ========================================== */
.partnership-section {
    padding: 80px 8%;
    background: #fff;
}

.partnership-container {
    display: flex;
    gap: 50px;
    align-items: stretch;
    max-width: 1300px;
    margin: 0 auto 50px;
}

.partnership-content {
    flex: 1.1;
}

.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f8e8;
    color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.partnership-badge i {
    font-size: 0.8rem;
}

.partnership-content h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 25px;
}

.partnership-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.partnership-list li {
    position: relative;
    padding-right: 18px;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
}

.partnership-list li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

/* "اعرف اكثر" Button */
.partnership-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    padding: 10px 14px 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.partnership-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(145, 199, 68, 0.3);
}

.partnership-btn-icon {
    width: 30px;
    height: 30px;
    background: var(--white);
    
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transform: rotate(45deg);
}

.partnership-btn-icon i {
    font-size: 0.65rem;
    color: var(--secondary-color);
}

/* SOLEM Product Card (pre-made image) */
.partnership-product {
    flex: 1;
}

.solem-card-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: block;
}

/* 4 Feature Cards Row */
.feature-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto 60px;
}

.feature-card {
    padding: 30px 20px;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(145, 199, 68, 0.1);
    transform: translateY(-5px);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.feature-card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.7;
}

/* Why Partnership Section (لماذا هذه الشراكة مهمة؟) */
.why-partnership {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.why-partnership-image {
    flex: 1.7; /* Increased to make the image even larger */
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
}

.why-partnership-image img {
    width: 100%;
    max-width: 800px; /* Allow the image to become larger */
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.why-partnership-content {
    flex: 1;
}

.why-partnership-content h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-weight: 900;
    margin-bottom: 25px;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: #444;
    font-weight: 600;
}

.why-list-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

/* ==========================================
   Section Titles
   ========================================== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.section-title p {
    color: #777;
    font-size: 1.05rem;
    margin-top: 10px;
}

.section-title .badge {
    background: var(--third-color);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: inline-block;
}

/* ==========================================
   Partners Agents (وكلاء اخرون)
   ========================================== */
.agents-section {
    padding: 70px 8%;
    background: #fff;
}

.agents-title {
    text-align: center;
    margin-bottom: 40px;
}

.agents-title h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 800;
}

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

.agent-card {
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
}

.agent-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(145, 199, 68, 0.1);
}

.agent-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.agent-logo img {
    height: 100px;
    object-fit: contain;
}

.agent-logo h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.agent-card > p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.9;
}

/* ==========================================
   About Us Section (من نحن) with Stats
   ========================================== */
.about-us-section {
    padding: 80px 8%;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.about-us-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
}

.about-us-content {
    flex: 1;
}

.about-us-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f8e8;
    color: var(--secondary-color);
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.badge-leaf-dark {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.about-us-content h2 {
    font-size: 2.3rem;
    color: var(--secondary-color);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 25px;
}

.about-us-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.about-us-list li {
    position: relative;
    padding-right: 18px;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-us-list li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 20px 15px;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
    box-shadow: 0px 0px 0px var(--primary-color);
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.stat-green {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.stat-light {
    background: #fff;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-green .stat-number {
    color: var(--white);
}

.stat-light .stat-number {
    color: var(--primary-color);
}

.stat-label {
    font-weight: bold;
    font-size: 0.78rem;
}

.stat-green .stat-label {
    color: rgba(255,255,255,0.9);
}

.stat-light .stat-label {
    color: #777;
}

/* About Us Image */
.about-us-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.about-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    max-height: 480px;
}

/* ==========================================
   Services Grid - Figma Glassmorphism Design
   ========================================== */
.services-section {
    padding: 100px 0;
    background: #fff;
}

.badge-leaf {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-left: 5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 380px;
    gap: 25px;
    padding: 0 10%;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.service-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-bg {
    transform: scale(1.08);
}

/* Glassmorphism Overlay */
.service-glass-overlay {
    width: 70%;
    position: absolute;
    bottom: 15px;
    right: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 20px 22px;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-glass-overlay {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
}

.service-glass-top {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.service-tag {
    margin-inline-start: 10px;
    font-weight: bold;
}

.service-icon-circle {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.service-icon-circle img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.service-glass-overlay h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.service-glass-overlay p {
    font-weight: bold;
    font-size: 0.8rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 25px;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.service-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.service-link .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-dark);
    color: var(--white);
    font-size: 12px;
    margin-left: 8px;
}
.service-link i {
    font-size: 0.7rem;
    color: var(--white);
    transform: rotate(45deg);
}

/* Grid Layout - Row 1: large + small, Rows 2-3: equal */
.grid-item-1 {
    grid-column: span 2;
}

.grid-item-2 {
    grid-column: span 1;
}

/* All 6 cards in 2-column grid */
.grid-item-3,
.grid-item-4,
.grid-item-5,
.grid-item-6 {
    grid-column: span 1;
}

/* ==========================================
   Circular Diagram
   ========================================== */
/* ==========================================
   Sustainable Technology Section (تقنيات مستدامة)
   ========================================== */
.sustainable-tech {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.sust-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    gap: 0;
}

.sust-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 2;
}

.sust-pill {
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-radius: 80px;
    background: #fff;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    width: 440px;
    min-height: 120px;
}

.sust-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.sust-left .sust-pill {
    padding-left: 0;
}

.sust-right .sust-pill {
    padding-right: 0;
}

.sust-pill-text {
    flex: 1;
    padding: 15px 25px;
}

.sust-pill-text h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 6px;
    line-height: 1.4;
}

.sust-pill-text p {
    font-size: 0.78rem;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

.sust-left .sust-pill-text {
    text-align: right;
    padding-right: 30px;
}

.sust-right .sust-pill-text {
    text-align: left;
    padding-left: 30px;
}

.sust-pill-icon {
    width: 110px;
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
}

.sust-pill-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    z-index: 3;
}

.sust-pill-icon i {
    font-size: 2rem;
    z-index: 3;
}

/* Specific Pill Backgrounds based on Figma */
.bg-dark-green { background: #3b5a19; }
.bg-mid-green { background: #4a7c1b; }
.bg-olive-green { background: #5a911a; }
.bg-light-green { background: #88c642; }
.bg-lime-green { background: #71b931; }
.bg-leaf-green { background: #5fa524; }

.sust-center {
    margin: 0 -40px; /* Overlap with left/right pills */
    z-index: 5;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 6-segment colored ring */
.sust-center::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    /* Order from top-right clockwise */
    background: conic-gradient(
        transparent 0deg 4deg,
        #88c642 4deg 56deg,     /* Top Right */
        transparent 56deg 64deg,
        #71b931 64deg 116deg,   /* Mid Right */
        transparent 116deg 124deg,
        #5fa524 124deg 176deg,  /* Bot Right */
        transparent 176deg 184deg,
        #5a911a 184deg 236deg,  /* Bot Left */
        transparent 236deg 244deg,
        #4a7c1b 244deg 296deg,  /* Mid Left */
        transparent 296deg 304deg,
        #3b5a19 304deg 356deg,  /* Top Left */
        transparent 356deg 360deg
    );
    z-index: -1;
}

.sust-center-circle {
    width: 290px;
    height: 290px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(100, 150, 40, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 10;
    margin: 0px 80px;
}

.sust-logo-img {
    width: 100px;
    margin-bottom: 20px;
}

.sust-center-circle h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 10px;
}

.sust-center-circle p {
    font-size: 0.8rem;
    color: #555;
    font-weight: 600;
    line-height: 1.5;
    padding: 0 15px;
}

/* ==========================================
   Market Segments
   ========================================== */
.markets-section {
    padding: 100px 0;
    background: #fff;
}

.markets-section .section-title {
    margin-bottom: 50px;
}

.markets-section .section-desc {
    color: #777;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 10% 80px;
}

.market-card {
    position: relative;
    color: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
    transition: var(--transition);
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Base custom colors */
.bg-mc-1 { background: #0c6a3a; }
.bg-mc-2 { background: #078049; }
.bg-mc-3 { background: #0ba04f; }
.bg-mc-4 { background: #046554; }
.bg-mc-5 { background: #058a5e; }
.bg-mc-6 { background: #0a8fa2; }

/* Abstract corner bubbles */
.market-card::before, .market-card::after {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08); /* Low opacity white */
    z-index: 1;
}

.market-card::before {
    top: -40px;
    right: -40px;
}

.market-card::after {
    bottom: -40px;
    left: -40px;
}

.market-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.15); /* Translucent background */
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.market-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.market-card:hover .market-icon img {
    transform: scale(1.1);
}

.market-card h4 {
    position: relative;
    z-index: 2;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
}

/* ==========================================
   Product Grid & Layout
   ========================================== */
.products-section {
    padding: 100px 10%;
    background: #fff;
}

.products-section .section-title {
    margin-bottom: 50px;
}

.products-section .section-desc {
    color: #777;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
}

.products-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar */
.products-sidebar {
    width: 250px;
    flex-shrink: 0;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.sidebar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #eaf3db; /* Light green tint */
    color: var(--primary-color);
    padding: 8px 30px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 30px;
    width: 100%;
}

.sidebar-badge .badge-leaf {
    width: 16px;
    filter: brightness(0) saturate(100%) invert(48%) sepia(20%) saturate(2126%) hue-rotate(43deg) brightness(101%) contrast(92%);
}

.products-sidebar h3 {
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-align: center;
    color: var(--secondary-color);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-menu a {
    display: block;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    color: #555;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    text-align: right;
    font-size: 0.95rem;
}

.sidebar-menu a:hover, .sidebar-menu a.active {
    background: #8fc945; 
    color: #fff;
    border-color: #8fc945;
}

/* Main Content area */
.products-main {
    flex: 1;
}

.product-filters {
    display: flex;
    justify-content: flex-end; /* Align right matching Arabic RTL order */
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    flex-direction: row-reverse; /* Reverses so leftmost in HTML is rightmost visually */
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 12px;
    border: 1px solid #a4d360; 
    background: white;
    color: #8fc945;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
}

.filter-btn.active, .filter-btn:hover {
    background: #8fc945;
    color: white;
    border-color: #8fc945;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.product-image {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card h4.product-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.product-action {
    display: flex;
    justify-content: center;
}

.prod-more-btn {
    display: inline-flex;
    align-items: center;
    border: 1px solid #a4d360;
    border-radius: 30px;
    padding: 4px 15px 4px 5px; 
    color: #8fc945;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    gap: 10px;
}

.prod-more-btn:hover {
    background: #fdfdfd;
}

.prod-more-icon {
    width: 26px;
    height: 26px;
    background: #8fc945;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}

.prod-more-icon i {
    transform: rotate(-45deg); 
}

/* Pagination */
.products-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.products-pagination ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
    flex-direction: row-reverse;
}

.products-pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #777;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: bold;
    transition: var(--transition);
}

.products-pagination a:hover, .products-pagination a.active {
    background: #eaf3db;
    color: var(--primary-color);
    border-color: #8fc945;
}

.products-pagination a i {
    font-size: 0.8rem;
}

.products-view-all {
    margin-top: 25px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #444;
    border-radius: 30px;
    padding: 6px 20px 6px 6px;
    color: #444;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    flex-direction: row-reverse;
}

.view-all-btn:hover {
    background: #f5f5f5;
}

.view-all-icon {
    width: 28px;
    height: 28px;
    background: #444;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}

.view-all-icon i {
    transform: rotate(45deg); /* Arrow pointing top-right */
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
    transform-style: preserve-3d;
}

.product-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-image {
    height: 150px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 15px;
    background: #f5f5f5;
}

.product-image img {
    transition: all 0.3s ease-in-out;
    max-width: 80%;
    max-height: 120px;
    object-fit: contain;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-title {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.1rem;
}

.product-btn {
    margin-top: 15px;
    display: block;
    padding: 8px 20px;
    text-align: center;
    justify-content: center;
}

/* ==========================================
   Partners
   ========================================== */
.partners-section {
    padding: 60px 10%;
    border-top: 1px solid #eee;
}

.partners-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.partners-track img {
    height: 40px;
    filter: grayscale(1);
    opacity: 0.5;
    transition: var(--transition);
}

.partners-track img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ==========================================
   Buttons
   ========================================== */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: "Cairo", sans-serif;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(145, 199, 68, 0.3);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    padding: 100px 10%;
    background: #fff;
    position: relative;
    padding-bottom: 200px; /* Space for grass */
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
    z-index: 2;
    position: relative;
}

.contact-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eaf3db;
    color: var(--primary-color);
    padding: 8px 30px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.contact-header .badge-leaf {
    width: 16px;
    filter: brightness(0) saturate(100%) invert(48%) sepia(20%) saturate(2126%) hue-rotate(43deg) brightness(101%) contrast(92%);
}

.contact-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.1rem;
    color: #777;
    max-width: 800px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    flex-wrap: wrap; /* responsive */
    gap: 50px;
    align-items: stretch;
    background: #fff;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Image Column (visually Right in RTL) */
.contact-image-col {
    flex: 1;
    min-width: 300px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Form Column (visually Left in RTL) */
.contact-form-col {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-input {
    position: relative;
    margin-bottom: 20px;
}

.custom-input input,
.custom-input textarea {
    width: 100%;
    padding: 18px 50px 18px 20px; /* padding right makes room for icon */
    background: #f4f4f4;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    transition: var(--transition);
}

.custom-input input:focus,
.custom-input textarea:focus {
    outline: none;
    background: #ebebeb;
}

.custom-input input::placeholder,
.custom-input textarea::placeholder {
    color: #999;
    font-weight: 600;
}

.custom-input textarea {
    padding-right: 20px; /* Textareas typically don't have right icon */
    resize: vertical;
}

.input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    pointer-events: none;
}

.contact-form-col .submit-btn {
    width: 100%;
    background: #8fc945;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contact-form-col .submit-btn:hover {
    background: #7bb833;
}

.grass-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: url("/front/73e9f54659b15ceab9ef1157babdb9c3a8df23c8.png") repeat-x bottom;
    background-size: contain;
    z-index: 5;
    pointer-events: none;
}

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

/* ==========================================
   Footer
   ========================================== */
.footer-area {
    background: #fff;
    padding-top: 60px;
    color: #555;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    color: #333;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 25px;
}

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

.footer-links-list li {
    margin-bottom: 15px;
}

.footer-links-list a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-links-list a:hover {
    color: var(--primary-color);
}

.footer-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links-list.center-aligned {
    text-align: center;
}

/* Logo and Socials Column */
.footer-logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* visually left aligning the logo in RTL */
}

.footer-logo {
    width: 220px;
    margin-bottom: 30px;
}

.footer-social-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #91c744;
    color: #fff;
    border-radius: 8px; /* Slightly rounded squares */
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background: #7bb833;
    transform: translateY(-3px);
}

/* Footer Contact Bar */
.footer-contact-bar {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    flex-direction: row; /* In RTL, this puts the icon on the right */
    align-items: center;
    gap: 15px;
    text-align: right; /* Ensure text inside is right aligned */
}

.contact-box i {
    font-size: 1.5rem;
    color: #555;
}

.contact-box-text {
    display: flex;
    flex-direction: column;
}

.contact-box-text span {
    font-size: 0.9rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}

.contact-box-text p {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #ddd;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-copyright p {
    color: #777;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* ==========================================
   Partners Section
   ========================================== */
.partners-section {
    padding: 80px 0 60px;
    background: #fff;
    text-align: center;
}

.partners-header {
    margin-bottom: 50px;
}

.partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 10px 28px;
    border-radius: 40px;
    margin-bottom: 16px;
}

.partners-badge i {
    font-size: 1rem;
}

.partners-subtitle {
    color: #888;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Carousel outer wrapper — holds arrows + viewport */
.partners-carousel-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 5%;
}

/* The visible window */
.partners-viewport {
    overflow: hidden;
    flex: 1;
    max-width: 1100px;
}

/* Scrollable track */
.partners-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Each partner card */
.partner-card {
    flex: 0 0 calc((100% - 4 * 24px) / 5);
    min-width: 160px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.partner-card:hover {
    box-shadow: 0 8px 32px rgba(12, 106, 58, 0.12);
    transform: translateY(-4px);
}

.partner-card img {
    max-width: 120px;
    max-height: 70px;
    width: 100%;
    object-fit: contain;
    filter: grayscale(40%);
    transition: filter 0.3s;
}

.partner-card:hover img {
    filter: grayscale(0%);
}

/* Navigation Arrows */
.partners-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #444;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.partners-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 20px rgba(12, 106, 58, 0.25);
}

/* ==========================================
   Markets Section
   ========================================== */
.markets-section {
    padding: 100px 0;
    background: #f9f9f9;
}

/* ==========================================
   Responsive Styles
   ========================================== */
@media (max-width: 1200px) {
    .feature-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .sustainable-tech-container {
        flex-direction: column;
    }
    .sust-column {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .sust-center {
        margin: 50px 0;
    }
    /* Show 3 partner cards at a time on medium screens */
    .partner-card {
        flex: 0 0 calc((100% - 2 * 24px) / 3);
    }
}

@media (max-width: 768px) {
    /* Show 2 partner cards on tablets */
    .partner-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .partners-carousel-outer {
        padding: 0 3%;
        gap: 10px;
    }
    .partners-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Show 1 partner card on phones */
    .partner-card {
        flex: 0 0 100%;
        min-width: calc(100% - 0px);
    }
}

@media (max-width: 991px) {
    /* Navbar */
    .navbar-container {
        flex-direction: row-reverse;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: space-between;
    }
    .mobile-toggle-btn {
        display: block;
        order: 1;
    }
    .vision-logo {
        display: none; /* Hide secondary logo on mobile to prevent clutter */
    }
    .main-logo {
        order: 2;
    }
    .main-logo img {
        height: 60px;
    }
    .nav-capsule {
        display: none; /* Collapsed by default */
        order: 3;
        flex-direction: column;
        height: auto;
        padding: 15px 10px;
        border-radius: 12px;
        width: 100%;
        background: rgba(3, 79, 49, 0.98);
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }
    .nav-capsule.show {
        display: flex; /* Display when toggled */
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 20px;
        padding: 0;
        width: 100%;
    }
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-menu li a {
        display: block;
        padding: 12px;
        font-size: 1.05rem;
    }
    .nav-menu li.active a {
        background: transparent;
        color: var(--primary-color);
        border-radius: 0;
    }
    .nav-download {
        margin: 0 auto 10px;
        border-radius: 30px;
        padding: 10px 30px;
    }
    
    /* Hero */
    .hero {
        padding-top: 150px;
    }
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero-badge {
        margin: 80px auto 30px;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-thumbs {
        bottom: 20px;
        left: 5%;
    }
    .hero-progress {
        bottom: 20px;
        right: 5%;
    }
    
    /* Sections Layout */
    .partnership-container,
    .why-partnership,
    .about-us-container,
    .contact-container {
        flex-direction: column;
    }
    
    .why-partnership-image img,
    .about-us-images,
    .contact-image-col {
        width: 100%;
        margin-top: 30px;
    }
    
    /* Sustainable Tech — Full Mobile Reflow */
    .sust-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 20px;
    }
    .sust-col {
        width: 100%;
        align-items: center;
        order: 2;         /* Pills appear BELOW the center circle */
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .sust-center {
        order: 1;         /* Center circle stays on top */
        margin: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    /* Reset the conic ring pseudo-element size for small screens */
    .sust-center::before {
        width: 260px;
        height: 260px;
    }
    .sust-center-circle {
        width: 240px;
        height: 240px;
        margin: 0;
    }
    /* Pill reset for mobile */
    .sust-pill {
        flex-direction: row !important;
        clip-path: none !important;
        border-radius: 60px !important;
        background: #fdfdfd !important;
        border: 1px solid #e0e0e0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        margin: 0 !important;
        width: calc(50% - 8px);
        min-height: 90px;
    }
    /* On very small phones, full width pills */
    @media (max-width: 480px) {
        .sust-pill {
            width: 100%;
        }
    }
    .sust-pill-text {
        padding: 12px 14px;
    }
    .sust-pill-text h4 {
        font-size: 0.82rem !important;
        margin: 0 0 4px !important;
    }
    .sust-pill-text p {
        font-size: 0.7rem !important;
        line-height: 1.4;
    }
    .sust-pill-icon {
        width: 70px;
        min-height: 90px;
        border-radius: 60px 0 0 60px;
        flex-shrink: 0;
    }
    .sust-left .sust-pill-icon {
        border-radius: 0 60px 60px 0;
    }
    .sust-center-circle h3 {
        font-size: 1rem;
    }
    .sust-center-circle p {
        font-size: 0.72rem;
    }
    
    /* Grids */
    .market-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-container {
        flex-direction: column;
    }
    .products-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }
    
    /* Footer */
    .footer-container,
    .footer-contact-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    .footer-logo-col, .footer-col-center {
        align-items: center;
    }
    .contact-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Navbar Padding */
    .navbar {
        padding: 0 2%;
    }
    .nav-menu li a {
        padding: 5px 10px;
        font-size: 0.85rem;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .btn-green, .btn-white {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    .hero-thumbs, .hero-progress {
        display: none; /* Hide thumbs and dots on very small screens or re-position them */
    }
    
    /* Section Padding Adjustments */
    .contact-section,
    .partnership-section,
    .about-us-section,
    .markets-section,
    .products-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    /* Grids down to 1 col */
    .services-grid,
    .feature-cards-row,
    .agents-grid,
    .market-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid .grid-item-1,
    .services-grid .grid-item-2,
    .services-grid .grid-item-3,
    .services-grid .grid-item-4,
    .services-grid .grid-item-5,
    .services-grid .grid-item-6 {
        grid-column: span 1 !important;
    }

    .service-glass-overlay {
        width: 92%;
        left: 4%;
        right: 4%;
        bottom: 15px;
        padding: 15px;
    }

    .contact-image-col {
        height: 300px;
    }
}
