* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
}

header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px;
  background-color: rgb(255, 255, 255);
}

.nav1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;

  background-color: #0a204688;
}

.nav__logo {
  display: flex;
  align-items: center;
  margin-left: 7.5%;
}

.nav__logo-img {
  height: 47px;
  display: block;
  margin-right: 6%;
}

.header-container {
  display: none;
}

.nav__logo-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 5px;
  width: 140px;
}

.nav__logo-text {
  color: #00aeff;
  font-size: 20px;
  font-weight: 700;
}



.nav__powered-by {
  font-size: 0.8em;
  color: #0f377c;
  /* White color for "Powered by KTS" */
  margin-top: 2px;
  margin-left: 2%;
}



.nav__list {
  list-style: none;
  display: flex;
  padding-right: 160px;
  gap: 20px;

  font-size: 15px;
}

.nav__list1 {
  list-style: none;
  display: flex;
  padding-right: 165px;
  gap: 5px;

  font-size: 15px;
}

.nav__item {
  margin-left: 20px;

}

.nav__link {
  text-decoration: none;
  color: #0f377c;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 14px 16px;
  display: block;
  font-weight: bolder;


}


.nav__item.active .nav__link {
  background-color: #0090ce;
  color: white;
  border-radius: 2px;
  font-weight: bold;
  padding: 10px;
  margin-top: 3px;
}

.nav__item.active .nav__link:hover {
  background-color: white; /* Darker blue on hover */
  color: #0f377c; /* Light grey text color on hover for contrast */
  border: 2px solid #0f377c;
  border-radius: 5px;
  font-weight: bold;
}



.sidepanel {
  display: none;
}

.sidepanel img{
  display: none;
}

.sidepanel a{
  display: none;
}


.openbtn {
  display: none;
}

.container {
  height: 600px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay {
  /*background-color: rgba(100, 102, 107, 0);*/
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.slideshow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;

}

.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
}

.heading {
  font-size: 28px;
  color: #0090ce;
  position: relative;
  z-index: 100;
}

.head {
  position: absolute;
  background-color: #d4e2eedb;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30%;
  margin-left: 48px;

}

.subheading {
  font-size: 18px;
  color: #0090ce;
  position: relative;
  z-index: 100;
  margin-top: 20px;
  text-align: center;
  font-weight: bolder;
}

/* Main dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #dce8f1; /* Light blue background */
  min-width: 170px; /* Minimum width of dropdown */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Shadow effect */
  z-index: 1000; /* Ensures dropdown is on top */
  border-radius: 0 0 5px 5px; /* Rounded bottom corners */
  padding: 10px 0; /* Padding inside dropdown */
  border: 1px solid #ddd; /* Border around dropdown */
}

/* Dropdown links */
.dropdown-content a {
  color: #0f377c; /* Dark blue text color */
  padding: 12px 16px; /* Padding around text */
  text-decoration: none; /* Remove underline */
  display: block; /* Block display for links */
  transition: background-color 0.3s ease; /* Smooth background color transition */
  font-weight: bold; /* Bold text */
}

/* Hover state for dropdown links */
.dropdown-content a:hover {
  background-color: #f1f1f1; /* Light gray background on hover */
  color: #00aeff; /* Bright blue text color on hover */
}

/* Dropdown container */
.nav__item {
  position: relative; /* Ensures the dropdown content is positioned relative to this item */
}

/* Display main dropdown content on hover */
.nav__item:hover .dropdown-content {
  display: block;
}

/* Submenu container */
.dropdown-subcontent {
  position: relative; /* Ensures the nested dropdown is positioned relative to this container */
}

/* Display nested dropdown content on hover */
.dropdown-subcontent:hover .dropdown-content-right {
  display: block;
  position: absolute; /* Position relative to the parent container */
  left: 100%; /* Position to the right of the parent */
  top: 0; /* Align with the top of the parent */
}

/* Style for nested dropdown */
.dropdown-content-right {
  display: none;
    position: absolute;
    background-color: #dce8f1;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 0 2px 2px 0px;
    padding: 0 0px;
    border: 1px solid #ddd;
}


/* Show the dropdown content when the parent link is hovered */
.nav__item:hover .dropdown-content {
  display: block;
}

.nav__link {
  border-radius: 5px 5px 0 0;
}

.nav__link:hover,
.nav__item:hover .nav__link {
  background-color: #f1f1f1;
  color: #00aeff;
  border-radius: 5px 5px 0 0;
}

.section {
  padding: 0px 0px;
  text-align: center;
}

/* .section__heading {
    font-size: 28px;
    margin-bottom: 10px;
    color: black;
    text-align: center;

} */

.section__heading3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.section__heading3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 48%;
  width: 50px;
  height: 3px;
  background-color: #007bff;
}

.section__heading4 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.section__heading4::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 48%;
  width: 50px;
  height: 3px;
  background-color: #007bff;
}


.section__heading5 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
  margin-left: 16%;
}

.section__heading5::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 97px;
  width: 80px;
  height: 3px;
  background-color: #007bff;
}

