/* Base */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;
  color: #1e1e1e;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: white;
  border-bottom: 2px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.7rem;
  font-weight: bold;
  color: #c8102e;
}

.logo img {
  height: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}

/* Nav Links */
.navbar {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 1.1rem;
}

.navbar a {
  text-decoration: none;
  color: #22223b;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.navbar a:hover,
.navbar a.active {
  background: #c8102e;
  color: #fff;
}

/* Hamburger + Close Button */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #1e1e1e;
  z-index: 1101;
  margin-left: auto;
}

.close-nav {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #c8102e;
  margin-left: auto;
  cursor: pointer;
  padding: 10px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px 40px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* New Styles */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.side-img {
  width: 300px;
  max-width: 100%;
}

.rounded-img {
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.features-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
  text-align: left;
}

/* Buttons */
.cta-button {
  display: inline-block;
  background-color: #fcb900;
  color: #1e1e1e;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, background-color 0.3s;
    width: fit-content;
    /* display: inline-table; */
    align-self: center;
}

.cta-button2 {
  display: inline-block;
    background: white;
    cursor: default;
  color: #1e1e1e;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, background-color 0.3s;
    width: fit-content;
    /* display: inline-table; */
    align-self: center;
}

/* Buttons */
.cta-button3 {
  display: inline-block;
  background-color: #ffe76b;
  color: white;
      cursor: default;

  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, background-color 0.3s;
    width: fit-content;
    /* display: inline-table; */
    align-self: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  background-color: #e0a800;
}

.cta-button2:hover {
  transform: translateY(-2px);
  background-color: #eee;
}


.cta-button3:hover {
  transform: translateY(-2px);
}
/* Image Grid */
.bg-imgs {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}

.side-img {
  max-width: 100%;
  height: auto;
}

/* Section Layouts */
.section-title {
  text-align: center;
  margin: 60px 0 20px;
  font-size: 2rem;
  color: #2e8b57;
}

.about {
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

.card {
  background: #fff154;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff0000;
}

.card p {
  color: #4b5563;
}

/* Gallery */
.gallery {
  max-width: 1000px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 0 20px;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
  border: 2px solid #e5e7eb;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* CTA Section */
.cta-section {
  background-color: #2e2e2e;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta-section a {
  background-color: #fcb900;
  color: #1e1e1e;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
}

.cta-section a:hover {
  background-color: #e0a800;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 60px;
  padding: 20px;
  color: #4b5563;
  background: #f3f4f6;
}

/* Responsive Sidebar */
@media (max-width: 600px) {
  .hamburger {
    display: block;
  }
  .hide-mobile {
    display: none;
  }
  .navbar {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: fit-content;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
  }

  .navbar.closed {
    transform: translateX(-100%);
  }

  .navbar:not(.closed) {
    transform: translateX(0);
  }

  .navbar a {
    margin-bottom: 12px;
  }

  .close-nav {
    display: block;
  }

  .side-img {
    display: none;
  }

  .gallery {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 6px;
  }

  .card {
    width: 100%;
    margin: 0 auto 12px auto;
    padding: 14px 8px;
    box-sizing: border-box;
  }

  .card img.box-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 1.4rem;
  }
  @media (max-width: 600px) {
      .hide-mobile {
    display: none;
  }
  header {
    position: static !important; /* Override sticky */
  }

  .lang-switch {
    display: none; /* Hide by default */
  }

  .lang-switch.mobile-only {
    display: block !important;
    padding: 12px;
    background: #fcb900;
    font-weight: bold;
    border-radius: 6px;
    text-align: left;
    margin-top: 12px;
    color: #1e1e1e;
    text-decoration: none;
  }

  .lang-switch.mobile-only:hover {
    background-color: #c8102e;
    color: #fff;
  }
  
  
}


  footer {
    font-size: 0.8rem;
    padding: 10px;
  }
}

.box-img{
  width: -webkit-fill-available; 
}
.box-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.1);
}

.cta-section{
    background-image: url('imgs/25.png');
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

html[dir="rtl"] body {
  text-align: right;
  direction: rtl;
}

html[dir="rtl"] .navbar a {
  text-align: right;
}

html[dir="rtl"] .logo {
  flex-direction: row-reverse;
  gap: 8px;
}


.container{
    display: flex;
    width: 85%;
    justify-content: space-evenly;
    align-items: center;
    justify-self: center;
    border-radius: 20px;
    padding: 20px;
        box-shadow: 0px 0px 30px -18px #000;
}

.colored-container{
    display: flex;
    width: 85%;
    justify-content: space-evenly;
    align-items: center;
    justify-self: center;
    border-radius: 20px;
    background-color: #ffe76b;
    padding: 20px;
}

.text-container{
        width: 55%;
    text-align: left;
    font-size: 15px;
    color: #272410;
}
.text-container2{
width: 55%;
    text-align: left;
    font-size: 15px;
    color: #272410;
  }

.head-text{
    font-size: 50px;
    /* font-weight: 400; */
    font-family: sans-serif;
    justify-self: center;
    color: darkgreen;
}

.image-container{
    width:40%;
}

.img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: bottom;
    
}
.hero-section{
font-size: x-large;
}
@media (max-width: 600px) {
  .side-img,
  .rounded-img {
    display: none !important;
  }
  .hero-section {
    flex-direction: column;
    gap: 16px;
    padding: 24px 6px;
    align-items: stretch;
  }
  .hero1 {
    padding: 0 4px;
    text-align: center;
  }
 .text-container{
        width: 100%;
        background: rgba(0, 0, 0, .3);
        color: white !important;
        padding: 2px;
       text-align: -webkit-center;
  }
  
.text-container2{
        width: auto;
    text-align: left;
    font-size: 15px;
    color: #272410;
  }
  .head-text {

    margin: 10px;
}

  .colored-container{
       background-image: url(/imgs/28.png);
  }
  .image-container{
      display:none;
  }
  .hero-section{
font-size: medium;
}
}
.aboutbodyimg{
    background-image:url('/imgs/32.png');
    background-size:cover;
}
.about-us-container ul {
  list-style: none;
  padding-left: 0;
      margin: auto;
}
.about-us-container ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: -webkit-box;
    text-align: initial;
}