/* Basic CSS reset */

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css?family=Arvo');

.bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 80%;
  max-width: 600px;
  margin: auto;
  border: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
  z-index: 999;
}
#closeDialog {
  
        padding: 10px 20px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    #closeDialog:hover {
        background-color: #c0392b;
        transform: scale(1.05);
    }
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.right-align {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 20px;
}

button {
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.border {
  background-color: transparent;
  border: 1px solid #999;
  color: #333;
}


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    background-color: #e1dede;
    font-weight: 300;
    font-style: normal;
}

.navbar {
direction: ltr;
display: flex;
justify-content: space-between;
align-items: center;
background: rgba(255, 255, 255, 0.95);
padding: 5px 20px;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 12px rgba(0,0,0,0.25);
backdrop-filter: blur(6px);
border-bottom: 1px solid #ffffff22;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
    top: 3px;
}
.navbar-logo img:hover {
    background-color: rgba(167, 164, 162, 0.445);
    transform: scale(1.05) rotate(10deg);
}

.navbar-logo img {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

 .brand-name {
  font-size: 22px;
  font-weight: 500;
  color: #000000;
  font-family: "Lalezar", "Cairo", sans-serif;
}


body.dark-mode .brand-name {
  font-size: 22px;
  font-weight: 500;
  color: #FFFFFF;
  font-family: "Lalezar", "Cairo", sans-serif;
}

.navbar-links {
  display: flex;
  gap: 20px;
}

.navbar-links a {
  color: #000000;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  gap: 8px;
}
body.dark-mode .navbar-links a {
  color: #FFFFFF;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-links a:hover {
  background: #25d366;
  color: #fff;
}


body.dark-mode .burger {
 
  background: none;
  color: rgba(255, 255, 255, 0.95);
  font-size: 24px;
  border: none;
  cursor: pointer;
}

.burger {
  display: none;
  background: none;
  color: rgba(0, 0, 0, 0.95);
  font-size: 24px;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #FFF4F4;
  position: fixed;
  top: 70px;
  right: 10px;
  direction: ltr;
  border-radius: 10px;
  overflow: hidden;
  z-index: 999;
}
body.dark-mode .mobile-menu{
    background-color: rgba(33, 107, 208, 0.95);
    
    
}
.mobile-menu a {
    direction: rtl;
  color: #000000;
  padding: 12px;
  display: flex;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid #444;
}
body.dark-mode .mobile-menu a {
  color: #FFEBEB;
  padding: 12px;
  display: flex;
  text-decoration: none;
  border-bottom: 1px solid #444;
}
.mobile-menu a:hover {
  background: #25d366;
}

.custom-btn {
 width: 130px;
    height: 40px;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    font-size: 16px;
    padding: 10px 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    background: #ff2c2c00;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;

}

    
.btn-15 {
  background: #fff;
border: none;
direction: initial;
text-align: center;
z-index: 1;
height: fit-content;
font-size: 21px;
width: fit-content;
font-weight: 800;
padding: 2px;
font-style: normal;
text-decoration: none;
}
.btn-15:after {
  position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 5px;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    transition: all 0.3s ease;
	
}
.btn-15:hover {
  color: black;
}
.btn-15:hover:after {
  left: 0;
  width: 100%;
}
.btn-15:active {
  top: 2px;
}

body.dark-mode {
    background: #1c1c1c;
    color: #eee;
}
body.dark-mode .navbar{
    color: rgba(255, 25, 25, 0.95);
    background-color: rgba(33, 107, 208, 0.95);
}



body.dark-mode header,
body.dark-mode footer {
    background: #111;
}
body.dark-mode .card {
    background: #2b2b2b;
    color: #fff;
}

body.dark-mode .card2 {
    background: #2b2b2b;
    color: #fff;
}

.card2{
    background: white;
    border-radius: 10px;
    text-align: center;
    width: 150px;
    margin: 0 auto;
    padding: 10px;
    color:#000000;

    transform: translateY(40px);
    transition: transform 0.3s,
    box-shadow 0.3s, opacity 0.6s ease;
    transform: translateX(150px);
    font-size: 15px;
}

.card2.show {
    opacity: 1;
    transform: translateX(0);
}
.card2 i {
    font-size: 35px;
    color: #0077ff;
    margin-bottom: 12px;
}

.dark-mode-btn {
   position: fixed;
    bottom: 20px;
    right: 20px;
    background: #222;
    color: #fff;
    border: none;
    width: 50px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 21px;
    z-index: 2000;
}
.circle a {
    width: 60px;
    height: 60px;
    display: inline-block;
    
    background-color: #eeecec83;
    
    padding: 5px;
    
    border-radius: 12px;
    
    box-shadow: 0 2px 8px rgb(48, 44, 44);
    
    transition: all 1.3s ease;
    
}

.circle a:hover {
    
    background-color: rgba(167, 164, 162, 0.445);
    
    transform: scale(1.05) rotate(360deg);
    
}

.circle img {
    
    height: 60px;
    
    display: block;
    
    border-radius: 12px;
    
}

 .sidebar-toggle {
     position: absolute;
     top: 7rem;
     right: 20px;
     background: #34BC1B;
     color: white;
     border: none;
     padding: 10px 15px;
     font-size: 30px;
     cursor: pointer;
     z-index: 10000;
     border-radius: 4px;
 }
 
 /* #endregion */
 
 .sidebar {
     position: fixed;
     top: 0;
     right: 0;
     height: 100%;
     width: 50px;
     background-color: #2C3E50;
     color: white;
     padding: 20px;
     transform: translateX(100%);
     transition: transform 0.3s ease;
     z-index: 9999;
 }
 
 .sidebar.open {
     position: absolute;
     transform: translateX(0);
     width: 50%;
     border-radius: 15px;
 }
 
 .sidebar .logo img {
     width: 100%;
     max-width: 150px;
     height: 100px;
     margin-bottom: 0px;
 }


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* الهيدر والناف بار */
header {
    background: #333;
    color: #fff;
}

.brand {
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
}


p{
  font-style: normal;
    font-weight: bold;
}
/* بانر */
.hero {
background: url('/Media/bck4.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 200px 0;
    border-bottom-left-radius: 20px;    
    border-bottom-right-radius: 20px; 
}
body.dark-mode .hero{
            background: url('/Media/bck5.png') center/cover no-repeat;

}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: #25d366;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 22px;
    border-radius: 4px;
    position: relative;
}

/* الأقسام */
.section {
    padding: 50px 25px;
}
.section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    background-color: royalblue;
    width: fit-content;
    margin: 15px auto;
    color: white;
    font-family: cursive;
    border-radius: 10px;
    padding: 5px 10px;
}