.section__content {
  font-size: 16px;
  line-height: 1.6;
  color: black;
}

.section__content ul {
  list-style: none;
  padding: 0;
}

.section__content li {
  margin: 10px 0;
}


/* about */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  max-width: 100%;
  height: 350px;
  width: 490px;
  border-radius: 2px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
}

.about-content {
  flex: 1;
  margin-left: -1%;
  margin-top: 2.5%;
}


.section__heading {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.section__heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 257px;
  width: 50px;
  height: 3px;
  background-color: #007bff;
}


.section__heading1 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

.section__heading1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 36px;
  width: 50px;
  height: 3px;
  background-color: #007bff;
}

.section__content {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  text-align: justify;
  margin-left: 5%;
}

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-content {
    padding-right: 0;
    padding-bottom: 40px;
  }
}

.client-partners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.partners-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.partner-item {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}

.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-item:hover img {
  transform: scale(1.1);
}

.client-info {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 10px 0;
  background: #ffffff;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 200px;
  height: 250px;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 200px;
  margin: 0 40px;
}


/* featured clients  */
/* Valued Clients Section */
#our-valued-clients {
  background-color: #d3eaffa0;
  padding: 40px 0;
  overflow: hidden;
}

.valued-clients-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.valued-clients-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
  text-align: left;
margin-left: 15%;
}

.valued-clients-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 105%;
}

.client-names-container {
  flex: 1;
  display: flex;
  padding-right: 0px;
  margin-left: 9%;
  margin-top: 13px;
  margin-right: 12%;
}

.client-names-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.client-names-list li {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  width: 285px;
  margin-left: -30px;
}

.client-names-list li i {
  color: #4a90e2;
  margin-right: 10px;
  font-size: 1rem;
}

.client-showcase-image {
  flex: 1;
  max-width: 50%;
}

.client-showcase-image img {
  width: 113%;
  height: 335px;
  border-radius: 5px;
  margin-top: -74px;
  margin-left: -48%;
}



@media (max-width: 968px) {
  .valued-clients-content {
    flex-direction: column;
    align-items: center;
  }

  .client-names-container {
    padding-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }

  .client-showcase-image {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .client-names-container {
    flex-direction: column;
  }

  .client-names-list:first-child {
    margin-bottom: 20px;
  }
}


/* Campus */
/* 
.wave-container {
  height: 100vh;
  background-image: url('../media/h7.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.wave {
  position: absolute;
  bottom: -140px;
  left: 0;
  width: 100%;
  height: 55vh;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,160L40,165.3C80,171,160,181,240,181.3C320,181,400,171,480,154.7C560,139,640,117,720,117.3C800,117,880,139,960,149.3C1040,160,1120,160,1200,144C1280,128,1360,96,1400,80L1440,64L1440,360L1400,360C1360,360,1280,360,1200,360C1120,360,1040,360,960,360C880,360,800,360,720,360C640,360,560,360,480,360C400,360,320,360,240,360C160,360,80,360,40,360L0,360Z"></path></svg>');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.text-content-left {
  position: absolute;
  left: 6%;
  bottom: -150px;
  max-width: 40%;
  color: #000;
  font-size: 32px;
  z-index: 2;
  text-align: left;
}

.text-content-right {
  position: absolute;
  right: 8%;
  bottom: -170px;
  line-height: 1.6;
  max-width: 40%;
  color: #000;
  font-size: 18px;
  z-index: 2;
  text-align: justify;
}

.inspiring-text {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0090ce;
  padding: 10px;
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background-color: #daeff6af;
  border-radius: 8px;
  width: auto;
  z-index: 999;
}



.additional-content {
  background-color: #ffffff;
  margin-top: 241px;
  text-align: center;
  width: auto;
}

.box-heading {
  font-size: 30px;
    margin-top: 0px;
    background-color: aliceblue;
    padding: 10px;
    padding-top: 45px;
}

.box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;

  background-color: aliceblue;
  padding: 30px;
  padding-bottom: 50px;
}

.box {
  flex-basis: calc(16.333% - 20px);
  height: 200px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .box {
    flex-basis: 100%;
  }
} */

.wave-container {
  position: relative;
  height: 100vh;
  background-image: url('../media/imgg.jpeg');
  background-repeat: no-repeat;
  background-image: cover;

  background-position: center;
  background-attachment: fixed;
}

.wave-container_corporate {
  position: relative;
  height: 100vh;
  background-image: url('../media/h8.jpeg');
  background-position: center;
  background-attachment: fixed;
}

.wave {
  position: absolute;
  bottom: -140px;
  left: 0;
  width: 100%;
  height: 55vh;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,160L40,165.3C80,171,160,181,240,181.3C320,181,400,171,480,154.7C560,139,640,117,720,117.3C800,117,880,139,960,149.3C1040,160,1120,160,1200,144C1280,128,1360,96,1400,80L1440,64L1440,360L1400,360C1360,360,1280,360,1200,360C1120,360,1040,360,960,360C880,360,800,360,720,360C640,360,560,360,480,360C400,360,320,360,240,360C160,360,80,360,40,360L0,360Z"></path></svg>');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.text-content-left {
  position: absolute;
  left: 7%;
  bottom: -80px;
  max-width: 40%;
  color: #0056b3;
  font-size: 30px;
  z-index: 2;
  line-height: 1.3;
  text-align: justify;
}

.text-content-right {
  position: absolute;
  right: 8%;
  bottom: -85px;
  max-width: 40%;
  color: #0d217a;
  font-size: 15px;
  z-index: 2;
  line-height: 1.6;
  text-align: left;
}

.inspiring-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 36px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 80%;
}

