@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 8px;             
  height: 8px;           
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #3a6493;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #003f86;
}


.form button {
  border: none;
  background: none;
  color: #8b8ba7;
}

.form {
  --timing: 0.3s;
  --width-of-input: 200px;
  --height-of-input: 40px;
  --border-height: 2px;
  --input-bg: #fff;
  --border-color: #4d7cb1 ;
  --border-radius: 30px;
  --after-border-radius: 1px;
  position: relative;
  width: var(--width-of-input);
  height: var(--height-of-input);
  display: flex;
  align-items: center;
  padding-inline: 0.8em;
  border-radius: var(--border-radius);
  transition: border-radius 0.5s ease;
  background: var(--input-bg,#fff);
}
/* styling of Input */
.input {
  font-size: 0.9rem;
  background-color: transparent;
  width: 100%;
  height: 100%;
  padding-inline: 0.5em;
  padding-block: 0.7em;
  border: none;
}
/* styling of animated border */
.form:before {
  content: "";
  position: absolute;
  background: var(--border-color);
  transform: scaleX(0);
  transform-origin: center;
  width: 100%;
  height: var(--border-height);
  left: 0;
  bottom: 0;
  border-radius: 1px;
  transition: transform var(--timing) ease;
}
/* Hover on Input */
.form:focus-within {
  border-radius: var(--after-border-radius);
}

input:focus {
  outline: none;
}
/* here is code of animated border */
.form:focus-within:before {
  transform: scale(1);
}

.reset {
  border: none;
  background: none;
  opacity: 0;
  visibility: hidden;
}

input:not(:placeholder-shown) ~ .reset {
  opacity: 1;
  visibility: visible;
}

.form svg {
  width: 17px;
  margin-top: 3px;
}

body {
   font-family: "Jost", sans-serif;
  color:#4d7cb1 ;
  scrollbar-width: thin;              
  scrollbar-color: #3a6493 #f1f1f1;   
}

html[dir="rtl"] body {
  font-family: "Cairo", sans-serif !important;
}

html[dir="rtl"] .btn-text{
  font-family: "Cairo", sans-serif !important;
}

/* Navbar */
.navbar {
  background: #ffffff; 
  padding: 15px 40px;
  border-bottom: 1px solid #ebebeb;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.container img{
    width: 50px;
}

.nav-links {
  display: flex;
  gap: 20px;
  color:#4d7cb1 ;
}

.nav-links a {
  text-decoration: none;
  font-size: 18px;
  color:#2c3e50 ;
  font-weight: bold;
}

.nav-links a:hover {
  color: #4d7cb1;
}

.nav-links .active{
  color: #4d7cb1;
}

.search-box {
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
}

.login-btn {
  background: linear-gradient(to right, #4d7cb1, #649bd6); 
  color: #ffffff;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: scale(1);
}

.login-btn:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}



.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* .nav-actions input {
    padding: 15px;
    border: 1px solid #ebebeb;
    border-radius: 10px;
}

.nav-actions input:focus {
  outline: none;
  box-shadow: 0 0 0 1px #95c6fd;
  border-color: #4d7cb1;
} */

.nav-actions{
  display: flex;
  gap: 10px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 15px;
  background: #ffffff;
  padding: 15px 20px;
  border-top: 1px solid #ebebeb;
}

.mobile-menu .nav-links2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu .nav-links2 a {
  text-decoration: none;
  font-size: 16px;
  color: #2c3e50;
  font-weight: bold;
}

.nav-links2 a:hover {
  color: #4d7cb1;
}

.nav-links2 .active{
  color: #4d7cb1;
}

.mobile-menu .search-box2 {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ebebeb;
  font-size: 14px;
}


/* Optional styling for dropdown */
.custom-lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: linear-gradient(to right, #4d7cb1, #649bd6);
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.lang-btn i {
  font-size: 18px;
}

.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 5px;
  list-style: none;
  padding: 0;
  z-index: 1000;
  min-width: 120px;
}

.lang-menu li {
  padding: 10px;
  cursor: pointer;
  color: #333;
}

.lang-menu li:hover {
  background-color: #f0f0f0;
}


/* RTL helper */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .nav-links,
[dir="rtl"] .nav-links2 {
  flex-direction: row-reverse;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  color: #fff;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/hero-bg.jpg') no-repeat center center/cover;
  opacity: 0.2; 
  z-index: -1;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #4d7cb1;
}

.hero-text p {
  font-size: 16px;
  color: #451519;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 600;
}

.hero-btn {
  background: linear-gradient(to right, #4d7cb1, #649bd6);
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
   transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: scale(1);
}

.hero-btn:hover {
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hero-slider {
  flex: 1;
  min-width: 300px;
}

.swiper {
  width: 100%;
  height: 300px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide-card {
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #e0dfdf;
  text-align: center;
  transition: 0.3s ease;
  position: relative;
  height: 90%;
  color: var(--text-color);
}

.slide-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.slide-card p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.login-hover-btn {
  display: none;
  background-color: var(--text-color);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
  position: absolute;
  bottom: 20px;
  left: 50%;
  font-weight: bold;
  transform: translateX(-50%);
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.slide-card:hover .login-hover-btn {
  display: inline-block;
}

/* Optional: Make sure Swiper slides are sized nicely */
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

/* Container */
  .services-section {
    padding: 60px 20px;
    background: #fff;
    color: #222;
  }
   .services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  /* Head & Paragraph */
  .section-head {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #3a6493;
  }
  .section-para {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 50px auto;
    text-align: center;
    color: #555;
  }

  /* Cards Wrapper */
  .cards-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Each Card */
  .service-card {
    flex: 1 1 300px;
    max-width: 350px;
    /* background: #f9f9f9; */
    border-radius: 12px;
    padding: 30px 25px 40px;
    box-shadow: 0 4px 10px rgba(73, 73, 73, 0.11);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
  }

  /* Icon Wrapper */
  .icon-wrapper {
    border: 3px solid currentColor;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    transition: color 0.3s ease, border-color 0.3s ease;
  }

  /* Headings */
  .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-align: center;
  }

  /* Paragraph */
  .service-card p {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  /* Link with icon and underline */
  .card-link {
    font-weight: 600;
    font-size: 1rem;
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    padding-bottom: 3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, border-color 0.3s ease;
  }

.sec-stats {
  background-color: #f2f2f2;
  padding: 40px 20px;
}

.stats-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  border-radius: 12px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
}

.icon-colored {
  color: #982223;
  font-size: 40px;
  margin-bottom: 10px;
}

.stat-count {
  font-size: 2rem;
  font-weight: bold;
  margin: 5px 0;
  color: #333;
}

.stat-item p {
  color: #555;
  font-size: 0.8rem;
}

  /* Card 1 */
  .service-card-1 {
    color: #982223;
  }
  .service-card-1:hover {
    background-color: #982223;
    color: #fff;
  }
  .service-card-1:hover .icon-wrapper {
    color: #fff;
    border-color: #fff;
  }
  .service-card-1:hover .card-link {
    color: #fff;
    border-color: #fff;
  }

  /* Card 2 */
  .service-card-2 {
    color: #4d7cb1;
  }
  .service-card-2:hover {
    background-color:#4d7cb1;
    color: #fff;
  }
  .service-card-2:hover .icon-wrapper {
    color: #fff;
    border-color: #fff;
  }
  .service-card-2:hover .card-link {
    color: #fff;
    border-color: #fff;
  }

  /* Card 3 */
  .service-card-3 {
    color: #451519;
  }
  .service-card-3:hover {
    background-color: #451519;
    color: #fff;
  }
  .service-card-3:hover .icon-wrapper {
    color: #fff;
    border-color: #fff;
  }
  .service-card-3:hover .card-link {
    color: #fff;
    border-color: #fff;
  }

  .service-card:hover p{
    color: #fff;
  }

   .legal-partner-section {
    padding: 60px 20px;
    background-color: #fefefe;
    color: #222;
  }

  .legal-partner-section .container {
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #451519;
    place-self: center;
  }

  .partner-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .partner-text {
    flex: 1 1 250px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
  }

  .partner-image {
    flex: 1 1 200px;
    text-align: center;
  }

  .partner-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
  }

  .why-musanadah {
    padding: 20px 20px;
    background-color: #f9f9f9;
  }

  .why-musanadah .container{
    display: flex;
    flex-direction: column;
  }

  .why-musanadah .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #982223;
  }

  .why-musanadah .why-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto 40px auto;
  }

  .why-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .why-image {
    flex: 1 1 50%;
    text-align: center;
  }

  .why-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .why-features {
    flex: 1 1 50%;
  }

  .features-list {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    color: #333;
  }

  .features-list li {
    margin-bottom: 10px;
    padding-left: 1.2rem;
    position: relative;
  }

  .features-list li::before {
   content: "\f058"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #982223; /* red */
  margin-right: 3px;
  margin-left: 3px;

  }

  .why-cta {
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #222;
    margin-top: 40px;
  }

  .vision-mission-tabbed {
  padding: 30px 20px;
  background-color: #fff;
}

.vision-mission-tabbed .container{
    flex-direction: column;
    width: 80%;
    justify-self: center;
}

.vm-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-self: flex-start;
}