.locations {
    padding: 50px 20px;
  border-radius: 27px;
    background-color: #FFFFFF6E;
}

.locations h2 {
        text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    background-color: royalblue;
    width: fit-content;
    margin: 15px auto;
    color: white;
    font-family: cursive;
    border-radius: 10px;
    padding: 5px 10px;
}

.locations h3 {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    margin: 0 auto;
    max-width: fit-content;
}
body.dark-mode .locations {
    padding: 50px 20px;
    border-radius: 10%;
    background-color: #242424AB;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(40px);
}
.card.show {
    opacity: 1;
    transform: translateY(0);
}
.card i {
    font-size: 35px;
    color: #0077ff;
    margin-bottom: 12px;
}

/* النموذج */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

input,
textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    font-size: 1rem;
}

button.btn-primary {
    border: none;
    cursor: pointer;
}

/* الفوتر */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    font-size: .9rem;
}

footer a {
    color: #e67e22;
    text-decoration: none;
}


h1 {
    color: white;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    border-radius: 20px;
    padding: 20px;
    position: relative;
bottom: 14px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100px;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
}

.sidebar.open {
    transform: translateX(0);
    width: 10%;
    border-radius: 15px;
}

.sidebar .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 20px;
}

.sidebar-toggle {
    position: fixed;
    top: 100px;
    display:none;
    right: 20px;
    background: #26C51E;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
    border-radius: 4px;
}

.sidebar .sidebar-links {
    list-style: none;
    display: flex;
    gap: 18px;
    padding: 17px;
    flex-direction: column;
}

.sidebar .sidebar-links li {
    margin-bottom: 15px;
}

.sidebar .sidebar-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.sidebar .sidebar-links a:hover {
    transform: translateY(-3px) scale(1.05);
    /* يتحرك لفوق ويكبر شوية */
    color: #ffd700;
    /* يغير لونه كمان */
}

.sidebar .logo img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 0px;
}

.logo a {

    display: inline-block;

    background-color: #eeecec83;

    padding: 5px;

    border-radius: 12px;

    box-shadow: 0 2px 8px rgb(48, 44, 44);

    transition: all 1.3s ease;

}

.logo a:hover {

    background-color: rgba(167, 164, 162, 0.445);

    transform: scale(1.05) rotate(360deg);

}

.logo img {

    height: 85px;

    display: block;

    border-radius: 12px;

}