.additional-content {
  padding: 50px;
  background-color: #ffffff;
  margin-top: 200px;
}


.box-heading{
font-size:30px;
margin-top: 10px;
margin-bottom: 40px;
text-align: center;
}

.camp{
  
}

.box-container {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  gap: 40px;
  margin-top: 22px;
  width: 1230px;
  margin-left: 7%;
  padding-left: 45px;
}

.box {
  flex-basis: calc(28.333% - 30px);
    height: 200px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: list-item;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-heading{
  margin-bottom: 34px;
}
.campus-wave-section {
  position: relative;
  background-color: #FFB6C1; /* Light pink */
  margin-top: 306px;
  height: 550px;
  overflow: hidden;
}

.campus-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.campus-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.campus-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px; /* Adjust height as needed */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23FFFFFF'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  z-index: 1;
}

.campus-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 0 50px;
}

.campus-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: white;
  font-weight: 600;
  margin-top:-60px;
}

.campus-content p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: white;
  margin-top:300px;

}

.footer {
  background-color: #0056b3;
  color: #ffffff;
  padding: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 15px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
  margin-bottom: 10px;
}

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid white;
  width: 150px;
  padding-bottom: 3px;
  text-transform: uppercase;
  color: white;
  transition: color 0.3s ease;
  text-align: center;
}

.footer-section p,
.footer-section ul {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 8px;
  text-align: center;
  margin-right: 35%;
}

.footer-nav,
.about-list,
.clients-list,
.social-links {
  list-style: none;
  padding: 0;
}

.footer-nav li,
.about-list li,
.clients-list li {
  margin-bottom: 5px;
}

.footer-nav a,
.about-list a,
.clients-list a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.about-list a:hover,
.clients-list a:hover {
  color: rgba(255, 255, 255, 0.36);
}

.footer-contact p {
  margin: 3px 0;
  margin-right: 35%;
}

.footer-social ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin-right: 10%;
  margin-left: 10%;
}

.footer-social li {
  margin-right: 10%;
}

.footer-social a {
  color: #ffffff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: rgba(255, 255, 255, 0.36);
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  margin-top: 15px;
  font-size: 12px;
  color: #bbb;
}





.card {
  display: flex;
  max-width: 1390px;
  height: 350px;
  overflow: hidden;
  position: relative;
  gap: 40px;
  margin: 40px;
}

.card .text-container {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card .text-container h1 {
  margin: 0 0 20px 0;
  font-size: 28px;
  font-weight: 700;
  text-align: left;
  margin-left: 6%;

}

.card .image-container {
  flex: 1;
  background-image: url('../media/h2.jpeg');
  background-size: cover;
  background-position: center;
}

.services-description1 {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
  margin-left: 6%;

}

.btn-explore1 {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #283fa7;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s ease;
  width: 200px;
  /* Fixed width in pixels */
  height: 45px;
  margin-left: 6%;
  text-align: center;
  line-height: 21px;
  box-sizing: border-box;
}

.btn-explore1:hover {
  background-color: #0d217a;
}

/* Ensure button remains the same size at all screen sizes */
@media (min-width: 1280px) {
  .btn-explore1 {
    width: 200px;
    /* Same fixed width */
    height: 45px;
    font-size: 14px;
    padding: 12px 24px;
    line-height: 21px;
  }
}

@media (min-width: 1600px) {
  .btn-explore1 {
    width: 200px;
    /* Same fixed width */
    height: 45px;
    font-size: 14px;
    padding: 12px 24px;
    line-height: 21px;
  }
}

@media (min-width: 2400px) {
  .btn-explore1 {
    width: 200px;
    /* Same fixed width */
    height: 45px;
    font-size: 14px;
    padding: 12px 24px;
    line-height: 21px;
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .card {
    height: auto;
    flex-direction: column;
  }

  .card .image-container {
    height: 300px;
  }

  .card .text-container {
    padding: 30px;
  }


}

@media (max-width: 768px) {
  .card .text-container h1 {
    font-size: 24px;
  }

  .services-description1 {
    font-size: 1rem;
  }
}

/* Screen size adjustments */
@media (min-width: 1600px) {
  .card {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (min-width: 2400px) {
  .card {
    max-width: 70%;
  }
}

/* SERVICE CONTAINER */
.services-container {
  background-color: #d3eaffa0;
  padding: 30px 20px;
  text-align: center;
}

.services-container1 {
  background-color: #d3eaffa0;
  padding: 60px 20px;
  text-align: center;
  padding-left: 3.5%;
}

.services-heading {
  font-size: 28px;
  color: #333;

}

.services-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  max-width: 1400px;
  gap: 40px;
}

.services-content1 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  max-width: 1000px;
  gap: 40px;
  margin-left: 12%;
  margin-top: -62px;
}

.services-grid {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.service-card {
  background-color: #ffffff;
  border-radius: 0px;
  padding: 9px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 260px;
  flex-shrink: 0;
  text-decoration: none;
}


.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;

}


.services-description {
  flex: 1;
  text-align: justify;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 3%;
}

.services-description2 {
  flex: 1;
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 3%;
  margin-left: 8%;
  padding-bottom: 3%;
}

.btn-explore {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #0090ce;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  margin-left: 42%;

}

.btn-explore:hover {
  background-color: #00aeff;
}


/*Contact*/
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #9ab4d1, #c2d2ea, #ffffff);
  padding-bottom: 0px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1257px;
  width: 100%;
  border-radius: 10px;
}

.contact-section .contact-text {
  flex: 1;
  padding: 40px;
}

.contact-section .contact-text .title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.contact-section .contact-form {
  flex: 1;
  padding: 40px;
}

.contact-section .contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-section .contact-form form .form-header {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 50px;
}

.contact-section .contact-form form .form-header img {
  width: 24px;
  height: 24px;
  margin: 0 10px;
}

.contact-section .contact-form form .form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0090ce;
}

