/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Mobile-only and Desktop-only utility classes */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    transition: background 0.3s, color 0.3s;
    margin: 0;
    padding-top: 60px;
    max-width: 100%;
    overflow-x: hidden;
}

html {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Horizontal Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 3%;
    background: #333;
    color: white;
    z-index: 10000;
    min-height: 60px;
    margin: 0;
}

@media (min-width: 769px) {
    .nav-logo {
        order: 1;
    }
    
    .controls {
        order: 2;
    }
    
    .nav-links {
        order: 3;
        margin-left: auto;
    }
}

.controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

#acc-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

#lang-btn {
    background: white;
    color: #333;
    border: none;
    padding: 8px 15px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.nav-logo img {
    height: 45px;
    border-radius: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px 10px;
    margin-left: auto;
    order: 999;
}

/* Animated Background */
.hero-section {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #3498db, #8e44ad, #3498db);
    animation: gradientMove 10s infinite linear;
    z-index: -1;
}

@keyframes gradientMove {
    0% { transform: translate(-25%, -25%); }
    100% { transform: translate(0%, 0%); }
}

/* Accessibility Classes */
.high-contrast {
    background-color: black !important;
    color: yellow !important;
}

.high-contrast a, .high-contrast button {
    color: yellow !important;
    border: 2px solid yellow !important;
}

.grayscale {
    filter: grayscale(100%);
}

.hidden { display: none; }
/* Layout Wrapper */
.content-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.submit-btn {
    padding: 12px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #2980b9;
}
/* Styling for the Toolbar Container */
#acc-toolbar {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 350px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    z-index: 99999;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: #333;
    direction: rtl;
    text-align: right;
}

[dir="ltr"] #acc-toolbar {
    direction: ltr;
    text-align: left;
}

/* Ensure hidden class works */
.hidden {
    display: none !important;
}
/* Navigation Spacing - Desktop */
.nav-links {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 8px 12px;
}

/* Hero Section & Animated Background */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(-45deg, #1e3a8a, #3b82f6, #9333ea, #2563eb);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Accessibility: Stop animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animated-bg {
        animation: none;
        background-size: cover;
    }
}

.hero-content {
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}
/* High Contrast Mode */
.high-contrast {
    background-color: #000 !important;
    color: #ffff00 !important; /* Yellow text on black background is a standard for high contrast */
}

.high-contrast a {
    color: #ffff00 !important;
    text-decoration: underline !important;
}

/* Grayscale Mode */
.grayscale {
    filter: grayscale(100%);
}

/* Toolbar Visibility */
.hidden {
    display: none;
}

#acc-toolbar {
    position: fixed;
    top: 60px;
    left: 20px;
    background: #f4f4f4;
    padding: 15px;
    border: 2px solid #333;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* Link Highlighting */
.highlight-links a {
    background-color: yellow !important;
    color: black !important;
    outline: 2px solid black !important;
    text-decoration: underline !important;
}

/* Header Highlighting */
.highlight-headers h1, 
.highlight-headers h2, 
.highlight-headers h3 {
    border: 2px solid #3b82f6 !important;
    padding: 5px !important;
}

/* Stop Animations (Important for the hero section) */
.stop-animations .animated-bg {
    animation: none !important;
}

/* Tooltip Row Styling */
.acc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}
/* Link Highlighting */
.highlight-links a {
    background-color: yellow !important;
    color: black !important;
    outline: 2px solid black !important;
    text-decoration: underline !important;
}

/* Header Highlighting */
.highlight-headers h1, 
.highlight-headers h2, 
.highlight-headers h3 {
    border: 2px solid #3b82f6 !important;
    padding: 5px !important;
}

/* Stop Animations (Important for the hero section) */
.stop-animations .animated-bg {
    animation: none !important;
}

/* Tooltip Row Styling */
.acc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}
#acc-toolbar {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: #fff;
    border-radius: 12px;
    padding: 0;
    z-index: 99999;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    color: #333;
    font-family: sans-serif;
}

#acc-toolbar h3 {
    margin: 0 !important;
    padding: 20px !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    border-bottom: 2px solid #e0e0e0 !important;
    text-align: center !important;
    display: block !important;
    color: #333 !important;
    background: #f8f8f8 !important;
    border-radius: 12px 12px 0 0 !important;
}

.acc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    text-align: right;
    color: #333;
}

.acc-row:last-of-type {
    border-bottom: none;
}

[dir="ltr"] .acc-row {
    text-align: left;
}

/* Style for the reset button to make it look professional */
.reset-btn {
    margin: 0;
    width: 100%;
    padding: 15px 20px;
    background: #333;
    color: white;
    border: none;
    border-radius: 0 0 12px 12px;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}