.caprasimo-regular {

    font-family: "Caprasimo", serif;

    font-weight: 400;

    font-style: normal;

}
.carousel-container {
    width: 100%;
    max-width: none;
    height: 584px;
    position: fixed;
    perspective: 1000px;
    margin-top: 80px;
}
.carousel-track {

    width: 100%;

    height: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;

    transform-style: preserve-3d;

    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}
.whatsapp-container {
    text-align: center;
    position: fixed;
    /* لو الزر عائم */
    bottom: 20px;
    right: 20px;
}

.whatsapp-label {
    font-size: 14px;
    display: none;
    margin-bottom: 5px;
    color: #25D366;
    /* لون واتساب */
}

.whatsapp-float {
    font-size: 40px;
    color: white;
    background-color: #25D366;
    padding: 10px;
    border-radius: 50%;
    display: none;
    line-height: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: background-color 0.3s ease;
    width: 40px;
    height: 40px;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #1ebe57;
}
i.fab.fa-whatsapp{
    bottom: 10px;
    color: #FFFFFF;
    font-size: 30px;
    z-index: 9999;
}

.contact-info {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 327px;
  margin: 0 auto;
  margin-top: 50px;
  direction: rtl;
  margin-bottom: 50px;
  
}
body.dark-mode .contact-info,
body.dark-mode .contact-row .value{
    background: #2b2b2b;
    color: #fff;
}
body.dark-mode .contact-row .label{
      color: #007BFF;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #333;
}
body.dark-mode .contact-info h2{
    color: #FFFFFF;
}

.contact-row {
  display: grid;
  grid-template-columns: 130px 1fr; /* أول عمود للعناوين - الثاني للقيم */
  margin: 8px 0;
  align-items: center;
}

.contact-row .label {
  font-weight: bold;
  color: #007BFF;
  text-align: right; /* العنوان يمين */
}
.contact-row .phone{
    color: #0077ff;
    font-weight: bold;
}
.contact-row .value {
  color: #2c2c2c;
  text-align: center; /* القيمة شمال */
  direction: ltr; /* يخلي الأرقام تبقى بالشمال مظبوطة */
  padding-left: 5px; /* مسافة صغيرة */
}
.contact-info .contact-row .value a{
    color: black;
}

.mail .label{
  color:#0077ff;
  font-weight: bold;

}
 .value{
  color: rgb(0, 0, 0);

}
body.dark-mode .value{
  color: rgb(255, 255, 255);

}
/* start of phone screen css*/
@media (max-width: 480px) {
 .contact-info {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 290px;
  margin: 0 auto;
  margin-top: 50px;
  direction: rtl;
  margin-bottom: 50px;
  
}
 .whatsapp-container {
    text-align: center;
    position: fixed;
    /* لو الزر عائم */
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
.dark-mode-btn {
   position: fixed;
    bottom: 20px;
    right: 20px;
    background: #222;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 21px;
    z-index: 2000;
}
.whatsapp-label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #25D366;
    /* لون واتساب */
}

.whatsapp-float {
    font-size: 40px;
    color: white;
    background-color: #25D366;
    padding: 10px;
    border-radius: 50%;
    display: inline-block;
    line-height: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: background-color 0.3s ease;
    width: 30px;
    height: 30px;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #1ebe57;
}
 
 
 
  .hero {
background: url('/Media/Bg1234.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 0;
    border-bottom-left-radius: 20px;    
    border-bottom-right-radius: 20px; 
}
body.dark-mode .hero{
            background: url('/Media/Bg123.png') center/cover no-repeat;

}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero .container {
    position: relative;
    z-index: 2;
}

 
  h1 {
    font-size: 22px;
  }
  .gallery img {
    height: 150px;
  }
    body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'tajwal' sans-serif;
}
.center-align {
    display: none;
}
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        box-shadow: -0px -7px 50px #3A4CFF;
        position: fixed;
        left: 0;
        right: 0;
        top: 53.3rem;
        padding: 10px 6px;
    }

    body {

        padding: 0px;

        margin: 0px;

    }

 .sidebar-toggle {
     position: absolute;
     display: none;
     top: 2rem;
     right: 20px;
     background: #19B924;
     color: white;
     border: none;
     padding: 10px 15px;
     font-size: 30px;
     cursor: pointer;
     z-index: 10000;
     border-radius: 4px;
 }
 
 /* #endregion */
 
 .sidebar {
     position: fixed;
     top: 0;
     right: 0;
     height: 100%;
     width: 50px;
     background-color: #2C3E50;
     color: white;
     padding: 20px;
     transform: translateX(100%);
     transition: transform 0.3s ease;
     z-index: 9999;
 }
 
 .sidebar.open {
     position: absolute;
transform: translateX(0);
width: 50%;
height: 68%;
right: -12px;
border-radius: 15px;
 }
 
 .sidebar .logo img {
     width: 100%;
     max-width: 150px;
     height: 100px;
     margin-bottom: 0px;
 }

    .category-buttons a {

        padding: 10px 16px;

        font-size: 14px;

    }



    .info {

        font-size: 14px;

    }



    .logo img {

        height: 40px;
        width: auto;
    }

}
@media (max-width: 600px) {
    /* #region html and body */

    .contact-info {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 290px;
  margin: 0 auto;
  margin-top: 50px;
  direction: rtl;
  margin-bottom: 50px;
  
}
.dark-mode-btn {
   position: fixed;
    bottom: 20px;
    right: 20px;
    background: #222;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 21px;
    z-index: 2000;
}
  .whatsapp-container {
    text-align: center;
    position: fixed;
    /* لو الزر عائم */
    bottom: 130px;
    right: 25px;
    z-index: 9999;
    font-weight: bold;
}

.whatsapp-label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #25D366;
    z-index: 9999;
    /* لون واتساب */
}