.contact-section .contact-form form .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.contact-section .contact-form form .row input {
  width: 48%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.contact-section .contact-form form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.contact-section .contact-form form input[type="submit"] {
  background-color: #0090ce;
  color: white;
  border: none;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  width: 150px;
}

.contact-section .contact-form form input[type="submit"]:hover {
  background-color: #00aeff;
  font-weight: bold;
}

.contact-section .contact-form form input[type="submit"]::after {
  content: "→";
  margin-left: 10px;
}

.contact-section .contact-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-section .contact-image img {
  width: 104%;
  height: 600px;
  border-radius: 5px;
  animation: fadeIn 0.5s ease-in-out;
  margin-left: 17%;
  margin-top: 10%;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CLIENT SUMMARY ON SERVICES SECTION */
.page-container {
  background: linear-gradient(to right, #9ab4d1, #c2d2ea, #ffffff);
  width: 100%;
  padding-top: 1px;
  /* This prevents margin collapse */
}

.application-development {
  max-width: 1500px;
  margin: 0px auto;
  padding: 0 0px;


}


.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  color: #23317e;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 7%;
}

.client-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin-left: 6%;
  padding-bottom: 3%;
}

.client-description {
  flex: 1;
}

.client-description h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: #23317e;
  margin-bottom: 20px;
  font-display: justify;
}

.client-description p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.client-image {
  flex: 1;
}

.client-image img {
  width: 117%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 23px;
}

@media (max-width: 768px) {
  .client-summary {
    flex-direction: column-reverse;
  }

  .client-image {
    margin-bottom: 20px;
  }
}

/* APPLICATION SOLUTIONS UNDER SERVICES SECTION - QUOTATION*/
.application-solutions {
  padding: 50px 0;
  background: linear-gradient(to right, #9ab4d1, #c2d2ea, #ffffff);
}

.section-heading1 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  color: #23317e;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 4%;
}

.application-solutions-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.application-solutions-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 100px;
}

.application-solutions-input-message {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  resize: vertical;
  color: transparent;
}

.application-solutions-submit-button {
  width: 100%;
  padding: 15px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.application-solutions-submit-button:hover {
  background-color: #0056b3;
}

.application-solutions-image-container {
  flex: 1;
}

.application-solutions-contact-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .application-solutions-content {
    flex-direction: column;
    padding: 0 20px;
  }

  .application-solutions-left,
  .application-solutions-image-container {
    width: 100%;
  }
}

.section__heading2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: black;
  text-align: center;
  margin-top: 70px;

}

/* APPLICATION SOLUTIONS */
.application-solution-container {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.application-solution-container .section-heading2 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  color: #23317e;
  margin-bottom: 20px;
  text-align: center;
}

/* Add some space for the content you'll put inside */
.application-solution-container>* {
  margin-bottom: 15px;
}


.application-solution-container {
  margin-top: 20px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.application-solution-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .application-solution-container {
    margin: 20px;
    padding: 20px;
  }

  .application-solution-container .section-heading2 {
    font-size: 24px;
  }
}

/* Corporate */
.video-section {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: inline-block;
}

.video-section1 {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: inline-block;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(100%);
}

.search-container {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
  width: 80%;
  max-width: 800px;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.901);
  padding: 5px 15px;
  border-radius: 0;
}

.search-container label {
  font-size: .9em;
  letter-spacing: 2px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  text-transform: uppercase;
  margin-right: 18px;
  margin-left: 4%;
  white-space: nowrap;
}

#search-input {
  flex-grow: 1;
  padding: 8px;
  font-size: 1em;
  border: none;
  background: white;
  color: black;
  transition: all 0.3s ease;
}

