/* ============================
File: styles.css
============================= */

/* DIN Bold */
@font-face {
  font-family: 'DIN';
  src: url('fonts/DIN2014Bold/font.woff2') format('woff2'),
       url('fonts/DIN2014Bold/font.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/* DIN Regular */
@font-face {
  font-family: 'DIN';
  src: url('fonts/DIN2014Regular/font.woff2') format('woff2'),
       url('fonts/DIN2014Regular/font.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

/* DIN Light */
@font-face {
  font-family: 'DIN';
  src: url('fonts/DIN2014Light/font.woff2') format('woff2'),
       url('fonts/DIN2014Light/font.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

/* DIN Extra Light Italic */
@font-face {
  font-family: 'DIN';
  src: url('fonts/DIN2014ExtraLightItalic/font.woff2') format('woff2'),
       url('fonts/DIN2014ExtraLightItalic/font.woff') format('woff');
  font-weight: 200;
  font-style: italic;
}


:root{
  --bg:#050018;
  --ink:#e7ecff;
  --muted:#aab3cf;
  --gold:#88734d;
  --gold-2:#c7a14a;
  --radius:18px;
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --container:1160px;
}

*{box-sizing:border-box}
body{margin:0; font-family: 'DIN', sans-serif;  
  font-weight: 400; /* Regular */
  line-height: 1.6;
  color: #222;color:var(--ink);background:var(--bg)
}
.container{width:100%;max-width:var(--container);margin:auto;padding:0 20px}

/* العناوين */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700; /* Bold */
  margin-bottom: 0.5em;
}

/* النصوص العادية والخفيفة */
p, a, li {
  font-weight: 300; /* Light */
  font-size: 0.9rem;
  color: #555;
}

/* الأقل أهمية */
small, span, i {
  font-weight: 200; /* Extra Light */
  font-style: italic;
  font-size: 0.85rem;
  color: #777;
}
/* Navbar */
.navbar{position:fixed;top:0;width:100%;z-index:100;background:rgba(0,0,0,0);backdrop-filter:blur(1px);transition:0.3s}
.navbar.scrolled{background:rgba(0,0,0,0.3)}
.nav-inner{display:flex;align-items:center;gap:22px;min-height:70px}
.brand img{width:90px;height:120px;border-radius:8px;}
.nav-links{margin-left:auto;display:flex;gap:26px}
.nav-links a{color:var(--ink);text-decoration:none;font-weight:600;opacity:.9}
.nav-links a:hover{opacity:1}
.btn{display:inline-block;padding:10px 18px;border-radius:999px;text-decoration:none;font-weight:700;letter-spacing:.6px}
.btn-outline{border:1px solid var(--gold);color:var(--ink);}
.btn-outline:hover{background:rgba(216,180,91,.1)}
.btn-primary{background:linear-gradient(90deg,var(--gold),var(--gold-2));color:#111;padding:12px 22px}
.nav-links a:hover {
  color: #88734d !important;
  opacity: 1;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(1px);
  transition: top 0.4s ease, background 0.3s; /* أضف top للأنيميشن */
}

.navbar.scrolled {
  background: rgba(0,0,0,0.3);
}
/* Hide mobile menu by default */
.mobile-menu-toggle,
.mobile-nav-links {
  display: none;
}

/* Show on small screens */
@media (max-width: 768px) {
  .nav-links { display: none; } /* إخفاء الروابط العادية */
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--ink);
    cursor: pointer;
    margin-left: auto;
  }

  .mobile-nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.85);
    position: absolute;
    top: 70px; /* أسفل النافبار */
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 99;
  }

  .mobile-nav-links a {
    display: block;
    padding: 12px 20px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
  }

  .mobile-nav-links a:hover {
    color: #88734d;
  }

  .mobile-nav-links.show {
    display: flex;
  }
}

/* Hero */
.hero{position:relative;height:100vh;background:url('pics/shipmain.png') center/cover no-repeat;display:flex;align-items:center;justify-content:center}
.hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,0.7);display:flex;align-items:center}
.hero-inner{z-index:2}
.headline{font-size:52px;line-height:1.05;margin:0 0 14px 0;text-transform:uppercase}
.lead{margin:0 0 16px 0;color:var(--muted)}

