*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.full-page {
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(images/bg-1.jpg);
    background-position: center;
    background-size: cover;
}
.navbar {
    z-index: 1000;
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px; /* Reduced from 20px to 10px */
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px; /* Reduced from 50px to 20px */
    justify-content: space-between;
    flex-wrap: nowrap; /* Change from wrap to nowrap */
}



nav {
    flex: initial; /* Change from flex: 1 to flex: initial */
    text-align: right;
}
nav ul 
{
    display: inline-block;
    list-style: none;
}
nav ul li
{
    display: inline-block;
    margin-right: 70px;
	margin-right: 30px; /* Reduced from 70px to 30px */
}
nav ul li a
{
    text-decoration: none;
    font-size: 20px;
    color: white;
    font-family: sans-serif;
}
nav ul li button
{
    font-size: 20px;
    color: white;
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: sans-serif;
}
nav ul li button:hover
{
    color: #0000ff;
}
nav ul li a:hover
{
    color: #0000ff;
}
a
{
    text-decoration: none;
    color: palevioletred;
    font-size: 28px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: rgba(241, 241, 241, 0.5); /* Adjust the alpha value to increase transparency, e.g., 0.5 */
}

.dropdown:hover .dropdown-content {
    display: block;
}
.logo {
    height: 120px;
}
/* Responsive menu for tablet and mobile devices */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding-top: 10px;
    }

    nav {
        width: 100%;
        margin-top: 10px;
    }

    nav ul {
        text-align: center;
    }

    nav ul li {
        margin-right: 20px;
    }

    .contact-form-container {
        width: 100%;
        max-width: 100%;
        padding: 50px;
        margin: 0;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
    }

    .contact-form-container input[type="text"],
    .contact-form-container input[type="email"],
    .contact-form-container input[type="tel"],
    .contact-form-container input[type="date"],
    .contact-form-container textarea {
        font-size: 14px;
    }

    .contact-form-container button {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
  .navbar {
    text-align: center;
  }
  .footer-container {
    text-align: center;
  }
  .centered-text {
    margin-top: 10px; /* Increase this value if needed */
  }
	.slideshow-container {
  padding-bottom: 700px; /* Adjust this value if needed */
	}
}
@media only screen and (max-width: 768px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-ibratsa,
  .partner-logos,
  .contact-us {
    margin: 0 auto;
  }

  .partner-logos .partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .partner-logos .partner-logo {
    margin: 0 10px;
  }
}
@media screen and (max-width: 480px) {
    nav ul li a {
        font-size: 16px;
    }

    nav ul li button {
        font-size: 16px;
    }
}
@media screen and (max-width: 800px) {
    .centered-text h1 {
        font-size: 2rem;
    }

    .centered-text p {
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .about-ibratsa,
    .partner-logos,
    .contact-us {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
	.slideshow-container {
    padding-top: 80px;
  }
}
.contact-form-container {
    width: 50%;
    max-width: 500px;
    margin: 100px auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 160%;
    right: 28%;
    transform: translateY(-50%);
}
.contact-form-container h2 {
    text-align: center;
    color: #cc0000;
    font-family: sans-serif;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: sans-serif;
}

.contact-form-container textarea {
    resize: none;
}

.contact-form-container button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    background-color: #1a1aff;
    color: #fff;
    font-size: 16px;
    font-family: sans-serif;
    cursor: pointer;
    border-radius: 5px;
}

.contact-form-container button:hover {
    background-color: #cc0000;
}
/*.contact-info {
    position: absolute;
    top: 50%;
    left: 18%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    color: white;
    font-family: sans-serif;
    max-width: 600px;
    z-index: 1;
    margin-left: 10px;
    width: 30%;
}
.contact-info h3 {
    margin-bottom: 10px;
    color: #cc0000;
}

.contact-info a {
    font-size: inherit;
    color: inherit;
}

.contact-info p {
    margin-bottom: 5px;
}

.contact-info i {
    color: #0000ff;
    font-size: 30px;
}*/
.centered-text {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    font-family: sans-serif;
    max-width: 80%;
}
.centered-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.centered-text p {
    font-size: 1.5rem;
}
/*footer*/
html, body {
    height: 100%;
    margin: 0;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.full-page {
    flex: 1;
}

.about-ibratsa {
    text-align: centre;
    max-width: 30%;
}

.about-ibratsa h3 {
    color: #ff0000;
    font-size: 1.2rem;
	font-family: sans-serif;
    margin-bottom: 10px;
}

.contact-us {
    text-align: right;
    max-width: 30%;
	font-family: sans-serif;
}

.contact-us h3 {
    color: #ff0000;
    font-size: 1.2rem;
	font-family: sans-serif;
    margin-bottom: 10px;
}
.booking-form select {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: 10px;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content .dropdown {
    display: block;
}

.dropdown .dropdown-content {
    left: 100%;
    top: 0;
}

.dropdown:hover .dropdown-content .dropdown-content {
    display: none;
}

.dropdown .dropdown-content .dropdown:hover .dropdown-content {
    display: block;
}

/* Basic CSS transitions */
.about-us {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s, transform 1s;
    animation-fill-mode: forwards;
    animation-name: fadeInUp;
    animation-duration: 1s;
	font-family: sans-serif;
  	background-color: rgba(255, 255, 255, 0.5);
  	text-align: justify;
}

/* Keyframes for the fadeInUp animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Style h2, h3, p, ul, ol, li, and a elements with animations */
.about-us h2, .about-us h3, .about-us p, .about-us ul, .about-us ol, .about-us li, .about-us a {
    animation-fill-mode: forwards;
    animation-name: fadeIn;
    animation-duration: 1s;
  	text-align: justify;
}

/* Stagger the animation delays for different elements */
.about-us h2 {
    animation-delay: 0.5s;
	color: #ff0000;
	font-size: 50px;
  	text-align: justify;
}
.about-us h3 {
    animation-delay: 0.5s;
	color: #ff0000;
  	font-size: 35px;
  	text-align: justify;
}

.about-us p {
    animation-delay: 0.75s;
	color: #0000ff;
	line-height: 1.5;
  	font-size: 29px;
  	text-align: justify;
}

.about-us ul, .about-us ol {
    animation-delay: 1s;
	color: #0000ff;
  	text-align: justify;
}

.about-us li {
    animation-delay: 1.25s;
	color: #0000ff;
  	text-align: justify;
}

.about-us a {
    animation-delay: 1.5s;
	color: #0000ff;
  	text-align: justify;
}

/* Keyframes for the fadeIn animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.heading-container {
    text-align: center;
    margin-bottom: 20px;
}

.heading-img {
    display: block;
    margin: 10px auto;
    width: 400px; /* Adjust the width of the images */
    height: auto; /* Adjust the height of the images */
  	border-radius: 50px; /* Adjust the value to control the amount of rounding */
}

.about1-container {
    position: relative;
}

.about1-wrapper {
    position: relative;
    padding-top: 150px;
}

.about1 {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.0); /* Change the last value (0.8) to control the transparency */
    padding: 10px;
    border-radius: 10px;
    width: 80%; /* Adjust the width of the about1 section */
    text-align: center;
    font-family: sans-serif;
    margin-bottom: 40px;
}

.about1 h2 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #ffffff;
}