#search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

#search-input:focus {
  outline: none;
}

.search-results {
  display: none;
  padding: 20px;
  background-color: #f8f9fa;
  margin-top: 20px;
}

.result-item {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.result-item:hover {
  transform: translateY(-5px);
}

.result-item h2 {
  color: #007bff;
  margin-bottom: 10px;
}

.result-item p {
  color: #6c757d;
}

/* features */
.features-section {
  padding: 60px 20px;
  text-align: center;
}

.features-heading {
  color: #0056b3;
  font-size: 2em;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.features-subheading {
  color: #4a4a4a;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease-out 0.2s;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-box {
  background-color: #f1f9ff;
  border-radius: 8px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0, 64, 255, 0.1);
  border: 2px solid #0090ce;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease-out 0.4s;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2em;
  color: #00aeff;
  margin-bottom: 20px;
}

.feature-box h3 {
  color: #0056b3;
  font-size: 1.1em;
  margin-bottom: 15px;
}

.feature-box p {
  color: #4a4a4a;
  font-size: 14px;
}

.feature-button {
  background-color: #0090ce;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.feature-button:hover {
  background-color: #0056b3;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 100%;
    max-width: 300px;
  }
}

/* topic section */
.core-topics {
  background-color: #f6fbff;
  padding: 40px 20px;
  text-align: center;
}

