@font-face {
    font-family: 'Zain-Bold';
    src: url('Zain-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Global Styles */
body, * {
    direction: rtl;
    font-family: 'Zain-Bold', sans-serif;
    color: #071952;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
    box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}
        a {
            text-decoration: none;
            color: #071952;
        }

        header {
            background-color: #FFF; /* Light gray background for the header */
            padding: 1rem;
          
            justify-content: center; /* Center the logo */
            align-items: center;
            position: sticky; /* Make the header sticky */
            top: 0; /* Stick to the top of the viewport */
            z-index: 1000; /* Ensure it stays on top of other content */
            width: 100%;
            transition: background-color 0.3s, box-shadow 0.3s; /* Smooth transition for background color and shadow */
        }

        header.scrolled {
            background-color: #EBF4F6; /* Background color after scrolling past hero section */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
        }

        header .logo img {
            max-height: 100px; /* Adjust size to match the original logo height */
        }

        #hero {
          
            color: #071952; /* Dark navy text for hero section */
            text-align: center;
            padding: 4rem 1rem;
            box-sizing: border-box; /* Ensure padding doesn't cause overflow */
        }

        #hero h1 {
            font-family: 'Zain-Bold', sans-serif;
            font-size: 2.5rem;
        }

        #hero p {
            font-family: 'Zain-Bold', sans-serif;
            font-size: 1.2rem;
        }

        footer {
            background-color: #cdab35; /* Dark navy for footer */
            color: white;
            padding: 2rem 1rem;
            text-align: center;
            box-sizing: border-box; /* Ensure padding doesn't cause overflow */
            margin-top: auto; /* Push the footer to the bottom */
            width: 100%;
        }

        .footer-contact p {
            font-family: 'Zain-Bold', sans-serif;
            margin: 0;
        }

.btn btn-info{
border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;	
}
.container {
  color: #333;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-weight: normal;
  letter-spacing: .125rem;
  text-transform: uppercase;
}

li {
  display: inline-block;
  font-size: 1.5em;
  list-style-type: none;
  padding: 1em;
  text-transform: uppercase;
}

li span {
  display: block;
  font-size: 4.5rem;
}

.emoji {
  display: none;
  padding: 1rem;
}

.emoji span {
  font-size: 4rem;
  padding: 0 .5rem;
}

@media all and (max-width: 768px) {
  h1 {
    font-size: calc(1.5rem * var(--smaller));
  }
  
  li {
    font-size: calc(1.125rem * var(--smaller));
  }
  
  li span {
    font-size: calc(3.375rem * var(--smaller));
  }
}