.about1 h3 {
    font-size: 35px;
    margin-bottom: 10px;
    color: #ffffff;
}

.about1 p {
    font-size: 36px;
    margin-bottom: 10px;
    color: #ffffff;
}

.about1 ul,
.about-us ol {
    font-size: 16px;
    color: #ffffff;
    padding-left: 30px;
    margin-bottom: 10px;
}

.about1 a {
    color: #ffffff;
    text-decoration: none;
}

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

.about1 h2,
.about1 h3,
.about1 p {
    transition: transform 0.3s ease;
}

.about1 h2:hover,
.about1 h3:hover,
.about1 p:hover {
    transform: scale(1.1);
}

.about1 h2:hover {
    color: #ff0000;
}

.about1 p:hover {
    color: #0000ff;
}

.siema {
    overflow: hidden;
    width: 100%;
}

.siema > div {
    float: left;
    width: 100%;
}

.terms-and-conditions h3, .terms-and-conditions p {
	font-family: sans-serif;
	color: #ffffff;
}
.scrollable li{
	font-family: sans-serif;
	color: #ffffff;
}
/* Course section styles */
.course-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.course-card .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 20px;
    text-align: center;
	font-family: sans-serif;
}

.course-card .card-title {
    margin-bottom: 0;
    font-size: 1.2em;
	font-family: sans-serif;
	text-align: center;
}