/* Ensure the container allows absolute positioning */
.hero-section {
    position: relative;
    height: 80vh; /* Or 100vh for full screen */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Force the video to stay in the background */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Keep it behind everything */
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.99; /* This makes the movie itself slightly transparent */
}
/* Ensure the content is visible on top */
.hero-content {
    position: relative; /* Ensures it stays above the video */
    z-index: 1; 
    background: rgba(0, 0, 0, 0.6) !important; /* The 0.6 is the opacity of the black background */
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(8px); /* Optional: adds a nice blur effect behind the text */
    color: white;
    max-width: 800px;
}
.controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Ensure images don't push things out */
.nav-logo img {
    max-width: 100%;
    height: 50px;
}
.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 10px; /* Space between logo and text */
}

.nav-brand img {
    height: 50px;
    border-radius: 8px;
}

.nav-brand span {
    font-size: 1.4rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px; /* Space between links and buttons */
}
/* This new container keeps the logo and links side-by-side */
.nav-brand-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Adjust nav-links to not take up full width */
.nav-links {
    display: flex;
    gap: 20px;
    padding: 0;
}

/* RTL Support */
[dir="rtl"] .navbar {
    direction: ltr !important;
}

[dir="rtl"] .navbar * {
    direction: rtl;
}

/* Rounding the corners of the logo */
.nav-logo img, .nav-brand img {
    height: 50px; /* or your preferred height */
    width: auto;
    border-radius: 12px; /* Adjust this number for more or less rounding */
    object-fit: cover;
    transition: transform 0.3s ease; /* Adds a nice smooth effect */
}

/* Optional: Add a slight hover effect */
.nav-logo img:hover, .nav-brand img:hover {
    transform: scale(1.05);
}
/* Vertical positioning of the content */
.hero-section {
    display: flex;
    align-items: center; /* Vertical center */
    justify-content: center;
    height: 85vh; /* Increased height slightly */
}

.hero-content {
    margin-top: -50px; /* Moves the whole block UP */
    text-align: center;
    max-width: 700px;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

/* Paragraph styling */
#hero-sub {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #f1f1f1;
}

/* The Read More Button */
.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3b82f6; /* Modern Blue */
    color: white;
    text-decoration: none;
    border-radius: 50px; /* Rounded pill shape */
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}
/* Stats Section Layout */
.stats-section {
    padding: 60px 10%;
    background-color: #fff;
    color: #333;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.stats-text {
    flex: 1;
}

.stats-text h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.stats-text h3 {
    font-size: 1.8rem;
    color: #3b82f6; /* Blue accent */
    margin-bottom: 20px;
}

/* The Numbers Grid */
.stats-grid {
    flex: 1;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #1e3a8a;
}

.stat-item .label {
    font-size: 1.1rem;
    color: #666;
}

/* Image below section */
.image-divider {
    width: 100%;
    text-align: center;
}

.full-width-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        text-align: center;
    }
    .stats-grid {
        width: 100%;
        gap: 20px;
    }
}
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    margin: 0;
    padding: 0;
}
/* Style for the button container */
#acc-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    /* Increase this value to make the icon bigger */
    font-size: 2rem; 
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
    padding: 5px 10px;
}

#acc-toggle:hover {
    transform: scale(1.1); /* Adds a slight grow effect on hover */
}

/* Style for the icon itself */
.acc-icon {
    height: 45px; /* Adjust this height to make it bigger */
    width: auto;
    filter: brightness(0) invert(1); /* Keeps it white/blue depending on your preference */
}

#acc-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Base style for the links */
.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease; /* Makes the hover smooth */
}

/* Hover Effect: Changes color and adds a subtle background */
.nav-links a:hover {
    color: #83e88f; /* Modern Blue to match your button */
    background: rgba(255, 255, 255, 0.1); /* Very light transparent background */
}

/* Optional: Active link style (shows which page you are on) */
.nav-links a:active {
    transform: scale(0.95);
}
.nav-links a {
    text-decoration: none;
    color: white;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #83e88f;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%; /* The line grows from 0 to 100% on hover */
}
.high-contrast .nav-links a:hover {
    background-color: yellow !important;
    color: black !important;
    outline: 2px solid white;
}
/* Navigation Links Font */
.nav-links a {
    text-decoration: none;
    color: white;
    /* Font Size Settings */
    font-size: 1.2rem;       /* Larger size (Standard is usually 1rem) */
    font-weight: 600;       /* Makes the text slightly thicker/bolder */
    letter-spacing: 0.5px;  /* Adds clean spacing between letters */
    
    padding: 10px 15px;
    transition: all 0.3s ease;
}

