

body {
    padding-top: 60px; /* Adjust this value based on your navbar height */
    font-size: 16pt;
    font-family: "Times New Roman", serif; 
    direction: rtl;
    background: linear-gradient(to bottom, #f5f5dc, #a57c48);
    background-attachment: fixed;
    margin: 20px;
	text-align: justify;
}




.image-frame {
  padding: 10; /* Remove extra space */
  border: none; /* Remove border */
  border-radius: 10px; /* Keep rounded corners */
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3); /* Keep only the shadow */
}


    h1, h2, h3 {
      font-size: 16pt;
    }


    .navbar {
      direction: rtl;
    }
    .navbar-nav {
      float: left; /* Adjusted to float left for RTL */
    }
    .navbar-nav > li {
      float: right !important; /* Adjusted to float left for RTL */
    }
    .navbar-brand {
      float: right; /* Brand on the right */
      font-size: 20pt !important; /* Increased font size */
      margin-top: -1px; /* Adjusted margin to align vertically */
      color: white !important; /* Font color white */
      font-weight: bold; /* Bold font */
    }
    .navbar-brand:visited {
      color: white !important; /* Keep visited color white */
    }
    .navbar-header {
      display: inline-block; /* To keep brand and links on the same line */
    }
    .navbar-nav > li > a,
    .navbar-nav > li > a:visited {
      color: white !important; /* Keep link color the same */
    }



.footer {
  text-align: center; /* Center the text */
  font-size: 12pt; 
  padding: 10px;
  margin-top: 20px;
  border-top: 2px solid #a57c48; /* Line above footer */
/*  background: #f5f5dc;  Light beige background */
  color: #5a3e2b; /* Dark earthy brown text */
}

.footer a {
  color: #a57c48; /* Earthy brown link color */
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}




.custom-hr {
  border: none;
  height: 2px; /* Thickness */
  background-color: #a57c48; /* Match footer's border color */
  margin: 20px 0; /* Add spacing above and below */
}




.col-sm-6 {
  text-align: justify;
}

.btn-warning {
  color: black;
}


.image-container {
  position: relative;
  width: fit-content;
  margin: 40px auto; /* Center horizontally */
/*   padding: 10px;	 */
  background: #f5f5dc; /* Light beige background */
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow */
  text-align: center;
}

.framed-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.quote-overlay {
  position: absolute;
  bottom: -1%;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  text-align: center;
/*  background: rgba(0, 0, 0, 0.6);  Semi-transparent black */
  color: white;
  padding: 10px;
  border-radius: 5px;

}

.quote-text {
  font-size: 18pt;
  font-weight: bold;
  margin-bottom: 5px;
  font-family: 'Tajawal', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Dark shadow effect */


}

.quote-author {
  font-size: 16pt;
  font-weight: normal;
}





.img-responsive {
  display: block; /* Ensures no inline spacing */
  max-width: 100%; /* Prevents scaling issues */
  height: auto;
  margin-left: 0 !important; /* Removes extra left margin */
  margin-right: 0 !important; /* Removes extra right margin */
  padding-left: 0 !important; /* Ensures no internal spacing */
  padding-right: 0 !important;
}




@media (max-width: 768px) {

body {
    padding-top: 80px; /* Adjust this value based on your navbar height */

  .navbar-nav {
    float: none !important;
    display: block !important;
    text-align: center; /* Center align the links */
  }
  
  .navbar-nav li {
    display: block !important;
    width: 100%; /* Ensure each link takes full width */
    text-align: center; /* Align text to center */
  }

    .navbar-brand {
    font-size: 13pt !important; /* Increased font size */
	color: white !important; /* Font color white */
    }










}




