.course-card .card-body {
    padding: 20px;
}

.course-card .card-text {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
	font-family: sans-serif;
	text-align: center;
}

.course-card .card-text ul, li {
    font-size: 1em;
      line-height: 1.6;
      margin-bottom: 15px;
      font-family: sans-serif;
      text-align: center;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 0.9em;
    text-decoration: none;
    transition: all 0.3s ease;
	font-family: sans-serif;
	justify-content: center;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}
.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card-wrapper {
  margin: 1rem;
}
.card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.certifications-section {
  padding: 50px 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.0);
  /*background-color: #f7f7f7;*/
}

.certifications-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
	font-family: sans-serif;
	color: #ffffff;
}

.certifications-section h2:hover {
    color: #ff0000;
}

.certifications-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.certification {
  margin: 15px;
  padding: 15px;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.certification img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
/* Header/Blog Title */
.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: white;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 75%;
	font-family: sans-serif;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
	font-family: sans-serif;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles */
.card {
   background-color: white;
   padding: 20px;
   margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}
/* FAQ Section */
.faq-section {
  padding: 40px;
  background-color: #f9f9f9;
  font-family: sans-serif;
  /*margin-top: 40px; /* Add this line */
/*}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.faq-item {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item label {
  display: block;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

.faq-item label::before {
  content: '+';
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item input[type="checkbox"]:checked + label::before {
  content: '-';
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
}
.faq-content p {
  text-align: justify;
}

.faq-item input[type="checkbox"]:checked ~ .faq-content {
  max-height: 500px;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.faq-image {
  float: center;
  /*display: block;*/
/*  max-width: 100%;
  height: auto;
  margin: 0 auto 30px;
  transition: transform 0.3s ease; /* Add a smooth transition effect */
/*}

.faq-image:hover {
  transform: scale(1.1); /* Zoom in by 10% when hovering over the image */
/*}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-container {
  animation: fadeInRight 3s;
}
.faq-image {
  display: block;
  width: 20%;
  height: auto;
  margin: 0 auto 30px;
  transition: transform 0.3s ease-in-out;
  margin-left: 20px; /* Adjust the value as per your desired amount of left margin */
/*}

.faq-image:hover {
  transform: rotate(360deg);
}

.fly-in {
  animation: flyIn 1s forwards;
}

@keyframes flyIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.expanded .faq-content {
  max-height: 500px;
}*/
.marquee-container {
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
   font-family: sans-serif;
}
.marquee-container a {
    color: #000000;
  font-size: 30px;
    text-decoration: underline;
  font-family: sans-serif;
}
.marquee-container a:hover {
  	color: #0000ff;
}
/*Intro Section*/
.intro-section {
  background-color: transparent;
  padding: 40px;
  overflow: hidden;
}

.intro-section .text-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.intro-section .text-container {
  transform: translateY(0);
  opacity: 1;
}

.intro-section p {
  margin-bottom: 20px;
  color: white;
  font-family: sans-serif;
  font-size: 25px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.intro-section h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: white;
  font-family: sans-serif;
  font-size: 30px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.intro-section {
  background-color: rgba(255, 255, 255, 0.);
  transition: background-color 0.3s ease;
  transform: scale(1.05);
}

.intro-section p,
.intro-section h2 {
  color: #f2f2f2; /* Change the color to your desired color */
}
.active {
      background-color: rgba(255, 0, 0, 0.2); /* Adjust the alpha value for transparency */
      border-radius: 5px; /* Adjust the value for rounded corners */
      padding: 5px 10px; /* Adjust the padding to increase width */
}