/* Website Name / Brand Font */
.nav-brand span {
    font-size: 1.6rem;       /* Even larger for the site name */
    font-weight: 800;       /* Extra bold for the brand */
    color: #ffffff;
}

/* Language Button Font */
#lang-btn {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}
/* Makes Hebrew text specifically stand out more */
[lang="he"] .nav-links a {
    font-family: 'Arial', sans-serif; /* Cleaner for Hebrew reading */
    font-size: 1.25rem; 
}
.navbar {
    height: 80px; /* Fixed height helps keep things stable */
    display: flex;
    align-items: center; /* This keeps the large text perfectly centered vertically */
    padding: 0 5%;
}
.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh; /* Adjust height as needed */
    overflow: hidden;
}
.header {
    /* This rounds all four corners equally */
    border-radius: 15px;     
    /* OR if you only want the top corners rounded */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin: 5px auto; /* Centers the header and creates space for corners to show */
    overflow: hidden;  /* Ensures children don't bleed out of the rounded corners */
}
/* Background Container */
.contact-section {
    background-image: url('image_6f8086.jpg'); /* Ensure this path is correct */
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Dark overlay to make text pop */
.contact-overlay {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.form-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* The White Card */
.form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-align: right; /* Aligns for Hebrew */
}

.form-group {
    margin-bottom: 20px;
    text-align: right;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 25px; /* Rounded inputs */
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group textarea {
    border-radius: 15px;
    resize: none;
}

/* The Green Button */
.submit-btn {
    background-color: #2d6a4f; /* Dark green from image */
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #1b4332;
}
.contact-section {
    /* Replace 'image_6f8086.jpg' with your actual image filename */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/foodLine1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps image still while scrolling */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
/* Container with Background Image */
.contact-page-wrapper {
    background-image: url('image_6f8f2b.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Subtle darkening of the photo */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.form-main-title {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* The White Card */
.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 450px;
    direction: rtl; /* Sets text to right-to-left for Hebrew */
}

.form-group {
    margin-bottom: 15px;
    text-align: right;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

/* Rounded Inputs matching the image */
.form-group input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #d1d9e6;
    border-radius: 30px; /* Fully rounded sides */
    background-color: #f0f4f8; /* Light bluish tint from your image */
    box-sizing: border-box;
}

.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #d1d9e6;
    border-radius: 15px;
    background-color: #ffffff;
    box-sizing: border-box;
    resize: none;
}

/* The Dark Green Button */
.button-container {
    text-align: center;
    margin-top: 20px;
}

.send-btn {
    background-color: #2d6a4f; /* Green color from image */
    color: white;
    padding: 12px 60px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.send-btn:hover {
    background-color: #1b4332;
    transform: translateY(-2px);
}
/* Update these in your existing CSS */
.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #d1d9e6;
    border-radius: 30px;
    background-color: #f0f4f8;
    box-sizing: border-box;
    
    /* THE FIX FOR RTL */
    direction: rtl; 
    text-align: right; 
}

/* Specific fix for phone numbers to keep numbers in order while starting from right */
.form-group input[type="tel"] {
    unicode-bidi: plaintext; 
}

.form-group textarea {
    border-radius: 15px;
    background-color: #ffffff;
    resize: none;
}
.form-main-title {
    /* Change this to any color you like (e.g., #ffffff for white) */
    color: #ffffff; 
    
    /* Optional: adds a subtle shadow to make white text readable on light backgrounds */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}/* Container for the Background Image */
.contact-page-wrapper {
    background-image: url('image_6f8f2b.jpg'); /* Ensure path is correct */
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Darker overlay for the Hero Text */
.background-overlay {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Title Color */
.form-main-title {
    color: #ffffff; /* Change this to your preferred color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    text-align: center;
}

/* The Form Card */
.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* RTL Fix for Inputs and Placeholders */
.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid #ccc;
    direction: rtl; 
    text-align: right;
    box-sizing: border-box;
}

/* Special fix for Phone numbering order */
.form-group input[type="tel"] {
    unicode-bidi: plaintext;
}

/* Green Button Styling */
.send-btn {
    background-color: #2d6a4f;
    color: white;
    padding: 12px 60px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}
/* Change the main hero title color */
#hero-title {
    color: #f3eb09; /* Current color: White */
    /* You can change this to any hex code, like #ff0000 for red */
}

/* Change the sub-text/description color */
#hero-sub {
    color: #edeeb1; /* Current color: White */
}
#hero-title {
    color: #3425d5; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adds a subtle dark outline */
}
.hero-btn {
    color: #f9e6e6; /* Text color inside the button */
    background-color: #90accc; /* Button background color */
}
.about-hero-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse; /* For RTL: Text right, Image left */
    align-items: center;
    gap: 40px;
}

