```css
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Montserrat', sans-serif;
line-height: 1.6;
color: #333;
overflow-x: hidden;
}

.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 30px;
}

/* Top Bar */
.top-bar {
background: #003366;
color: white;
padding: 8px 0;
font-size: 0.85rem;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
display: flex;
justify-content: space-between;
align-items: center;
}

.top-bar-left span {
margin-right: 25px;
}

.top-bar-left i {
margin-right: 8px;
color: #ff9900;
}

.top-bar-right a {
color: white;
margin-left: 15px;
transition: color 0.3s;
}

.top-bar-right a:hover {
color: #ff9900;
}

/* Header */
.header {
background: #003366;
color: white;
padding: 15px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header .container {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
}

.logo-link {
text-decoration: none;
display: flex;
align-items: center;
}

.logo {
display: flex;
align-items: center;
gap: 10px;
}

.logo-img {
height: 45px;
width: auto;
max-width: 100px;
object-fit: contain;
}

.logo-text {
display: flex;
flex-direction: column;
}

.logo-main {
font-size: 1.3rem;
font-weight: 800;
color: white;
line-height: 1.2;
}

.logo-sub {
font-size: 0.7rem;
color: rgba(255,255,255,0.8);
}

.menu-toggle {
display: none;
background: none;
border: none;
color: white;
font-size: 1.8rem;
cursor: pointer;
z-index: 1002;
}

.navbar {
flex-grow: 1;
display: flex;
justify-content: flex-end;
}

.main-menu {
display: flex;
list-style: none;
gap: 20px;
margin: 0;
padding: 0;
align-items: center;
}

.main-menu > li {
position: relative;
}

.main-menu > li > a {
color: white;
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
padding: 8px 12px;
display: flex;
align-items: center;
gap: 5px;
transition: color 0.3s;
}

.main-menu > li > a:hover,
.main-menu > li > a.active {
color: #ff9900;
}

/* Dropdown Menu */
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
background: white;
min-width: 220px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
border-radius: 8px;
opacity: 0;
visibility: hidden;
transition: all 0.3s;
list-style: none;
padding: 10px 0;
z-index: 1000;
}

.dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
}

.dropdown-menu li a {
color: #333;
text-decoration: none;
padding: 10px 20px;
display: block;
font-size: 0.85rem;
transition: all 0.3s;
}

.dropdown-menu li a:hover {
background: #f5f5f5;
color: #ff9900;
padding-left: 25px;
}

/* Hero Section */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
color: white;
background-size: cover;
background-position: center;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0,51,102,0.85) 0%, rgba(0,51,102,0.6) 100%);
z-index: 1;
}

.hero .container {
position: relative;
z-index: 2;
}

.hero-content {
max-width: 700px;
}

.hero-badge {
display: inline-block;
background: rgba(255,153,0,0.2);
color: #ff9900;
padding: 8px 20px;
border-radius: 30px;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: 20px;
border: 1px solid rgba(255,153,0,0.3);
backdrop-filter: blur(5px);
}

.hero h1 {
font-size: 4rem;
font-weight: 800;
margin-bottom: 20px;
line-height: 1.1;
}

.hero-line {
width: 100px;
height: 4px;
background: #ff9900;
margin-bottom: 25px;
}

.hero-subtitle {
font-size: 1.2rem;
margin-bottom: 30px;
opacity: 0.95;
}

.hero-buttons {
display: flex;
gap: 20px;
}

.btn {
display: inline-block;
padding: 12px 30px;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s;
font-size: 1rem;
}

.btn-primary {
background: #ff9900;
color: white;
}

.btn-primary:hover {
background: #e68a00;
transform: translateY(-3px);
}

.hero-scroll {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
color: white;
text-align: center;
animation: bounce 2s infinite;
cursor: pointer;
z-index: 2;
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
40% { transform: translateY(-30px) translateX(-50%); }
60% { transform: translateY(-15px) translateX(-50%); }
}

/* Sections */
.services-showcase,
.projects-showcase,
.career-showcase {
padding: 60px 0;
}

.section-header {
text-align: center;
margin-bottom: 40px;
}

.section-subtitle {
color: #ff9900;
font-size: 0.9rem;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
display: block;
margin-bottom: 10px;
}

.section-title {
color: #003366;
font-size: 2rem;
font-weight: 700;
line-height: 1.3;
}

/* Cards */
.services-showcase-grid,
.projects-showcase-grid,
.career-showcase-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.service-showcase-card,
.project-showcase-card,
.career-showcase-card {
position: relative;
height: 200px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 8px 15px rgba(0,0,0,0.1);
transition: transform 0.3s;
}

.service-showcase-card:hover,
.project-showcase-card:hover,
.career-showcase-card:hover {
transform: translateY(-5px);
}

.service-showcase-card img,
.project-showcase-card img,
.career-showcase-card img {
width: 100%;
height: 100%;
object-fit: cover;
}

.service-showcase-overlay,
.project-showcase-info,
.career-showcase-card .info {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,51,102,0.9), transparent);
color: white;
padding: 15px;
}

.service-showcase-overlay h3,
.project-showcase-info h3,
.career-showcase-card h3 {
font-size: 1rem;
margin-bottom: 3px;
}

.service-showcase-overlay p,
.project-showcase-info p,
.career-showcase-card p {
font-size: 0.8rem;
opacity: 0.9;
margin: 0;
}

/* Career special */
.career-showcase-card {
background: white;
padding: 20px;
height: auto;
display: flex;
flex-direction: column;
justify-content: flex-end;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.career-showcase-card.urgent {
border: 2px solid #ff9900;
}

.career-badge {
position: absolute;
top: -10px;
right: 15px;
background: #ff9900;
color: white;
padding: 4px 10px;
border-radius: 20px;
font-size: 0.7rem;
font-weight: 600;
}

.career-showcase-card h3 {
color: #003366;
margin-bottom: 10px;
}

.career-showcase-card p {
color: #666;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 8px;
}

.career-showcase-card i {
color: #ff9900;
width: 16px;
}

.career-showcase-link {
display: inline-block;
margin-top: 10px;
color: #ff9900;
text-decoration: none;
font-weight: 600;
}

/* Stats Section */
.stats-section {
padding: 60px 0;
background: white;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
text-align: center;
}

.stat-number {
font-size: 2.5rem;
font-weight: 800;
color: #ff9900;
margin-bottom: 5px;
}

.stat-label {
color: #003366;
font-size: 1rem;
font-weight: 600;
}

/* Footer */
.footer {
background: #003366;
color: white;
padding: 50px 0 20px;
margin-top: 30px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-bottom: 30px;
}

.footer-logo {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 15px;
}

.footer-logo-img {
height: 35px;
width: auto;
}

.footer-logo span {
font-size: 1.1rem;
font-weight: 700;
color: white;
}

.footer-info p {
color: rgba(255,255,255,0.8);
line-height: 1.5;
font-size: 0.85rem;
}

.footer-social {
display: flex;
gap: 10px;
margin-top: 10px;
}

.footer-social a {
color: white;
width: 30px;
height: 30px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
}

.footer-social a:hover {
background: #ff9900;
}

.footer-contact h4,
.footer-links h4 {
color: #ff9900;
margin-bottom: 15px;
font-size: 1rem;
}

.footer-contact p {
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 8px;
color: rgba(255,255,255,0.8);
font-size: 0.8rem;
}

.footer-contact i {
color: #ff9900;
width: 16px;
}

.footer-links ul {
list-style: none;
}

.footer-links li {
margin-bottom: 6px;
}

.footer-links a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: all 0.3s;
font-size: 0.8rem;
}

.footer-links a:hover {
color: #ff9900;
transform: translateX(5px);
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 15px;
display: flex;
justify-content: space-between;
align-items: center;
color: rgba(255,255,255,0.6);
font-size: 0.7rem;
}

/* Cookies */
.cookies-consent {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background: white;
padding: 15px 20px;
border-radius: 8px;
box-shadow: 0 8px 30px rgba(0,0,0,0.2);
z-index: 9999;
max-width: 90%;
display: none;
}

.cookies-content {
display: flex;
align-items: center;
gap: 15px;
flex-wrap: wrap;
justify-content: center;
}

.cookies-consent p {
color: #333;
font-size: 0.8rem;
}

.cookies-buttons {
display: flex;
gap: 8px;
}

.btn-cookies {
padding: 6px 15px;
border: none;
border-radius: 5px;
background: #ff9900;
color: white;
cursor: pointer;
font-size: 0.8rem;
}

/* Responsive (mobile) */
@media (max-width: 768px) {
.container {
padding: 0 15px;
}

.top-bar .container {
flex-direction: column;
gap: 5px;
text-align: center;
}

.top-bar-left span {
display: block;
margin: 3px 0;
}

.menu-toggle {
display: block !important;
position: absolute;
left: 15px;
top: 15px;
}

.header .container {
justify-content: center;
}

.logo-link {
margin: 0 auto;
}

.navbar {
position: fixed;
top: 0;
left: -280px;
width: 280px;
height: 100vh;
background: #003366;
transition: left 0.3s ease;
z-index: 1001;
padding-top: 70px;
box-shadow: 2px 0 10px rgba(0,0,0,0.2);
}

.navbar.show {
left: 0 !important;
}

.main-menu {
display: flex !important;
flex-direction: column;
width: 100%;
background: transparent;
}

.main-menu > li {
width: 100%;
}

.main-menu > li > a {
color: white;
padding: 15px 20px;
display: block;
text-align: left;
border-bottom: 1px solid rgba(255,255,255,0.1);
font-size: 1rem;
}

.dropdown-menu {
position: static;
opacity: 1;
visibility: visible;
box-shadow: none;
background: #002244;
display: none;
width: 100%;
}

.dropdown.active .dropdown-menu {
display: block;
}

.dropdown-menu li a {
color: rgba(255,255,255,0.9);
padding: 12px 30px;
border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero h1 {
font-size: 2rem;
}

.hero-subtitle {
font-size: 0.9rem;
}

.hero-buttons {
flex-direction: column;
}

.btn {
width: 100%;
text-align: center;
}

.services-showcase-grid,
.projects-showcase-grid,
.career-showcase-grid,
.stats-grid,
.footer-grid {
grid-template-columns: 1fr;
}

.service-showcase-card,
.project-showcase-card,
.career-showcase-card {
height: 160px;
}

.footer-logo {
justify-content: center;
}

.footer-info,
.footer-contact,
.footer-links {
text-align: center;
}

.footer-contact p {
justify-content: center;
}

.footer-bottom {
flex-direction: column;
text-align: center;
gap: 10px;
}

.section-title {
font-size: 1.5rem;
}
}

@media (max-width: 480px) {
.logo-img {
height: 30px;
}

.logo-main {
font-size: 0.9rem;
}

.hero h1 {
font-size: 1.6rem;
}

.service-showcase-card,
.project-showcase-card,
.career-showcase-card {
height: 140px;
}

.stat-number {
font-size: 1.8rem;
}
}
/* صور بطاقات الخدمات */
.service-showcase-card img,
.service-card img {
width: 100%;
height: 220px;
object-fit: cover;
transition: transform 0.5s ease;
}

.service-showcase-card:hover img,
.service-card:hover img {
transform: scale(1.05);
}

/* صور بطاقات المشاريع */
.project-showcase-card img,
.project-card img {
width: 100%;
height: 200px;
object-fit: cover;
transition: transform 0.5s ease;
}

.project-showcase-card:hover img,
.project-card:hover img {
transform: scale(1.05);
}

/* صور معرض الديكور */
.gallery-item img,
.realisation-item img {
width: 100%;
height: 200px;
object-fit: cover;
transition: transform 0.5s ease;
}

.gallery-item:hover img,
.realisation-item:hover img {
transform: scale(1.05);
}

/* صور الفريق */
.team-card img,
.direction-card img {
width: 100%;
height: 240px;
object-fit: cover;
border-radius: 10px 10px 0 0;
}

/* صور صفحة المعدات */
.engin-card img {
width: 100%;
height: 180px;
object-fit: cover;
transition: transform 0.5s ease;
}

.engin-card:hover img {
transform: scale(1.05);
}

/* صور صفحة المواد */
.materiau-card img {
width: 100%;
height: 160px;
object-fit: cover;
transition: transform 0.5s ease;
}

.materiau-card:hover img {
transform: scale(1.05);
}

/* صور صفحة "حول" */
.about-image img,
.team-intro-image img,
.founder-image img {
width: 100%;
height: 320px;
object-fit: cover;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* صور صفحة الديكور الرئيسية */
.decoration-intro-image img {
width: 100%;
height: 280px;
object-fit: cover;
border-radius: 10px;
}

/* صور المشاريع المنجزة */
.project-acheve-card img,
.project-page-card img {
width: 100%;
height: 180px;
object-fit: cover;
}

/* ===== تحسينات للشاشات الصغيرة ===== */
@media (max-width: 992px) {
.service-showcase-card img,
.service-card img {
height: 200px;
}

.project-showcase-card img,
.project-card img {
height: 180px;
}

.gallery-item img,
.realisation-item img {
height: 180px;
}

.team-card img,
.direction-card img {
height: 220px;
}

.about-image img,
.team-intro-image img,
.founder-image img {
height: 280px;
}
}

@media (max-width: 768px) {
.service-showcase-card img,
.service-card img {
height: 180px;
}

.project-showcase-card img,
.project-card img {
height: 160px;
}

.gallery-item img,
.realisation-item img {
height: 160px;
}

.team-card img,
.direction-card img {
height: 200px;
}

.engin-card img {
height: 160px;
}

.materiau-card img {
height: 140px;
}

.about-image img,
.team-intro-image img,
.founder-image img {
height: 240px;
}

.decoration-intro-image img {
height: 220px;
}
}

@media (max-width: 480px) {
.service-showcase-card img,
.service-card img {
height: 160px;
}

.project-showcase-card img,
.project-card img {
height: 140px;
}

.gallery-item img,
.realisation-item img {
height: 140px;
}

.team-card img,
.direction-card img {
height: 180px;
}

.engin-card img {
height: 140px;
}

.materiau-card img {
height: 120px;
}

.about-image img,
.team-intro-image img,
.founder-image img {
height: 200px;
}
}
@media (max-width: 768px) {
/* الحاوية العامة */
.container {
padding: 0 15px;
}

/* ===== TOP BAR ===== */
.top-bar .container {
flex-direction: column;
gap: 5px;
padding: 8px 0;
}

.top-bar-left {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 8px;
}

.top-bar-left span {
margin: 0 5px;
font-size: 0.8rem;
}

.top-bar-right a {
margin: 0 8px;
}

/* ===== HEADER ===== */
.header {
padding: 8px 0;
}

.header .container {
display: flex;
align-items: center;
justify-content: center;
position: relative;
min-height: 60px;
}

/* زر القائمة (هامبورغر) */
.menu-toggle {
display: block !important;
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
color: white;
font-size: 1.8rem;
cursor: pointer;
z-index: 1002;
}

/* اللوغو في المنتصف */
.logo-link {
margin: 0 auto;
z-index: 1001;
}

.logo-img {
height: 35px;
}

.logo-main {
font-size: 1rem;
}

.logo-sub {
font-size: 0.6rem;
}

/* القائمة الجانبية (مخفية افتراضياً) */
.navbar {
position: fixed;
top: 0;
left: -100%;
width: 280px;
height: 100vh;
background: #003366;
transition: left 0.3s ease;
z-index: 1001;
padding-top: 70px;
box-shadow: 2px 0 10px rgba(0,0,0,0.2);
}

.navbar.show {
left: 0 !important;
}

.main-menu {
display: flex !important;
flex-direction: column;
width: 100%;
background: transparent;
margin: 0;
padding: 0;
}

.main-menu > li {
width: 100%;
margin: 0;
}

.main-menu > li > a {
color: white;
padding: 15px 20px;
display: block;
text-align: left;
border-bottom: 1px solid rgba(255,255,255,0.1);
font-size: 1rem;
transition: all 0.3s;
}

.main-menu > li > a:hover {
background: rgba(255,255,255,0.1);
}

/* القوائم المنسدلة داخل الجوال */
.dropdown-menu {
position: static;
opacity: 1;
visibility: visible;
box-shadow: none;
background: #002244;
display: none;
width: 100%;
padding: 0;
}

.dropdown.active .dropdown-menu {
display: block;
}

.dropdown-menu li a {
color: rgba(255,255,255,0.9);
padding: 12px 30px;
border-bottom: 1px solid rgba(255,255,255,0.05);
font-size: 0.95rem;
}

/* ===== HERO SECTION ===== */
.hero h1 {
font-size: 2.2rem;
}

.hero-subtitle {
font-size: 1rem;
line-height: 1.5;
}

.hero-buttons {
flex-direction: column;
gap: 15px;
}

.btn {
width: 100%;
text-align: center;
padding: 12px 20px;
}

.hero-scroll {
bottom: 20px;
}

.hero-scroll span {
font-size: 0.8rem;
}

/* ===== CARDS GRID ===== */
.services-showcase-grid,
.projects-showcase-grid,
.realisation-category-grid,
.career-showcase-grid,
.decoration-services-grid,
.stats-grid,
.footer-grid {
grid-template-columns: 1fr !important;
gap: 15px;
}

/* أحجام البطاقات */
.service-showcase-card,
.project-showcase-card,
.realisation-item {
height: 180px;
}

.service-showcase-card img,
.project-showcase-card img,
.realisation-item img {
height: 180px;
}

.service-showcase-overlay,
.project-showcase-info,
.realisation-item-info {
padding: 12px;
}

.service-showcase-overlay h3,
.project-showcase-info h3,
.realisation-item-info h3 {
font-size: 0.95rem;
}

.service-showcase-overlay p,
.project-showcase-info p,
.realisation-item-info p {
font-size: 0.75rem;
}

/* بطاقات الوظائف */
.career-showcase-card {
padding: 20px;
}

.career-showcase-card h3 {
font-size: 1.1rem;
}

.career-showcase-card p {
font-size: 0.85rem;
}

.career-badge {
font-size: 0.7rem;
padding: 3px 10px;
}

/* ===== STATS ===== */
.stats-section {
padding: 40px 0;
}

.stat-number {
font-size: 2rem;
}

.stat-label {
font-size: 0.9rem;
}

/* ===== DECORATION INTRO ===== */
.decoration-intro-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.decoration-intro-image img {
height: 200px;
}

.decoration-intro-content h2 {
font-size: 1.5rem;
text-align: center;
}

.decoration-intro-content p {
text-align: center;
}

/* ===== ABOUT PAGE ===== */
.about-grid,
.team-intro-grid,
.founder-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.about-image img,
.team-intro-image img,
.founder-image img {
height: 250px;
}

.about-content h2,
.team-intro-content h2,
.founder-content h2 {
font-size: 1.5rem;
text-align: center;
}

.about-content p,
.team-intro-content p,
.founder-content p {
text-align: center;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.contact-form {
padding: 20px;
}

.contact-info {
grid-template-columns: 1fr;
}

.contact-intro h2 {
font-size: 1.5rem;
}

.contact-phone {
font-size: 1.2rem;
}

/* ===== FOOTER ===== */
.footer {
padding: 40px 0 15px;
}

.footer-logo {
justify-content: center;
}

.footer-info,
.footer-contact,
.footer-links {
text-align: center;
}

.footer-contact p {
justify-content: center;
font-size: 0.8rem;
}

.footer-social {
justify-content: center;
}

.footer-links ul {
display: flex;
flex-direction: column;
align-items: center;
}

.footer-links li {
margin-bottom: 8px;
}

.footer-bottom {
flex-direction: column;
text-align: center;
gap: 8px;
font-size: 0.7rem;
}

/* ===== COOKIES ===== */
.cookies-consent {
width: 95%;
bottom: 10px;
padding: 12px;
}

.cookies-content {
flex-direction: column;
text-align: center;
gap: 8px;
}

.btn-cookies {
padding: 5px 12px;
font-size: 0.75rem;
}

/* عناوين الأقسام */
.section-title {
font-size: 1.5rem;
margin-bottom: 20px;
}

.section-subtitle {
font-size: 0.8rem;
}

/* تعديلات إضافية للصفحات الداخلية */
.page-header {
padding: 60px 0 30px;
}

.page-header h1 {
font-size: 1.8rem;
}

.page-header p {
font-size: 0.95rem;
}
}

/* تحسينات للشاشات الصغيرة جداً */
@media (max-width: 480px) {
.logo-img {
height: 30px;
}

.logo-main {
font-size: 0.9rem;
}

.hero h1 {
font-size: 1.8rem;
}

.service-showcase-card,
.project-showcase-card,
.realisation-item {
height: 160px;
}

.service-showcase-card img,
.project-showcase-card img,
.realisation-item img {
height: 160px;
}

.stat-number {
font-size: 1.6rem;
}

.stat-label {
font-size: 0.8rem;
}

.footer-logo-img {
height: 30px;
}

.footer-logo span {
font-size: 0.9rem;
}
}
html, body {
margin: 0 !important;
padding: 0 !important;
width: 100% !important;
overflow-x: hidden;
}

/* جميع الأقسام تأخذ العرض الكامل */
section {
width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
padding-left: 0 !important;
padding-right: 0 !important;
box-sizing: border-box;
}

/* أقسام الهيرو والعناوين - ضمان خلفية ممتدة */
.hero,
.page-header,
.service-hero,
.decoration-hero,
.about-hero,
.contact-hero,
.offres-hero,
.team-hero,
.history-hero {
width: 100% !important;
margin: 0 !important;
padding-top: 80px !important;
padding-bottom: 80px !important;
background-size: cover !important;
background-position: center !important;
background-repeat: no-repeat !important;
}

/* ضبط الحاوية الداخلية (لا تؤثر على الخلفية) */
.container {
max-width: 1400px;
margin: 0 auto !important;
padding-left: 20px !important;
padding-right: 20px !important;
box-sizing: border-box;
}

/* تحسينات للجوال */
@media (max-width: 768px) {
.hero,
.page-header,
.service-hero,
.decoration-hero,
.about-hero,
.contact-hero,
.offres-hero,
.team-hero,
.history-hero {
padding-top: 60px !important;
padding-bottom: 60px !important;
}

.container {
padding-left: 15px !important;
padding-right: 15px !important;
}
}

/* إذا كان هناك أي عنصر له خلفية ولا يمتد، يمكنك إضافة كلاس مخصص هنا */
.full-width-bg {
width: 100vw !important;
margin-left: calc(-50vw + 50%) !important;
padding-left: 0 !important;
padding-right: 0 !important;
}
.page-hero {
padding: 120px 0;
background-size: cover;
background-position: center;
color: white;
text-align: center;
position: relative;
}

.page-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(0,51,102,0.85) 0%, rgba(0,51,102,0.7) 100%);
z-index: 1;
}

.page-hero .container {
position: relative;
z-index: 2;
}

.page-hero h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 15px;
text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.page-hero p {
font-size: 1.3rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
line-height: 1.6;
}

.hero-line {
width: 100px;
height: 4px;
background: #ff9900;
margin: 20px auto;
}

/* أقسام المحتوى */
.content-section {
padding: 80px 0;
}

.content-section.light-bg {
background: #f5f5f5;
}

.section-title-centered {
text-align: center;
font-size: 2.2rem;
color: #003366;
margin-bottom: 40px;
position: relative;
padding-bottom: 15px;
}

.section-title-centered::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: #ff9900;
}

/* بطاقات الصور مع النص في الأسفل (overlay) */
.image-card {
position: relative;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: transform 0.3s;
height: 280px;
}

.image-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,51,102,0.2);
}

.image-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}

.image-card:hover img {
transform: scale(1.05);
}

.image-card-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
color: white;
padding: 25px 20px;
}

.image-card-overlay h3 {
font-size: 1.4rem;
margin-bottom: 5px;
}

.image-card-overlay p {
font-size: 0.95rem;
opacity: 0.9;
}

/* شبكة البطاقات */
.cards-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 30px;
}

/* تحسينات للجوال */
@media (max-width: 768px) {
.page-hero {
padding: 80px 0;
}

.page-hero h1 {
font-size: 2.2rem;
}

.page-hero p {
font-size: 1rem;
}

.cards-grid {
grid-template-columns: 1fr;
}

.content-section {
padding: 50px 0;
}
}
Notre Histoire) ===== */

/* الهيرو الموحد */
.page-hero {
padding: 120px 0;
background-size: cover;
background-position: center;
color: white;
text-align: center;
position: relative;
}

.page-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(0,51,102,0.85) 0%, rgba(0,51,102,0.7) 100%);
z-index: 1;
}

.page-hero .container {
position: relative;
z-index: 2;
}

.page-hero h1 {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 15px;
text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.page-hero p {
font-size: 1.3rem;
opacity: 0.95;
max-width: 700px;
margin: 0 auto;
line-height: 1.6;
}

.hero-line {
width: 100px;
height: 4px;
background: #ff9900;
margin: 20px auto;
}

/* أقسام المحتوى */
.content-section {
padding: 80px 0;
}

.content-section.light-bg {
background: #f5f5f5;
}

.section-title-centered {
text-align: center;
font-size: 2.2rem;
color: #003366;
margin-bottom: 40px;
position: relative;
padding-bottom: 15px;
}

.section-title-centered::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: #ff9900;
}

/* تنسيق الصورة والنص جنباً إلى جنب */
.intro-with-image {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.intro-text-content h2 {
color: #003366;
font-size: 2rem;
margin-bottom: 20px;
}

.intro-text-content p {
color: #666;
line-height: 1.8;
margin-bottom: 15px;
}

.intro-image img {
width: 100%;
height: 350px;
object-fit: cover;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* بطاقات الصور مع النص في الأسفل */
.cards-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 30px;
}

.image-card {
position: relative;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: transform 0.3s;
height: 280px;
}

.image-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,51,102,0.2);
}

.image-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}

.image-card:hover img {
transform: scale(1.05);
}

.image-card-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
color: white;
padding: 25px 20px;
}

.image-card-overlay h3 {
font-size: 1.4rem;
margin-bottom: 5px;
}

.image-card-overlay p {
font-size: 0.95rem;
opacity: 0.9;
}

.image-card-overlay i {
color: #ff9900;
margin-right: 5px;
}

/* تحسينات للجوال */
@media (max-width: 768px) {
.page-hero {
padding: 80px 0;
}

.page-hero h1 {
font-size: 2.2rem;
}

.page-hero p {
font-size: 1rem;
}

.intro-with-image {
grid-template-columns: 1fr;
}

.cards-grid {
grid-template-columns: 1fr;
}

.content-section {
padding: 50px 0;
}

.intro-image img {
height: 250px;
}
}
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
color: white;
text-align: center;
/* الصورة الخلفية (اختر واحدة مما يلي) */
background-image: url('https://images.pexels.com/photos/1486406146926-c627a92ad1ab/pexels-photo.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
background-size: cover;
background-position: center;
background-attachment: fixed; /* تأثير ثبات الخلفية (parallax) */
}

/* طبقة التعتيم الزرقاء (overlay) */
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(0,51,102,0.85) 0%, rgba(0,51,102,0.6) 100%);
z-index: 1;
}

.hero .container {
position: relative;
z-index: 2;
}

.hero h1 {
font-size: 4rem;
font-weight: 800;
margin-bottom: 20px;
line-height: 1.1;
text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero p {
font-size: 1.3rem;
margin-bottom: 30px;
opacity: 0.95;
}

.hero-buttons {
display: flex;
gap: 20px;
justify-content: center;
}

.btn {
display: inline-block;
padding: 14px 35px;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s;
text-decoration: none;
font-size: 1rem;
}

.btn-primary {
background: #ff9900;
color: white;
box-shadow: 0 4px 15px rgba(255,153,0,0.3);
}

.btn-primary:hover {
background: #e68a00;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(255,153,0,0.4);
}

.btn-secondary {
background: transparent;
color: white;
border: 2px solid white;
}

.btn-secondary:hover {
background: white;
color: #003366;
transform: translateY(-3px);
}

/* سهم التمرير */
.hero-scroll {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
color: white;
text-align: center;
animation: bounce 2s infinite;
cursor: pointer;
z-index: 2;
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
40% { transform: translateY(-30px) translateX(-50%); }
60% { transform: translateY(-15px) translateX(-50%); }
}

/* تحسينات للجوال */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.2rem;
}

.hero p {
font-size: 1rem;
}

.hero-buttons {
flex-direction: column;
gap: 15px;
}

.btn {
width: 100%;
}
}