.core-topics-heading {
  color: #0056b3;
  font-size: 1.5em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.core-topics-subheading {
  color: #4a4a4a;
  font-size: 1em;
  max-width: 850px;
  margin: 0 auto 30px;
}

.topics-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.topics-carousel {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 20px 0;
}

.topic-box {
  flex: 0 0 calc(25% - 20px);
  margin: 0 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.topic-image {
  width: 90%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.topic-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

.topic-image:hover {
  transform: scale(1.05);
}

.topic-box h3 {
  font-size: 1em;
  position: relative;
  z-index: 2;
  padding: 10px 10px;
}

.explore-link {
  color: #0090ce;
  text-decoration: none;
  padding: 5px 16px;
  margin-top: 10px;
  border: 2px solid #0090ce;
  border-radius: 0px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.explore-link:hover {
  background-color: #0090ce;
  color: white;
}

.nav-button {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  background-color: rgba(0, 51, 102, 0.7);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 3;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: #0090ce;
}

.prev-button {
  left: -50px;
  margin-top: 13px;
}

.next-button {
  right: -50px;
  margin-top: 13px;
}



/* custom content */
.custom-learning-development {
  padding: 50px 0;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-left: 180px;
}

.content-box {
  display: flex;
  align-items: center;
  gap: 70px;
}

.left-box .text-content {
  order: 1;
}

.left-box .image-container {
  order: 2;
}

.right-box .image-container {
  order: 1;
}

.right-box .text-content {
  order: 2;
}

.text-content {
  max-width: 38%;
  text-align: justify;
  line-height: 1.6;
 
}

.image-container {
  flex: 0 0 440px;
}

.custom-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 2px;
}

/* Heading Styles */
.text-content h3 {
  font-size: 22px;
  color: #333;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.text-content h3::after {
  content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 200px;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.text-content h3:hover {
  color: #007bff;
  transform: translateY(-5px);
}

.text-content h3:hover::after {
  width: 200px;
}

/* Paragraph Styles */
.text-content p {
  font-size: 16px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  transition: color 0.3s ease;
  padding-top: 25px;
}



/* Link Styles */
.learn-more-link {
  display: inline-block;
  margin-top: 15px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}

.learn-more-link:hover {
  color: #0056b3;
  transform: scale(1.05);
}
/* get in touch */
.contact-inquiry-section {
  padding: 40px 0;
  background: #f6fbff;
  text-align: center;
  position: relative;
}

.inquiry-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  animation: fadeInUp 1s ease-out;
}

.inquiry-heading {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #0056b3;
  animation: slideInLeft 0.5s ease-out;
}

.inquiry-text {
  font-size: 1em;
  color: #6c757d;
  margin-bottom: 25px;
  line-height: 1.6;
  animation: slideInRight 0.5s ease-out;
}

.contact-link {
  display: inline-block;
  font-size: 1.1em;
  color: #0090ce;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #0090ce;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
  animation: bounceIn 1s ease;
}

.contact-link:hover {
  border: 2px solid #00aeff;
  background: #00aeff;
  color: #fff;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* error */
#error{
  font-size: 30px;
  font-weight: bold;
}

#image_contact{
  width: 100%;
}

#image_error{
  width: 100%;
  height: 50%;
}

/* corporate assessment */
:root {
  --color-primary: #0056b3;
  --color-secondary: #007bff;
  --color-tertiary: #e6f2ff;
  --color-text: #333;
  --color-light: #f8f9fa;
}

.hero {
  background: linear-gradient(45deg, #0056b3, #007bff); /* Gradient background */
  color: white; /* Text color */
  padding: 155px 0; /* Top and bottom padding */
  height: 550px; /* Height of the hero section */
  position: relative; /* Positioning for overlay effects */
  text-align: left; /* Center text within hero section */
}

.hero__wrap {
  display: flex;
  justify-content: space-between; /* Space between text and image */
  align-items: center; /* Align items vertically */
  max-width: 1200px; /* Maximum width of the wrap */
  margin: 0 auto; /* Center the wrap */
  padding: 0 2rem; /* Horizontal padding */
}

.hero__text {
  flex: 1;
  padding-right: 2rem; /* Add space between text and image */
}

.hero__title {
  font-size: 2.5rem; /* Title font size */
  margin-bottom: 1rem; /* Space below the title */
  animation: fadeInUp 1s ease-out; /* Fade-in animation */
}


.hero__img {
  flex: 1;
  text-align: right;
}

.hero__img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero__subtitle {
  font-size: 1.25rem; /* Subtitle font size */
  margin-bottom: 1rem; /* Space below the subtitle */
  animation: fadeInUp 1.5s ease-out; /* Fade-in animation with delay */
}

.hero__description {
  font-size: 1rem; /* Description font size */
  line-height: 1.5; /* Line height for readability */
  animation: fadeInUp 2s ease-out; /* Fade-in animation with delay */
}

.overview {
  padding: 0px 0;
}

.overview__wrap {
  display: flex;
  align-items: center;
  max-width: 1040px;
  margin: 0px auto;
  padding: 0;
}

.overview__img {
  margin-right: 2rem;
  height: 392px;
  margin-left: -13px;
  margin-top: -13px;

}

.overview__img img {
  max-width: 100%;
  height: 450px;
  border-radius: 10px;
}

.overview__text {
  flex: 1;
  text-align: left;
  margin-top: 22px;
  margin-left: 13px;
}

.overview__title {
  color: #0056b3; /* Matches the primary color used in your design */
  font-size: 2rem; /* Larger font size for emphasis */
  font-weight: 700; /* Bold weight for the title */
  margin-bottom: 1rem;
}

.overview__desc {
  color: #333; /* Standard text color */
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify; /* Ensures the content is left-justified and evenly spaced */
  margin-bottom: 0;
}

.features {
  padding: 60px 0;
  background-color: var(--color-tertiary);
}

.features__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.features__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0056b3;
}

.features__intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.features__subtitle {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--color-secondary);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.feature i {
  font-size: 2.5rem;
  color: #0090ce;
  margin-bottom: 1rem;
}

.feature__title {
  font-size: 18px;
  margin-bottom: 0.5rem;
  color: #0090ce;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero__wrap,
  .overview__wrap {
    flex-direction: column;
  }
  
  .overview__img {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

.global-access {
  padding: 40px 0;
  background-color: #f8f9fa;
}

.global-access__wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.global-access__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0056b3;
}

.global-access__intro {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #545d62 ;
}

.global-access__map {
  margin-bottom: 3rem;
}

.global-access__map img {
  max-width: 100%;
  height: 480px;
  width: 940px;
  border-radius: 5px;
}

.global-access__stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  margin: 1rem;
}

.stat i {
  font-size: 2.5rem;
  color: #0090ce;
  margin-right: 1rem;
}

.stat-text {
  text-align: left;
}

.stat h3 {
  font-size: 1.5rem;
  margin: 0;
  color: #0056b3;
}

.stat p {
  font-size: 1rem;
  margin: 0;
  color: #00aeff;
}

/* Testimonials Section */
.testimonials {
  padding: 40px 0;
  background-color: var(--color-tertiary);
}

.testimonials__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.testimonials__image {
  flex: 0 0 40%;
  padding-right: 40px;
}

.testimonials__image img {
  max-width: 100%;
  height: 400px;
  border-radius: 8px;
}

.testimonials__content {
  flex: 0 0 60%;
  margin-left: -9%;
}

.testimonials__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0056b3;
  text-align: center;
}

.testimonials__subtitle {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #545d62;
  text-align: center;
}

.testimonials__description {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #545d62;
  text-align: center;
}

.testimonials__slider {
  position: relative;
}

.testimonials__grid {
  display: flex;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease-in-out; /* Smooth sliding transition */
}



.testimonial {
  flex: 0 1 48%;
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: left;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px; /* Adjust based on your design */
  width: 380px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.testimonial:hover {
  transform: scale(1.05); /* Slightly enlarge the testimonial on hover */
}

/* Uniform heights for testimonial elements */
.testimonial h3 {
  color: #0056b3;
  margin-bottom: 1rem;
  height: 50px; /* Set a fixed height */
  display: flex;
  align-items: center;
}

.testimonial p {
  color: #333;
  margin-bottom: 1rem;
  height: 100px; /* Set a fixed height */
  display: flex;
  align-items: center;
  text-align: justify;
}

.testimonial__author {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  height: 30px; /* Set a fixed height */
}

.testimonial__rating {
  margin-left: 9px;
  height: 20px; /* Set a fixed height */
  display: flex;
  align-items: center;
}

.testimonial__rating {
  margin-left: 9px;
}

.checked {
  color: #ffc107;
}

/* Dots Styles */
.testimonial__dots {
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: #0056b3;
}


/* FAQ Section */
.faq {
  padding: 60px 0;
}

.faq__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.faq__header {
  flex: 0 0 30%;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  text-align: right;
}

.faq__header img{
  width: 50%;
  height: auto;
  margin-right: 4%;
  margin-top: -37%;
}

.faq__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0056b3;
}