.whatsapp-float {
        position: fixed;
        bottom: 86px;
        right: 20px;
        background-color: #25D366;
        color: white;
        font-size: 26px;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 60px;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transition: background-color 0.3s ease;
    }

i.fab.fa-whatsapp{
    font-size: 35px;
    position: relative;
    left: 6px;
color: #FFFFFF;
z-index: 9999;

}

  
/* #region hero */

.hero {
background: url('/Media/Bg1234.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 0;
    border-bottom-left-radius: 20px;    
    border-bottom-right-radius: 20px; 
}
body.dark-mode .hero{
            background: url('/Media/Bg123.png') center/cover no-repeat;

}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero .container {
    position: relative;
    z-index: 2;
}


/* #end region */

}
@media (max-width: 768px) {
.dark-mode-btn {
   position: fixed;
    bottom: 20px;
    right: 20px;
    background: #222;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 21px;
    z-index: 2000;
}
  .whatsapp-container {
    text-align: center;
    position: fixed;
    /* لو الزر عائم */
    bottom: 130px;
    right: 25px;
    z-index: 9999;
    font-weight: bold;
}
.contact-info {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 290px;
  margin: 0 auto;
  margin-top: 50px;
  direction: rtl;
  margin-bottom: 50px;
  
}
.whatsapp-label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #25D366;
    z-index: 9999;
    /* لون واتساب */
}


.whatsapp-float {
        position: fixed;
        bottom: 86px;
        right: 20px;
        background-color: #25D366;
        color: white;
        font-size: 26px;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 60px;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transition: background-color 0.3s ease;
    }

i.fab.fa-whatsapp{
    left: 6px;
    font-size: 35px;
    position: relative;
color: #FFFFFF;
z-index: 9999;
}



.hero {
background: url('/Media/Bg1234.png') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 0;
   border-bottom-left-radius: 20px;    
    border-bottom-right-radius: 20px; 
}
body.dark-mode .hero{
            background: url('/Media/Bg123.png') center/cover no-repeat;

}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero .container {
    position: relative;
    z-index: 2;
}

 
 
  .sidebar-toggle {
    display: none;
    top: 2rem;
    right: 20px;
  }
  .navbar-links {
    display: none;
  }
  .burger {
    display: block;
  }
 
  .center-align {
    display: none;
  }

  .btn-primary {
    display: none;
  }

  h1 {
    top: 100px;
    font-size: 22px;
  }

  .nav-container {
    top: 90%;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 2000;
  }
}
@media (max-width: 575.98px) {
.dark-mode-btn {
   position: fixed;
    bottom: 20px;
    right: 20px;
    background: #222;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 21px;
    z-index: 2000;
}
.contact-info {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 290px;
  margin: 0 auto;
  margin-top: 50px;
  direction: rtl;
  margin-bottom: 50px;
  
}
  .card {
    width: 220px;
    height: 160px;
  }
}
/* موبايلات وتابلت متوسط - عرض أقل من 768px */
@media (max-width: 767.98px) {
.contact-info {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 280px;
  margin: 0 auto;
  margin-top: 50px;
  direction: rtl;
  margin-bottom: 50px;
  
}
.dark-mode-btn {
   position: fixed;
    bottom: 20px;
    right: 20px;
    background: #222;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 21px;
    z-index: 2000;
}
  .card {
    width: 240px;
    height: 160px;
  }
}