/* ---- Sections ---- */
.section{padding:56px 0}
.section-title{font-size:32px;letter-spacing:1px;text-transform:uppercase;margin:0 0 18px 0}
.center{display:flex;justify-content:center}
.mt-24{margin-top:24px}
.mt-28{margin-top:28px}

/* ---- About ---- */
.about{padding:100px 0;background:var(--bg)}
.about-inner{display:flex;align-items:center;gap:40px;flex-wrap:nowrap}
.about-text{flex:1 1 50%}
.about-text h2{font-size:38px;margin:0 0 18px 0;text-transform:uppercase}
.about-text p{color:var(--muted);margin:0 0 22px 0;line-height:1.6}
.about-image{flex:1 1 50%;display:flex;justify-content:flex-end}
.about-image img{max-width:100%;height:auto;border-radius:var(--radius);box-shadow:var(--shadow);object-fit:cover}

/* ---- Products ---- */
.products{padding:100px 0;background:var(--bg)}
.section-title{text-align:left; font-size:38px;margin:0 0 40px 0;text-transform:uppercase}
.products-grid{display:grid;grid-template-columns:2fr 1fr 1fr;grid-auto-rows:250px;gap:20px}
.product-item{position:relative;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.product-item img{width:100%;height:100%;object-fit:cover}
.product-large{grid-row:span 2}
.product-name {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 5px 10px;
  background: rgba(0,0,0,0.6); /* خلفية شبه شفافة لتظهر النص على الصور */
  color: #fff;
  font-size: 16px;
  text-align: center;
  border-radius: 5px;
  pointer-events: none;
}
/* Responsive */
@media(max-width:900px){
  .products-grid{grid-template-columns:1fr 1fr;grid-auto-rows:200px}
  .product-large{grid-row:span 1;grid-column:span 2}
}
@media(max-width:600px){
  .products-grid{grid-template-columns:1fr;grid-auto-rows:200px}
  .product-large{grid-column:span 1}
}

/* ---- Companies Strip ---- */
.strip{background:#88734d;padding:22px 0}
.strip-inner{display:grid;grid-template-columns:220px 1fr;align-items:center;gap:16px}
.strip-label{font-weight:800;text-transform:uppercase;color:#c9d3ff;letter-spacing:1px}
.strip-logos{display:grid;grid-auto-flow:column;gap:14px;align-items:center}
.strip-logos img{ height: 100px;
  object-fit: contain;
  filter: grayscale(10%) brightness(.94);
  opacity: .95;
  border-radius: 10px; /* عدّل الرقم حسب درجة الانحناء المطلوبة */}
@media (max-width: 768px) {
  .strip-inner {
    grid-template-columns: 1fr; /* يجعل اللوجو والليبل فوق بعض */
    gap: 12px;
  }

  .strip-logos {
    grid-auto-flow: row; /* يجعل الصور عمودية */
    grid-auto-columns: auto;
    justify-content: start; /* يبدأ من اليسار */
    gap: 10px;
  }

  .strip-logos img {
    height: 80px; /* أصغر شوي على الموبايل */
    width: auto;
  }
}
/* ---- Gallery ---- */
.projects{padding:100px 0;background:var(--bg)}
.projects-inner{max-width:1200px;margin:0 auto;padding:0 20px}
.projects-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.project-item{position:relative;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.project-item img{width:100%;height:100%;object-fit:cover;display:block}

/* Responsive */
@media(max-width:900px){
  .projects-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .projects-grid{grid-template-columns:1fr}
}


/* ---- CTA ---- */
.cta{position:relative;padding:120px 0;background:url('pics/ship3.png') center/cover no-repeat}
.cta::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,0.55)}
.cta-overlay{position:relative;z-index:2;color:#fff;text-align:left}
.cta-inner h2{font-size:42px;margin:0 0 20px;text-transform:uppercase}
.cta-inner p{margin:0 0 25px;font-size:18px;line-height:1.6;color:#f1f1f1}

/* Responsive */
@media(max-width:600px){
  .cta-inner h2{font-size:30px}
  .cta-inner p{font-size:16px}
}
/* Footer Styles */
.footer {
  background: #0d1321 !important;
  padding: 50px 20px 20px 20px;
  font-family: 'Arial', sans-serif;
  color: #ffffff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.ft-col {
  flex: 1;
  min-width: 200px;
}

.ft-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.ft-col p {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
}

.ft-col p i {
  color: #00bfff; /* أيقونات بلون واضح على الخلفية الداكنة */
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
}

.footer-bottom .small {
  font-size: 12px;
  color: #888888;
}

/* Links inside footer */
.ft-col a {
  color: #cccccc;
  text-decoration: none;
}

.ft-col a:hover {
  color: #00bfff;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }

  .ft-col {
    min-width: 100%;
  }
}


/* about us page style */
/* Hero Section */
/* ====== About Us Hero Section with Video ====== */

.AU-hero {
  
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink);
}

/* فيديو الخلفية */
.AU-hero-video {
  position: absolute;
  
  top: 30%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* طبقة غامقة فوق الفيديو */
.AU-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.AU-hero-content {
  position: relative;
  z-index: 2;
}

.AU-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--ink);
}

.AU-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  color: #111;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.3s;
}

.AU-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}
/* زر الميوت */
.AU-mute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s;
}