.vm-tab {
  padding: 10px 20px;
  font-size: 1.1rem;
  border: none;
  border-bottom: 2px solid transparent; /* initially no underline */
  color: #000; /* always black */
  cursor: pointer;
  background: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.vm-tab.active {
  border-bottom: 3px solid #4d7cb1; /* thicker line under active */
  font-weight: 600;
  color: #4d7cb1; 
}

.vm-content-box{
  display: flex;
  gap: 20px;
  align-items: center;
}

.vm-content-box2 {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #ccc;
  padding: 25px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.vm-content-box2:hover h3{
    color: white;
}

.vm-content-box2:hover p{
    color: white;
}

.vm-content-box2:hover{
    background: linear-gradient(to right, #4d7cb1, #649bd6);
}

.vm-content-box2 h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.vm-content-box2 p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}

.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.faq-left {
  flex: 1 1 40%;
}

.faq-left h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #4d7cb1;
}

.faq-left p {
  font-size: 1rem;
  color: #666;
}

.faq-right {
  flex: 1 1 50%;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4d7cb1;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 0.95rem;
  color: #444;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
  padding: 30px 20px;
  background: linear-gradient(135deg, #003f86, #502c2cb6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
}
.cta-text {
  flex: 1 1 50%;
}
.cta-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.cta-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
}
.cta-btn {
  background: #fff;
  color: #4d7cb1;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}
.cta-btn:hover {
  background: #4d7cb1;
  color: #fff;
}
.cta-image img {
  width: 50%;
}
.cta-image{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Footer */
.footer {
  color: #451519;
  padding-top: 30px ;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
  padding: 30px 30px;
}
.footer-brand img{
  width: 30%;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin: 8px 0;
}
.footer-links ul li a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links ul li a:hover {
  color: #4d7cb1;
  text-decoration: underline;
}
.footer-social a {
  margin-right: 10px;
  color: #3a6493;
  font-size: 1.6rem;
  transition: transform 0.3s, color 0.3s;
}
.footer-social a:hover {
  color: #451519;
  transform: scale(1.2);
}
.footer-bottom {
  text-align: center;
  padding: 20px;
  background-color: #ebebeb;
  font-size: 0.9rem;
}
.footer-links h4{
  border-bottom: 3px solid #4d7cb1;
  font-size: 18px;
  font-weight: 600;
}

.footer-social h4{
   border-bottom: 3px solid #4d7cb1;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.slide-content {
  max-width: 700px;
  margin: auto;
  text-align: center;
}


.partner-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.info-swiper-section {
  flex: 1 1 500px;
  min-width: 280px;
  max-width: 700px;
}

.partner-image {
  flex: 1 1 300px;
  min-width: 250px;
  text-align: center;
}

.partner-image img {
  max-width: 100%;
  height: auto;
}

/* Swiper internal adjustments */
.slide-content {
  text-align: left;
  padding: 20px;
  border:1px solid #00000013;
  border-radius: 30px;
  height: 300px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.hero-features li {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 999px;
  font-size: 0.95rem;
  color: #333;
  transition: background 0.3s ease;
}

.hero-features li i {
  color: #982223;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

html[dir="rtl"] .hero-features li {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-features li i {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}


@media (max-width: 768px) {
  .partner-content {
    flex-direction: column;
  }

  .slide-content {
    text-align: center;
  }

  .hero-features{
    justify-content: center;
  }
}

.sub-head {
  font-size: 1.1rem;
  color: #982223;
  margin-bottom: 5px;
}

.main-head {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.slide-content p {
  font-size: 1rem;
  color: #555;
}

/* Style default Swiper arrows */
.swiper-button-prev,
.swiper-button-next {
  background-color: #451519;
  color: #ffffff;
  width: 25px !important;
  height: 25px !important;
  border-radius: 50%;
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Optional: hover effect */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #5b1b1f;
}

/* Hide default arrow shapes behind them */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-next, .swiper-button-prev{
  top:95% !important;
}

.swiper-button-prev{
  left: 89% !important;
}


@media (max-width: 768px) {
  .main-head {
    font-size: 1.5rem;
  }

  .custom-swiper-nav {
    font-size: 1.2rem;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }
  .cta-text,
  .cta-image {
    flex: 1 1 100%;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-left, .faq-right {
    flex: 1 1 100%;
  }
}


@media (max-width: 768px) {
  .vm-tab {
    flex: 1 1 100%;
    text-align: center;
  }

  .vm-content-box {
    padding: 20px;
  }

  .vm-content-box h3 {
    font-size: 1.5rem;
  }

  .vm-content-box p {
    font-size: 1rem;
  }
}


  @media (max-width: 768px) {
    .why-content {
      flex-direction: column;
      gap: 30px;
    }

    .why-image, .why-features {
      flex: 1 1 100%;
    }

    .why-musanadah .section-title {
      font-size: 2rem;
    }

    .why-intro,
    .why-cta {
      font-size: 1rem;
    }
  }

  @media (max-width: 768px) {
    .partner-content {
      flex-direction: column;
    }

    .partner-text, .partner-image {
      flex: 1 1 100%;
      text-align: center;
    }

    .partner-text {
      font-size: 1rem;
    }
  }

  /* Responsive */
  @media (max-width: 900px) {
    .cards-wrapper {
      gap: 20px;
    }
  }
  @media (max-width: 700px) {
    .cards-wrapper {
      flex-direction: column;
      align-items: center;
    }
    .service-card {
      max-width: 90%;
    }
  }


/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .search-box {
    display: none;
  }

  #login-button {
    display: none;
  }

  .hamburger {
    display: block;
    font-size: 24px;
    color: #4d7cb1;
  }

  .mobile-menu.active {
    display: flex;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
    color: #3a6493;
  }

  .hero-text p {
    font-size: 16px;
    color: #451519;
  }

  .swiper, .swiper-wrapper, .swiper-slide {
    width: 350px;
  }

  .swiper-button-prev{
    left: 80% !important;
  }

  .info-swiper-section{
    flex: 1 1 350px;
  }

  .hero-slider{
    width: 80%;
  }

  .tab-button{
    font-size: 14px;
  }


  .vm-content-box{
    flex-direction: column;
  }

  .vision-mission-tabbed .container{
    width: 100%;
  }

  .vm-tab{
    font-size: 14px;
  }

  .vm-tabs{
    align-self: center;
  }

   .nav-actions .form {
    display: none;
  }

  [dir="rtl"] .nav-links, [dir="rtl"] .nav-links2{
    flex-direction: column;
  }
}

.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background-color: #f2f2f2;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.wave-divider2 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider2 svg {
  display: block;
  width: 100%;
  height: auto;
}