.faq__description {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #545d62;
}

.faq__list {
  flex: 0 0 65%;
  max-height: 500px;
  overflow-y: auto;
}


.faq__item {
  background-color: #e3ebf3;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 15px;
  position: relative;
}

.faq__input {
  display: none;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.2rem;
  color: #0d217a;
  margin: 0;
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  color: #007bff;
}

.faq__input:checked + .faq__question::after {
  content: '×';
}

.faq__answer {
  color: #545d62;
  display: none;
  margin-top: 15px;
  line-height: 1.5;
}

.faq__input:checked + .faq__question + .faq__answer {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-slide-in {
  animation: slideIn 0.5s ease-out;
}

.testimonial, .faq__item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover, .faq__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.faq__question {
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: #007bff;
}

/* campus assessment */
/* General Colors */
:root {
  --color-primary: #0056b3;
  --color-secondary: #007bff;
  --color-tertiary: #e6f2ff;
  --color-text: #333;
  --color-light: #f8f9fa;
}

/* Campus Hero Section */
.campus-hero {
  background: linear-gradient(45deg, #0056b3, #007bff); /* Gradient background */
  color: white; /* Text color */
  padding: 155px 0; /* Top and bottom padding */
  height: 550px; /* Height of the hero section */
  position: relative; /* Positioning for overlay effects */
  text-align: left; /* Align text to the left */
}

.campus-hero__wrap {
  display: flex;
  justify-content: space-between; /* Space between text and image */
  align-items: center; /* Align items vertically */
  max-width: 1200px; /* Maximum width of the wrap */
  margin: 0 auto; /* Center the wrap */
  padding: 0 2rem; /* Horizontal padding */
}

.campus-hero__text {
  flex: 1;
  padding-right: 2rem; /* Add space between text and image */
}

.campus-hero__title {
  font-size: 2.5rem; /* Title font size */
  margin-bottom: 1rem; /* Space below the title */
  animation: fadeInUp 1s ease-out; /* Fade-in animation */
}

.campus-hero__img {
  flex: 1;
  text-align: right;
}

.campus-hero__img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.campus-hero__subtitle {
  font-size: 1.25rem; /* Subtitle font size */
  margin-bottom: 1rem; /* Space below the subtitle */
  animation: fadeInUp 1.5s ease-out; /* Fade-in animation with delay */
}

.campus-hero__description {
  font-size: 1rem; /* Description font size */
  line-height: 1.5; /* Line height for readability */
  animation: fadeInUp 2s ease-out; /* Fade-in animation with delay */
}

/* Campus Overview Section */
.campus-overview {
  padding: 0;
}

.campus-overview__wrap {
  display: flex;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  margin-left: 16%;
  margin-top: 2%;
}

.campus-overview__img {
  margin-right: 2rem;
  height: 440px;
}

.campus-overview__img img {
  max-width: 100%;
  height: 418px;
  border-radius: 210px;
  width: 428px;
}

.campus-overview__text {
  flex: 1;
  text-align: left;
  margin-top: -2%;
}

.campus-overview__title {
  color: #0056b3; /* Matches the primary color used in your design */
  font-size: 2rem; /* Larger font size for emphasis */
  font-weight: 700; /* Bold weight for the title */
  margin-bottom: 1rem;
}

.campus-overview__desc {
  color: #333; /* Standard text color */
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify; /* Left-justified and evenly spaced */
  margin-bottom: 0;
}

/* Campus Features Section */
.campus-features {
  padding: 60px 0;
  background-color: var(--color-tertiary);
}

.campus-features__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.campus-features__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0056b3;
}

.campus-features__intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.campus-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.campus-feature {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.campus-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.campus-feature i {
  font-size: 2.5rem;
  color: #0090ce;
  margin-bottom: 1rem;
}

.campus-feature__title {
  font-size: 18px;
  margin-bottom: 0.5rem;
  color: #0090ce;
}

/* Campus Testimonials Section */
.campus-testimonials {
  padding: 40px 0;
  background-color: var(--color-tertiary);
}

.campus-testimonials__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.campus-testimonials__image {
  flex: 0 0 40%;
  padding-right: 50px;
}

.campus-testimonials__image img {
  max-width: 100%;
  height: 400px;
  border-radius: 8px;
}

.campus-testimonials__content {
  flex: 0 0 60%;
  margin-left: -9%;
}

.campus-testimonials__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0056b3;
  text-align: center;
}

.campus-testimonials__subtitle {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #545d62;
  text-align: center;
}

.campus-testimonials__description {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #545d62;
  text-align: center;
}

.campus-testimonials__slider {
  position: relative;
}

.campus-testimonials__grid {
  display: flex;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease-in-out; /* Smooth sliding transition */
}

.campus-testimonial {
  flex: 0 1 48%;
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: left;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px; /* Adjust based on your design */
  width: 380px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.campus-testimonial:hover {
  transform: scale(1.05); /* Slightly enlarge the testimonial on hover */
}

.campus-testimonial h3 {
  color: #0056b3;
  margin-bottom: 1rem;
  height: 50px; /* Set a fixed height */
  display: flex;
  align-items: center;
}

.campus-testimonial p {
  color: #333;
  margin-bottom: 1rem;

}

.campus-testimonial__rating {
  margin-left: 9px;
  height: 20px; /* Set a fixed height */
  display: flex;
  align-items: center;
}

.campus-testimonial__rating {
  margin-left: 9px;
}

.checked {
  color: #ffc107;
}

/* Uniform heights for testimonial elements */
.campus-testimonial h3 {
  color: #0056b3;
  margin-bottom: 1rem;
  height: 50px; /* Set a fixed height */
  display: flex;
  align-items: center;
}

.campus-testimonial p {
  color: #333;
  margin-bottom: 1rem;
  height: 100px; /* Set a fixed height */
  display: flex;
  align-items: center;
  text-align: justify;
}

.campus-testimonial__author {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  height: 30px; /* Set a fixed height */
}
/* Dots for Slider Navigation */
.campus-testimonial__dots {
  text-align: center;
}

.campus-testimonial__dots .dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  transition: background-color 0.3s ease;
}

.campus-testimonial__dots .dot.active {
  background-color: #007bff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .campus-hero__wrap,
  .campus-overview__wrap {
    flex-direction: column;
  }
  
  .campus-overview__img {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

/* corporate free demo modal */
.assessmentModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}
.assessmentModalContent {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  max-width: 900px;
  width: 90%;
  animation: fadeInModal 0.3s;
}

.assessmentModalContent h2{
  text-align: center;
  color: #0056b3;
}

@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}
.closeBtn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  margin-top: -39px;

}
.closeBtn:hover, .closeBtn:focus {
  color: #000;
  text-decoration: none;
}
.stepsWrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 20px;
}
.singleStep {
  flex: 1;
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 260px;
}
.singleStep:hover {
  transform: scale(1.05);
}
.stepIndicator {
  background-color: #0090ce;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  font-weight: bold;
}
.directionArrow {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #0090ce;
  padding: 0 10px;
}
.demoBtn {
  background-color: #0090ce;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    width: 150px;
    margin-left: 30px;
    margin-bottom: 50px;
}
.demoBtn:hover {
  background-color: #00aeff;
}