.AU-mute-btn:hover {
  background: rgba(0,0,0,0.8);
}


/* Journey Section */
.AU-journey {
  text-align: justify;
  max-width: var(--container);
  margin: 80px auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 20px;
}

.AU-block {
  
  display: flex;
  align-items: center;
  gap: 40px;
}

.AU-block.reverse {
  flex-direction: row-reverse;
}

.AU-text {
  flex: 1;
}

.AU-text h2 {
  color: var(--ink);
  margin-bottom: 15px;
}

.AU-text p {
  color: var(--muted);
  line-height: 1.7;
}

.AU-img {
  flex: 1;
}

.AU-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 768px) {
  .AU-block,
  .AU-block.reverse {
    flex-direction: column;
    text-align: center;
  }
}



/* ===== Our History Section ===== */
.AU-history {
  text-align: justify;
  padding: 80px 20px;
  background: var(--bg);
  color: var(--ink);
  position: relative;
}

.AU-history-title {
  text-align:center ;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
}

/* الحاوية العامة للخط العمودي */
.AU-history-container {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 0;
}

/* الخط العمودي */
.AU-history-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: var(--gold);
}

/* كل بلوك سنة + نص */
.AU-history-block {
  position: relative;
  display: grid;
  grid-template-columns: 150px 40px 1fr;
  align-items: start;
  gap: 20px;
  margin-bottom: 80px;
  margin-left: 320px;
}

/* السنة */
.AU-history-year {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
   margin-left: -150px;
   margin-top: 10px;
}

/* النقطة */
.AU-history-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  justify-self: center;
  margin-top: 5px;
   margin-left: 140px;
}

/* النص */
.AU-history-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--ink);
  margin-left: 140px;
}

.AU-history-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-left: 140px;
}

/* Responsive */
@media (max-width: 768px) {
  .AU-history-block {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
    margin-left: 71px;
  }

  .AU-history-dot {
    margin: 0 auto;
    
  }

  .AU-history-year {
    margin-bottom: 5px;
    text-align: center;
  }

  .AU-history-content {
    padding-left: 0;
  }
}

/* Partnership Strip */
.strip {
  background: #88734d;
  padding: 22px 0;
}

.strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}

.strip-label {
  font-weight: 800;
  text-transform: uppercase;
  color: #c9d3ff;
  letter-spacing: 1px;
  font-size: 1.2rem;
}

.strip-action .btn {
  padding: 10px 22px;
  background: #88734d;      /* نفس لون خلفية الستريب */
  color: #fff;              /* نص أبيض */
  border: 2px solid #fff;   /* بوردر أبيض */
  border-radius: var(--radius);
  font-weight: 700;
  transition: 0.3s;
}

.strip-action .btn:hover {
  background: #fff;         /* الخلفية تصير أبيض */
  color: #88734d;           /* نص بلون الستريب */
  border-color: #fff;       /* البوردر يبقى أبيض */
}



/* PRODUCTS PAGE STYLE*/

