/* your styles go here */
/* Example site test */

.box-image-text .image {
  min-height: 190px;
  max-height: 190px;
}
.padding-horizontal {
  padding-left: 20px;
  padding-right: 20px;
}

.center-image {
  display: block;
  margin: 0 auto;
  width: 60%;
}

.center-between {
  display: flex;
  justify-content: space-around;
}

.box-image-text .image img {
  max-height: 190px;
  min-height: 190px;
  object-fit: cover;
  min-width: 250px;
  /* min-width: 200px; */

  margin: auto;
}

.box-simple {
  min-height: 230px;
}

html[dir="rtl"] {
  text-align: right;
  direction: rtl;
}
/* Ensure that the carousel displays correctly */
.text-rtl {
  direction: rtl; /* Makes the text flow right-to-left */
  text-align: justify; /* Aligns text to the right */
}

.text-ltr {
  direction: ltr; /* Makes the text flow right-to-left */
  text-align: justify; /* Aligns text to the right */
}


.text-rtl-nojustify {
  direction: rtl; /* Makes the text flow right-to-left */
  text-align: right; /* Aligns text to the right */
  font-size: 20px;
}

.text-ltr-nojustify {
  direction: ltr; /* Makes the text flow right-to-left */
  text-align: left; /* Aligns text to the right */
  font-size: 20px;
}


.text-rtl-font {
  direction: rtl; /* Makes the text flow right-to-left */
  text-align: justify; /* Aligns text to the right */
  font-size: 20px; 
}

.text-ltr-font {
  direction: ltr; /* Makes the text flow right-to-left */
  text-align: justify; /* Aligns text to the right */
  font-size: 20px; 
}

.author-container {
  text-align: center; /* Center align text */
  padding: 15px; /* Add padding around the items */
}

.author-container img {
  max-width: 100%; /* Ensure images are responsive */
  border-radius: 50%; /* Make images circular, if desired */
  height: auto; /* Maintain aspect ratio */
}

.auth {
  display: flex;

  justify-content: center;
}
.centerlized {
  display: flex; /* Enable flexbox */
  flex-direction: column; /* Arrange children in a column */
  align-items: center; /* Center items horizontally (optional) */
  justify-content: flex-start; /* Align items to the start vertically */
  gap: 10px; /* Optional: Add space between items */
  padding: 10px; /* Optional: Add padding around the container */
  width: 100%; /* Ensure the container takes full width */
  max-width: 500px; /* Optional: Set a max width */
  margin: 0 auto;
  /* justify-content: center; */
  /* align-items: center; */
}
.makerow {
  display: flex;
}

.custom-size {
  width: 300px; /* Set your desired width */
  height: 300px; /* Set your desired height */
  object-fit: cover; /* This property maintains the aspect ratio and covers the container */
  max-width: 100%; /* Makes the image responsive (scales down on small screens) */
  height: auto;
}

.border-img {
  border-radius: 10%;
  box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.1);
  
}
.bold-row {
  font-weight: bold;
  font-size: large;
  color: white;
}
.centerlized1{
  display: flex; /* Enable flexbox */
  flex-direction: column; /* Arrange children in a column */
  align-items: center; /* Center items horizontally (optional) */
  justify-content: center; /* Align items to the start vertically */
  gap: 10px; /* Optional: Add space between items */
  padding: 10px; /* Optional: Add padding around the container */
  width: 100%; /* Ensure the container takes full width */
  margin: 0 auto;
}




.fixed-container {
  width: 200px; 
  height: 200px; 
  overflow: hidden; 
}

.img-responsive.custom-size {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the container while maintaining aspect ratio */
  display: block;
}


.flex-row {
  display: flex;
  align-items: center;
}

/* RTL specific adjustments */
.rtl-layout .social {
  text-align: left;
}


.rtl {
  direction: rtl;
  text-align: right;
}

.partners-section {
  margin: 0 auto;  /* Center the section */
  transform: scale(0.8);  /* Slightly shrink everything inside */
}

/* Card hover effect */
/* .card {
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
} */

/* Custom bullet points for RTL/LTR */
.text-rtl li::before {
  content: "◀ ";
}
.text-ltr li::before {
  content: "▶ ";
}

.card {
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding: 6px;
}

.image-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.inline-image {
  flex: 1;
  margin: 0 !important; /* Override default figure margins */
}
.inline-image img {
  width: 100%;
  height: auto;
}


.language-switcher {
  margin-left: 10px;
}

.language-switcher .btn {
  padding: 10px 15px;
  margin-top: 8px;
  margin-bottom: 8px;
}

/* For mobile view */
@media (max-width: 767px) {
  .language-switcher .btn {
      margin: 5px 15px;
      display: block;
      width: calc(100% - 30px);
  }
}






/* Modern Form Styling */
.contact-form {
  width: 100%; /* Takes full width of parent */
  max-width: 100%; /* Overrides any max-width restriction */
  margin: 0 auto; /* Centers form if parent has padding */
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box; /* Ensures padding doesn't add to width */
}

.form-title {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.5rem;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #2980b9;
}

.response-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
  display: none;
}

/* Success/Error States */
.response-message.success {
  background: #d4edda;
  color: #155724;
  display: block;
}

.response-message.error {
  background: #f8d7da;
  color: #721c24;
  display: block;
}





.zoho-form {
  margin: 2rem auto;
  max-width: 800px;
}
.zoho-form iframe {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}