.demoBtn1 {
  background-color: #0090ce;
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    width: 150px;
    margin-left: 30px;
    margin-bottom: 50px;
    font-size: 15px;
}
.demoBtn1:hover {
  background-color: #00aeff;
}

.enquiryDetails {
  display: none;
  margin-top: 10px;
  text-align: left;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
}
.enquiryDetails ul {
  list-style-type: disc;
  padding-left: 20px;
}
.titleSection {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #0090ce;
}
.descriptionText {
  height: 78px;
  overflow: auto;
  margin-top: 9px;
  text-align: center;
  font-size: 15px;
}

/* Enquiry Form Modal Styles */
.enquiryFormModal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.enquiryFormModalContent {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.enquiryFormModal.show .enquiryFormModalContent {
  transform: scale(1);
  opacity: 1;
}

.enquiryFormModalContent h2 {
  text-align: center;
  color: #0056b3;
  margin-bottom: 10px;
  font-size: 28px;
}

.form-description {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #333;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
  background: transparent;
  transition: border-color 0.3s;
}

.form-group label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #666;
  pointer-events: none;
  transition: 0.3s ease all;
}

.form-group input:focus, .form-group textarea:focus {
  border-bottom: 2px solid #0090ce;
}

.form-group input:focus ~ label, .form-group textarea:focus ~ label,
.form-group input:valid ~ label, .form-group textarea:valid ~ label {
  top: -20px;
  font-size: 14px;
  color: #0090ce;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.submitBtn {
  background-color: #0090ce;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  width: 40%;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  margin-left: 30%;
}

.submitBtn:hover {
  background-color: #00aeff;
  box-shadow: 0 5px 15px rgba(0,144,206,0.4);
}

.btn-text {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.btn-icon {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.submitBtn:hover .btn-text {
  transform: translateX(-10px);
}

.submitBtn:hover .btn-icon {
  right: 20px;
  opacity: 1;
}

.closeBtn1 {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-top: -30px;
    float: right;
    margin-right: -19px;
}

.closeBtn1:hover {
  color: #333;
}

.assessmentModalContent {
  position: relative;
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 930px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tagline {
  font-style: italic;
  font-weight: bold;
  color: #00aeff;
  text-align: center;
  padding-bottom: 7px;
  font-size: 15px;
}

/* Loading icon */
.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-gif {
  width: 380px;
  /* Adjust as needed */
  height: 300px;
  /* Adjust as needed */
}