/* Hero */
.heroPRODUCTS{position:relative;height:80vh;background:url('pics/PRODUCTS.jpg') center/cover no-repeat;display:flex;align-items:center;justify-content:center}
.hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,0.7);display:flex;align-items:center}
.hero-inner{z-index:2}
.headline{font-size:52px;line-height:1.05;margin:0 0 14px 0;text-transform:uppercase}
.lead{margin:0 0 16px 0;color:var(--muted)}

.AU-products-section {
  padding: 100px 20px;
  background: var(--bg);
  color: var(--ink);
}

.AU-products-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
}
/* ستايل للناف */
.nav-links-products {
  display: flex;
  justify-content: center;
  gap: 20px; /* المسافة بين الأزرار */
  flex-wrap: wrap; /* حتى تنزل الروابط لسطر جديد بالشاشات الصغيرة */
  padding: 20px 0;
}

/* ستايل للرابط */
.nav-links-products a {
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* تأثير عند المرور */
.nav-links-products a:hover {
  background: var(--gold-2);
  transform: scale(1.05);
}

/* موبايل */
@media (max-width: 600px) {
  .nav-links-products a {
    width: 100%;
    text-align: center;
  }
}

/* Grid */
.AU-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Card */
.AU-product-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.AU-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* Image wrapper */
.AU-product-img-wrapper {
  position: relative;
  overflow: hidden;
}

.AU-product-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Info Icon */
.AU-info-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: #111;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}

.AU-info-icon:hover {
  background: var(--gold-2);
}

/* Overlay */
.AU-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5,0,24,0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0;
  visibility: hidden;
  border-radius: var(--radius);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.AU-product-img-wrapper:hover .AU-overlay {
  opacity: 1;
  visibility: visible;
}

/* Info blocks */
.AU-product-info {
  padding: 15px 20px;
  text-align: center;
}

.AU-product-name {
  font-size: 1.3rem;
  margin: 10px 0 5px;
  color: var(--gold-2);
  font-weight: 700;
}

.AU-product-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* contact style */

/* Hero */
.heroCONTACT{
  position: relative;
  /* تدرّج وحدات الطول للموبايل: fallback ثم أحدث */
  min-height: 100vh;   /* قديم */
  min-height: 100svh;  /* iOS/Android يحترم شريط العنوان */
  min-height: 100dvh;  /* الأحدث: ديناميكي */
  width: 100%;
  background: url('pics/contact.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,0.7);display:flex;align-items:center}
.hero-inner{z-index:2}
.headline{font-size:52px;line-height:1.05;margin:0 0 14px 0;text-transform:uppercase}
.lead{margin:0 0 16px 0;color:var(--muted)}


.AU-contact {
  padding: 100px 20px;
  background: var(--bg);
  color: var(--ink);
}

.AU-contact-container {
  max-width: var(--container);
  margin: 0 auto;
}

.AU-contact-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 60px;
  text-transform: uppercase;
}

/* Contact Info Grid */
.AU-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.AU-contact-item {
  background: rgb(245, 238, 238);
  padding: 25px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.AU-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Contact Form */
.AU-contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

#AU-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.2rem;
}

#AU-contact-form input,
#AU-contact-form textarea {
  width: 100%;
  padding: 15px 20px 15px 45px;
  border-radius: var(--radius);
  border: 1px solid #555;
  background: rgba(0,0,0,0.2);
  color: var(--ink);
  font-size: 1rem;
  resize: none;
}

#AU-contact-form textarea {
  min-height: 140px;
}

.AU-contact-btn {
  padding: 15px 25px;
  border-radius: var(--radius);
  border: none;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.AU-contact-btn:hover {
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
}

/* Contact Info Hover Animation */
.AU-contact-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.AU-contact-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}

/* Contact Form Hover Animation */
.AU-contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.AU-contact-form-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}

/* Buttons Zoom */
.AU-contact-btn {
  padding: 15px 25px;
  border-radius: var(--radius);
  border: none;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.AU-contact-btn:hover {
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  transform: scale(1.05);
}

/* Toast Notification */
.AU-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gold);
  color: #111;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 9999;
  font-weight: 700;
}

.AU-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/*comapnies page style */


/* GROUP OF COMPANIES Section */
.GOC-section {
  padding: 100px 20px;
  background: var(--bg);
  color: var(--ink);
  text-align: center;
}