.about-text-content {
    flex: 1;
    text-align: right;
}

.about-name {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.about-degree {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.about-description {
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.about-experience {
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* Pill-shaped Button */
.about-read-more {
    display: inline-block;
    padding: 10px 35px;
    border: 1px solid #333;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.about-read-more:hover {
    background-color: #333;
    color: #fff;
}

/* Image Styling */
.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-profile-img {
    width: 100%;
    max-width: 450px;
    border-radius: 25px; /* Matches the rounded corners in screenshot */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column; /* Stack vertically on small screens */
    }
    .about-text-content {
        text-align: center;
    }
}
.about-name {
    font-size: 2rem; /* Size for the full name */
    color: #1cbedb;
    margin-bottom: 5px;
}

/* This makes "היבא" much bigger and bolder */
.highlight-name {
    font-size: 3.5rem; /* Adjust this to make it even bigger */
    font-weight: 600;
    display: inline-block;
    margin-left: 10px; /* Adds space between the big text and the rest */
}

/* Optional: Adjust the rest of the name to be slightly smaller or lighter */
.about-name {
    font-weight: 400;
}
.about-detail-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-flex-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse; /* Keeps text right and image left */
    align-items: center;
    gap: 50px;
}

.about-text-box {
    flex: 1.2;
    text-align: right;
    direction: rtl;
}

/* BIG FONT FOR NAME */
.large-name {
    font-size: 4rem; /* Makes 'היבא' significantly bigger */
    font-weight: 800;
    color: #1cbedb;
;
    margin-left: 10px;
}

.main-title {
    font-size: 2.2rem;
    color: #1cbedb;
    margin-bottom: 10px;
}

.sub-degree {
    font-size: 1.3rem;
    color: #1cbedb;
    margin-bottom: 25px;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1cbedb;
    margin-bottom: 20px;
}

.experience-badge {
    font-weight: bold;
    color: #1cbedb;
    margin-bottom: 40px;
}

/* Pill Button */
.btn-pill {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #444;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.btn-pill:hover {
    background-color: #333;
    color: #fff;
}

/* Image Styling */
.about-image-box {
    flex: 1;
}

.rounded-profile-img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px; /* Rounded corners as seen in the image */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-flex-container {
        flex-direction: column;
        text-align: center;
    }
    .about-text-box {
        text-align: center;
    }
    .large-name {
        font-size: 3rem;
    }
}
/* Container and Layout */
.about-flex-container {
    display: flex;
    flex-direction: row-reverse; /* Right-to-Left layout */
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-text-box {
    flex: 1;
    text-align: right;
    direction: rtl;
}

/* BIG FONT FOR NAME */
.large-name {
    font-size: 3.5rem; /* Makes 'היבא' much bigger */
    font-weight: 600;
    color: #222;
}

.main-title {
    font-size: 1.8rem;
    color: #10c6c9;
    margin-bottom: 5px;
}

.sub-degree {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.description-text {
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.experience-badge {
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* Pill-style button from screenshot */
.btn-pill {
    display: inline-block;
    padding: 8px 30px;
    border: 1px solid #000;
    border-radius: 25px;
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
}

/* Image with rounded corners */
.rounded-profile-img {
    max-width: 450px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* Layout and Container */
.about-detail-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

/* Typography Styles */
.large-name {
    font-size: 4rem; /* Makes 'היבא' significantly bigger */
    font-weight: 600;
    color: #222;
    line-height: 1;
}

.main-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}

.sub-degree {
    font-size: 1.3rem;
    color: #777;
    margin-bottom: 30px;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Pill-style button */
.btn-pill {
    display: inline-block;
    padding: 10px 35px;
    border: 1px solid #444;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-pill:hover {
    background-color: #333;
    color: #fff;
}

/* Image with Rounded Corners */
.rounded-profile-img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px; /* Rounded corners as seen in screenshot */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Desktop Responsiveness - min-width: 769px */
@media (min-width: 769px) {
    .about-flex-container {
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        gap: 30px;
    }
    
    .about-text-box {
        flex: 2.5;
        text-align: right;
        direction: rtl;
    }
    
        .about-image-box {
        flex: 1;
    }
}

/* Mobile Responsiveness - max-width: 768px */
@media (max-width: 768px) {
    .about-flex-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .about-text-box {
        text-align: center;
        direction: rtl;
    }
    
    .large-name,
    .highlight-name {
        font-size: 3rem;
    }
}

/* Styling for 'היבא' */
.highlight-name {
    font-size: 4rem; /* As requested, kept larger */
    font-weight: 800;
    color: #10c6c9; /* A deep professional green matching your 'Send' button */
    line-height: 1;
}

/* Styling for 'אבו חלא סאלח' */
.rest-of-name {
    font-size: 2.2rem;
    font-weight: 400;
    color: #10c6c9; /* A soft dark grey for professional contrast */
    margin-right: 10px;
}

/* Optional: Add a subtle hover effect to the name */
.highlight-name:hover {
    color: #10c6c9; /* Darkens slightly when hovered */
    transition: 0.3s ease;
}
/* Background wrapper for the entire section */
.vision-wrapper {
    background-color: #e8f3f0; /* Light mint green from screenshot */
    padding: 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row; /* Image Left, Text Right */
    align-items: flex-start;
    gap: 40px;
    padding: 0 20px;
}

/* Image Container */
.vision-image-box {
    flex: 1;
}

.vision-main-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Text Container (RTL for Hebrew) */
.vision-text-box {
    flex: 1;
    direction: rtl;
    text-align: right;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    border-bottom: none;
}

.vision-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.vision-description strong {
    color: #222;
    font-weight: 700;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .vision-container {
        flex-direction: column; /* Stack image on top of text for mobile */
    }
    .vision-title {
        font-size: 2rem;
        text-align: center;
    }
    .vision-text-box {
        text-align: center;
    }
}
/* Main Section Background */
.services-wrapper {
    background-color: #e8f3f0; /* Light mint green from your screenshot */
    padding: 60px 20px;
    direction: rtl; /* Right-to-Left for Hebrew */
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

/* Flexbox Grid 1x6 */
.services-flex-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Individual Card */
.service-card {
    flex: 1; /* Ensures they all take equal width */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Image styling with rounded corners */
.service-img-holder img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #222;
}

.service-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    min-height: 40px;
}

/* Button styling matching your screenshot */
.service-read-more {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    border: 1px solid #444;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.service-read-more:hover {
    background-color: #d1e7e0; /* Subtle green highlight on hover */
    border-color: #2d6a4f;
}

/* Responsive adjustment for small screens */
@media (max-width: 1024px) {
    .services-flex-container {
        flex-wrap: wrap; /* Wraps to multiple rows on tablets/phones */
    }
    .service-card {
        flex: 1 1 30%; /* 3 items per row on tablets */
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 1 1 100%; /* 1 item per row on mobile */
    }
}
/* Container Background */
.services-wrapper {
    background-color: #e8f3f0; /* Light mint green background */
    padding: 60px 20px;
    direction: rtl; /* Right-to-Left for Hebrew */
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

/* 6x1 Vertical Stack Container */
.services-list-container {
    display: flex;
    flex-direction: column; /* Stacks cards in 6 rows */
    gap: 30px;
    max-width: 900px; /* Narrower container for better readability in 6x1 */
    margin: 0 auto;
}

/* Each Row Card */
.service-row-card {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    align-items: center;
    padding: 20px;
    gap: 25px;
}

/* Image Styling */
.service-img-holder {
    flex: 0 0 200px; /* Fixed width for the image */
}

.service-img-holder img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
}

/* Text Content Styling */
.service-text-content {
    flex: 1;
    text-align: right;
}

.service-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Pill Button */
.service-read-more-btn {
    display: inline-block;
    padding: 8px 30px;
    border: 1px solid #444;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.service-read-more-btn:hover {
    background-color: #2d6a4f; /* Green hover matching your brand */
    color: #fff;
    border-color: #2d6a4f;
}

/* Responsive for Mobile */
@media (max-width: 650px) {
    .service-row-card {
        flex-direction: column; /* Image on top of text on small screens */
        text-align: center;
    }
    .service-text-content {
        text-align: center;
    }
    .service-img-holder {
        flex: 0 0 auto;
        width: 100%;
    }
}
/* Layout Background */
.services-wrapper {
    background-color: #e8f3f0; /* Light mint green from your screenshot */
    padding: 60px 20px;
    direction: rtl; /* Right-to-Left for Hebrew */
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

/* 3x2 Grid Layout */
.services-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Exactly 2 columns */
    gap: 30px; /* Spacing between rows and columns */
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual Card Styling */
.service-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Image styling */
.service-img-holder img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Pill-shaped Button */
.service-read-more {
    display: inline-block;
    padding: 10px 40px;
    border: 1px solid #444;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: 0.3s ease;
    margin-top: auto; /* Pushes button to bottom of card */
}

.service-read-more:hover {
    background-color: #2d6a4f;
    color: #fff;
    border-color: #2d6a4f;
}

/* Mobile Responsiveness: Switch to 6x1 on small screens */
@media (max-width: 768px) {
    .services-grid-3x2 {
        grid-template-columns: 1fr; /* Single column for mobile */
    }
}
/* Update the button class used in your grid/list */
.service-read-more, .service-read-more-btn {
    display: block; /* Allows margin auto to work */
    width: fit-content; /* Shrinks to the text size */
    min-width: 160px; /* Ensures a consistent, nice "pill" size */
    max-width: 220px; /* Prevents it from getting too wide */
    margin: 20px auto 0; /* Centers the button with space above */
    
    padding: 10px 24px;
    border: 1px solid #444;
    border-radius: 50px; /* Perfect pill shape */
    
    background-color: transparent;
    color: #333;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover effect for a professional feel */
.service-read-more:hover, .service-read-more-btn:hover {
    background-color: #2d6a4f; /* Green matching your brand style */
    color: #ffffff;
    border-color: #2d6a4f;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Service Page Specific Styles */
.service-detail-wrapper {   
    background-color: #f9fbfb;
    direction: rtl;
    text-align: right;
}

.service-hero {
    background-color: #2d6a4f; /* ירוק מותג */
    padding: 5px 0 5px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: 70px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 50px 0;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.info-card h3 {
    color: #2d6a4f;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.info-card p {
    line-height: 1.8;
    color: #444;
}

/* Principles Styling */
.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.principle-item {
    background: #e8f3f0;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.principle-item span {
    background: #2d6a4f;
    color: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 15px;
    font-size: 0.8rem;
}

/* Sidebar */
.benefit-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border-right: 5px solid #2d6a4f;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.cta-btn {
    display: block;
    background: #2d6a4f;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 850px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .principles-grid {
        grid-template-columns: 1fr;
    }
}
/* Vision Page Specific Styles */
/* ==========================================
   VISION PAGE - CLEAN & MODERN STYLES
   ========================================== */

.vision-wrapper {
    background: #e8f3f0;
}

.vision-content {
    padding: 60px 20px;
    background: #e8f3f0;
    max-width: 1100px;
    margin: 0 auto;
}

/* DESKTOP LAYOUT: Image | Text | Blue Sidebar */
@media (min-width: 769px) {
    .vision-layout-container {
        max-width: 1100px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: grid;
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 30px;
        align-items: start;
    }

    .vision-image-box {
        display: block;
    }

    .vision-main-image {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .vision-main-content {
        text-align: right;
        direction: rtl;
        padding: 20px 30px;
    }

    .vision-main-title {
        color: #003366;
        font-size: 2.8rem;
        font-weight: 700;
        margin: 0 0 30px 0;
        line-height: 1.4;
    }

    .vision-main-paragraph {
        font-size: 1.15rem;
        line-height: 2;
        color: #444;
        margin: 0 0 25px 0;
        text-align: right;
    }

    .vision-main-paragraph strong {
        color: #003366;
        font-weight: 600;
    }

    .vision-sidebar-blue {
        background: linear-gradient(135deg, #2c5f7c 0%, #1e4a5f 100%);
        color: white;
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        position: sticky;
        top: 80px;
    }

    .vision-sidebar-blue h3 {
        font-size: 1.3rem;
        margin: 0 0 15px 0;
        font-weight: 600;
        opacity: 0.95;
        line-height: 1.5;
    }

    .vision-sidebar-blue h2 {
        font-size: 2rem;
        margin: 0 0 20px 0;
        font-weight: 700;
        line-height: 1.5;
    }

    .vision-sidebar-blue p {
        font-size: 1rem;
        line-height: 1.8;
        margin: 0;
        opacity: 0.95;
    }

    /* Values Container */
    .vision-values-container {
        max-width: 1100px !important;
        margin: 0 auto !important;
    }

    .values-title {
        text-align: center;
        color: #003366;
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0 0 50px 0;
        line-height: 1.4;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .vision-summary {
        max-width: 1100px !important;
        margin: 0 auto !important;
    }
}

/* MOBILE LAYOUT */
@media (max-width: 768px) {
    .vision-layout-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .vision-image-box {
        display: none;
    }

    .vision-main-content {
        text-align: center;
        padding: 20px;
    }

    .vision-main-title {
        color: #003366;
        font-size: 2rem;
        font-weight: 700;
        margin: 0 0 25px 0;
        line-height: 1.4;
    }

    .vision-main-paragraph {
        font-size: 1.05rem;
        line-height: 1.9;
        text-align: center;
        color: #444;
        margin: 0 0 20px 0;
    }

    .vision-main-paragraph strong {
        color: #003366;
    }

    .vision-sidebar-blue {
        background: linear-gradient(135deg, #2c5f7c 0%, #1e4a5f 100%);
        color: white;
        padding: 35px 25px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .vision-sidebar-blue h3 {
        font-size: 1.1rem;
        margin: 0 0 12px 0;
        line-height: 1.5;
    }

    .vision-sidebar-blue h2 {
        font-size: 1.7rem;
        margin: 0 0 15px 0;
        line-height: 1.5;
    }

    .vision-sidebar-blue p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .vision-values-container {
        padding: 0 15px;
    }

    .values-title {
        text-align: center;
        color: #003366;
        font-size: 1.9rem;
        font-weight: 700;
        margin: 0 0 35px 0;
        line-height: 1.4;
    }

    .values-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .vision-main-title {
        font-size: 1.7rem;
    }

    .vision-main-paragraph {
        font-size: 1rem;
    }

    .values-title {
        font-size: 1.6rem;
    }
}

/* Value Cards - Shared Styles */
.value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    border-right: 5px solid #2d6a4f;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-right-color: #003366;
}

.value-card h4 {
    color: #003366;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.value-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    margin: 0;
}

@media (max-width: 768px) {
    .value-card {
        padding: 30px 25px;
    }

    .value-card h4 {
        font-size: 1.25rem;
    }

    .value-card p {
        font-size: 1rem;
    }
}

/* Summary Quote */
.vision-summary {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    border: 2px dashed #ccc;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.vision-summary p {
    font-size: 1.3rem;
    line-height: 2;
    color: #003366;
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .vision-summary {
        padding: 35px 25px;
    }

    .vision-summary p {
        font-size: 1.1rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .vision-summary p {
        font-size: 1rem;
    }
}

.vision-container {
    max-width: 1000px;
    margin: 0 center;
}

/* Vision Text */
.vision-text {
    text-align: center;
    margin-bottom: 80px;
}

.vision-text h2 {
    color: #003366;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 40px 0;
    line-height: 1.3;
}

.vision-paragraph {
    font-size: 1.2rem;
    line-height: 2;
    color: #444;
    margin: 0 auto 30px auto;
    max-width: 850px;
    text-align: center;
}

.vision-paragraph strong {
    color: #003366;
    font-weight: 600;
}

/* Values Section */
.values-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #f0f0f0;
}

.values-section h2 {
    text-align: center;
    color: #003366;
    font-size: 2.3rem;
    font-weight: 700;
    margin: 0 0 50px 0;
    line-height: 1.3;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.value-card {
    background: #f9fafb;
    padding: 35px 30px;
    border-radius: 12px;
    border-right: 5px solid #2d6a4f;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-right-color: #003366;
}

.value-card h4 {
    color: #003366;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.value-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Summary Quote */
.vision-summary {
    background: linear-gradient(135deg, #eef4f9 0%, #f5f9fc 100%);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
    border: 2px solid #e0eaf3;
}

.vision-summary p {
    font-size: 1.35rem;
    line-height: 2;
    color: #003366;
    font-style: italic;
    font-weight: 500;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================== */

/* Tablets and smaller desktops */
@media (max-width: 992px) {
    .vision-hero h1 {
        font-size: 2.3rem;
    }
    
    .vision-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .vision-text h2,
    .values-section h2 {
        font-size: 2rem;
    }
    
    .vision-paragraph {
        font-size: 1.1rem;
    }
    
    .value-card {
        padding: 30px 25px;
    }
    
    .vision-summary {
        padding: 40px 30px;
    }
    
    .vision-summary p {
        font-size: 1.2rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .vision-hero {
        padding: 60px 20px;
        min-height: 280px;
        background-attachment: scroll;
    }
    
    .vision-hero h1 {
        font-size: 1.9rem;
    }
    
    .vision-hero-subtitle {
        font-size: 1rem;
        opacity: 1;
    }
    
    .vision-content {
        padding: 50px 15px;
    }
    
    .vision-text h2,
    .values-section h2 {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .vision-paragraph {
        font-size: 1.05rem;
        line-height: 1.9;
        margin-bottom: 25px;
    }
    
    .values-section {
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .value-card {
        padding: 30px 25px;
    }
    
    .value-card h4 {
        font-size: 1.25rem;
    }
    
    .value-card p {
        font-size: 1rem;
    }
    
    .vision-summary {
        padding: 35px 25px;
        margin-top: 40px;
    }
    
    .vision-summary p {
        font-size: 1.15rem;
        line-height: 1.8;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .vision-hero {
        padding: 50px 15px;
    }
    
    .vision-hero h1 {
        font-size: 1.6rem;
    }
    
    .vision-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .vision-text h2,
    .values-section h2 {
        font-size: 1.5rem;
    }
    
    .vision-paragraph {
        font-size: 1rem;
    }
    
    .value-card h4 {
        font-size: 1.15rem;
    }
    
    .value-card p {
        font-size: 0.95rem;
    }
    
    .vision-summary p {
        font-size: 1.05rem;
    }
}
.container-narrow {
    max-width: 850px; /* Decreased width */
    margin: 0 auto;   /* Centers it */
    padding: 0 20px;  /* Keeps it safe on mobile screens */
    text-align: center;
}

.container-narrow p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0; /* Slightly softer white for the hero text */
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE STYLES ===== */

/* Mobile menu toggle button - hidden by default on desktop */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px 12px;
    line-height: 1;
    margin: 0;
}

@media (max-width: 768px) {
    /* Mobile navbar adjustments */
    .navbar {
        flex-wrap: wrap;
        padding: 10px 3%;
        position: relative;
        justify-content: flex-start !important;
        align-items: center;
        gap: 8px !important;
    }
    
    .nav-logo {
        order: 1 !important;
        margin-right: 0;
        display: flex !important;
    }
    
    .controls {
        order: 2 !important;
        display: flex;
        gap: 5px;
    }
    
    .mobile-menu-toggle {
        display: inline-block !important;
        order: 3 !important;
        margin-left: auto !important;
    }
    
    #lang-btn {
        font-size: 0.7rem;
        padding: 5px 8px;
        height: auto;
        border-radius: 8px;
    }
    
    #acc-toggle {
        font-size: 1.3rem;
        padding: 2px 5px;
    }
    
    /* Logo - RIGHT (using ::after) */
    
    .nav-links {
        display: none !important;
        order: 4;
        width: 90%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        flex-direction: column !important;
        background: #2a2a2a;
        border-radius: 8px;
        margin-top: 10px;
        padding: 0 !important;
        gap: 0 !important;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links a {
        width: 100%;
        padding: 15px 20px !important;
        text-align: right;
        border-bottom: 1px solid #444;
        display: block;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        line-height: 1.5 !important;
    }
    
    [dir="ltr"] .nav-links a {
        text-align: left;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    body {
        padding-top: 60px !important;
    }
    
    /* Hero section mobile */
    .hero-section {
        height: auto;
        min-height: 50vh;
        padding: 30px 0;
    }
    
    .hero-content {
        padding: 1.2rem;
        margin: 15px;
        width: calc(100% - 30px);
        box-sizing: border-box;
    }
    
    .hero-content h1,
    #hero-title {
        font-size: 1.4rem !important;
        line-height: 1.4;
        margin-bottom: 12px;
        word-wrap: break-word;
    }
    
    .hero-content p,
    #hero-sub {
        font-size: 0.9rem !important;
        line-height: 1.6;
        margin-bottom: 18px;
        word-wrap: break-word;
    }
    
    .hero-btn {
        font-size: 0.85rem;
        padding: 10px 20px;
        display: inline-block;
    }
    
    /* Stats section mobile */
    .stats-section {
        padding: 30px 5%;
    }
    
    .stats-text h2 {
        font-size: 1.4rem !important;
        margin-bottom: 10px;
    }
    
    .stats-text h3 {
        font-size: 1.1rem !important;
        margin-bottom: 15px;
    }
    
    .stats-text p {
        font-size: 0.9rem !important;
        line-height: 1.6;
    }
    
    .stat-item .number {
        font-size: 2rem !important;
    }
    
    .stat-item .label {
        font-size: 0.85rem !important;
    }
    
    /* Accessibility toolbar mobile */
    #acc-toolbar {
        width: 85%;
        max-width: 320px;
        top: 80px;
        padding: 15px;
        font-size: 0.9rem;
        
    }
    
    #acc-toolbar h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .acc-row {
        font-size: 0.85rem;
        padding: 8px 0;
    }
    
    /* Services grid mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 20px !important;
    }
    
    .info-card h4 {
        font-size: 1.1rem !important;
    }
    
    .info-card p {
        font-size: 0.9rem !important;
        line-height: 1.6;
    }
    
    /* Content wrapper mobile */
    .content-wrapper {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    /* Sections padding */
    section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Container adjustments */
    .container {
        padding: 0 10px !important;
    }
    
    /* Ensure all text is readable */
    h1 {
        font-size: 1.8rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.2rem !important;
    }
    
    p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Video background on mobile */
    .video-bg {
        min-width: 100%;
        min-height: 100%;
    }
}


/* Extra small screens */
@media (max-width: 768px) {
    .vision-summary {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .nav-links a {
        font-size: 0.9rem !important;
        padding: 15px 20px !important;
        font-weight: 500 !important;
    }
    
    .hero-content h1,
    #hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-content p,
    #hero-sub {
        font-size: 0.85rem !important;
    }
    
    body {
        padding-top: 130px !important;
    }
}