.GOC-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 60px;
  letter-spacing: 2px;
  animation: fadeDown 1s ease forwards;
}

/* Grid Layout */
.GOC-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 أعمدة */
  gap: 40px;
}

/* Company Card */
.GOC-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.GOC-card:hover {
  transform: translateY(-5px) scale(1.03);
  
  background: rgba(136, 115, 77, 0.15);
}

/* Logo */
.GOC-logo {
  margin-bottom: 20px;
}
.GOC-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.GOC-card:hover .GOC-logo img {
  transform: scale(1.1);
}

/* Name */
.GOC-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-2);
  margin-bottom: 10px;
}

/* Desc */
.GOC-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
/* Responsive Grid */

/* للشاشات المتوسطة (تابليت) */
@media (max-width: 992px) {
  .GOC-grid {
    grid-template-columns: repeat(2, 1fr); /* عمودين */
    gap: 25px;
  }
}

/* للشاشات الصغيرة (موبايل) */
@media (max-width: 576px) {
  .GOC-grid {
    grid-template-columns: 1fr; /* عمود واحد */
    gap: 20px;
  }

  .GOC-card {
    padding: 20px 15px; /* تصغير الحشوات */
  }

  .GOC-name {
    font-size: 1.2rem;
  }

  .GOC-desc {
    font-size: 0.9rem;
  }

  .GOC-logo img {
    width: 65px;
    height: 65px;
  }
}
/* Animations */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* SERVICES PAGE STYLE */

/* =======================
   Services Section - New Design
======================= */
.AU-services {
  padding: 100px 20px;
  background: var(--bg);
  text-align: center;
}

.AU-services-title {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}

/* Grid */
.AU-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Service Item */
.AU-service-item {
  display: flex;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.AU-service-item:hover {
  transform: translateY(-5px) scale(1.03);
  
  background: rgba(136, 115, 77, 0.15);
}

/* Left Icon */
.AU-service-left {
  background: rgba(136, 115, 77, 0.1);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.AU-service-icon {
  font-size: 3rem;
  color: var(--gold);
}

/* Right Content */
.AU-service-right {
  padding: 30px 20px;
  text-align: left;
}

.AU-service-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-weight: 700;
}

.AU-service-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .AU-services-grid {
    grid-template-columns: 1fr;
  }

  .AU-service-item {
    flex-direction: row;
  }
}
/* Fade + Slide Up Animation */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to each service item */
.AU-service-item {
  opacity: 0; /* hidden initially */
  animation: fadeSlideUp 0.6s forwards;
}

/* Stagger animation with delay for each item */
.AU-service-item:nth-child(1) {
  animation-delay: 0.1s;
}

.AU-service-item:nth-child(2) {
  animation-delay: 0.3s;
}

.AU-service-item:nth-child(3) {
  animation-delay: 0.5s;
}


/* gallery page style */

/* Hero */
.herogallary{position:relative;height:50vh;background:url('pics/city.png') center/cover no-repeat;display:flex;align-items:center;justify-content:center}
.hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,0.7);display:flex;align-items:center}
.hero-inner{z-index:2}
.headline{font-size:52px;line-height:1.05;margin:0 0 14px 0;text-transform:uppercase}
.lead{margin:0 0 16px 0;color:var(--muted)}

/* Gallery Section */
.AU-gallery-section {
  background: var(--bg);
  color: var(--ink);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.AU-gallery-container {
  width: 100%;
  max-width: var(--container);
  text-align: center;
}

.AU-gallery-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--gold-2);
}

.AU-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.AU-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.AU-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}

.AU-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.AU-gallery-card:hover img {
  transform: scale(1.05);
}

.AU-gallery-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.AU-gallery-btn:hover {
  background: var(--gold-2);
  transform: translateX(-50%) scale(1.05);
}

/* Modal */
.AU-gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 0, 24, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.AU-gallery-modal-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.AU-gallery-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: var(--gold-2);
  cursor: pointer;
}

.AU-gallery-prev,
.AU-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(200, 161, 74, 0.8);
  color: var(--bg);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
}

.AU-gallery-prev { left: 20px; }
.AU-gallery-next { right: 20px; }

.AU-gallery-prev:hover,
.AU-gallery-next:hover {
  background: var(--gold-2);
}
