body {
  font-family: inter, sans-serif;
}

/* Navbar Section */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Ensure space between logo and nav items */
  background-color: #F5F7F8;
  box-shadow: 0 4px 8px rgba(165, 155, 168, 0.495);
  height: 135px;
  /* Increased height */
  padding: 0 20px;
  /* Add some padding for spacing */
}

.navbar .logo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  /* Align logo to the left */
}

.navbar .logo img {
  width: 160px;
  margin-left: 155px;
  margin-top: 15px;
}

.nav-links {
  flex: 2;
  display: flex;
  gap: 60px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #211951;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
  font-family: "Inter", Sans-serif;
}

.nav-links a:hover {
  color: #8576FF;
}

.nav-links a::after {
  content: '';
  width: 0;
  height: 2px;
  background-color: #8576FF;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  left: 0;
  z-index: 1000;
  border-radius: 5px;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.nav-links .dropdown-menu li {
  display: block;
  margin-top: 0.7rem;
  padding: 10px 1.3rem;
  font-family: "Inter", Sans-serif;
}

.nav-links .dropdown-menu li:hover {
  background-color: #8576FF;
}

.nav-links .dropdown-menu li:hover a {
  color: #ffffff;
}

.nav-links .dropdown-menu a {
  color: #211951;
  font-weight: normal;
  display: block;
  font-family: "Inter", Sans-serif;
  text-decoration: none;
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #000;
  margin-bottom: 4px;
  font-family: "Inter", Sans-serif;
}

.nav-links a.active {
  color: #8576FF;
  z-index: 1;
}

/* Display hamburger menu in mobile view */
@media (max-width: 768px),
(max-width: 468px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    /* Ensure space between logo and hamburger */
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    position: absolute;
    top: 135px;
    /* Adjusted to match the navbar height */
    left: 0;
    background-color: #f5f7f8;
    box-shadow: 0 4px 8px rgba(165, 155, 168, 0.495);
  }

  .nav-links.active {
    display: flex;
    z-index: 2;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    padding: 15px 0;
    width: 100%;
    display: block;
  }

  .nav-links .dropdown-menu {
    position: static;
    z-index: 1;
    background-color: #f5f7f8;
  }

  .nav-links .dropdown-menu li {
    padding: 10px;
  }

  .navbar .logo img {
    margin: 0;
  }
}

/* nav Bar end here */

/* General styles for the header */
header {
  overflow: hidden;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Styles for the .courses section */
.courses {
  height: 80vh;
  /* background-image: url(../images/8106203_63617.jpg); */
  padding: 100px 20px;
  text-align: right;
  background-position: right;
  background-size: 40%;
  background-repeat: no-repeat;
}


.courses h1 {
  display: flex;
  font-size: 6rem;
  text-align: left;
  align-items: center;
  margin-left: 150px;
  margin-bottom: 20px;
  color: #211951;
}

.courses p {
  font-size: 1.2em;
  /* Font size for paragraph */
  color: #555;
  /* Dark gray color for text */
  line-height: 1.6;
  margin-left: 150px;
  /* Line height for readability */
  text-align: left;
}

.courses {
  height: 90vh;
  width: 95vw;
  /* padding:250px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.courses img {
  width: 700px;
  height: 600px;
}

.course-heading {
  display: flex;
  flex-direction: column;
}

.hero-text {
  padding-bottom: 4.5rem;
}

.circle {
  z-index: -1;
  position: absolute;
  border-radius: 50%;
  background: #bab1ff;
  animation: ripple 15s infinite;
  box-shadow: 0px 0px 1px 0px #508fb9;
}

/* Adjusted circle sizes for better responsiveness */
.small {
  width: 150px;
  height: 150px;
  left: -75px;
  bottom: -75px;
}

.medium {
  width: 300px;
  height: 300px;
  left: -150px;
  bottom: -150px;
}

.large {
  width: 450px;
  height: 450px;
  left: -225px;
  bottom: -225px;
}

.xlarge {
  width: 600px;
  height: 600px;
  left: -300px;
  bottom: -300px;
}

.xxlarge {
  z-index: -1;
  width: 750px;
  height: 750px;
  left: -375px;
  bottom: -375px;
}

.shade1 {
  opacity: 0.2;
}

.shade2 {
  opacity: 0.5;
}

.shade3 {
  opacity: 0.7;
}

.shade4 {
  opacity: 0.8;
}

.shade5 {
  opacity: 0.9;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.8);
  }
}


/* Responsive styles */
@media (max-width: 1200px) {
  .courses h1 {
      font-size: 4rem;
      margin-left: 100px;
  }

  .courses p {
      margin-left: 100px;
      font-size: 1em;
  }
}

@media (max-width: 750px) {
  .courses {
      flex-direction: column;
      padding: 50px 20px;
  }

  .courses h1 {
      font-size: 3rem;
      margin-left: 0;
      text-align: center;
  }

  .courses p {
      margin-left: 0;
      text-align: center;
      font-size: 0.9em;
  }

  .courses img {
      width: 100%;
      height: auto;
      max-width: 500px;
  }
}

@media (max-width: 480px) {

  .courses h1 {
      font-size: 2.5rem;
  }

  .courses p {
      font-size:1.2em;
  }

  .hero-text {
      padding-bottom: 2rem;
  }

  .hero-text h1 {
    margin-top: -25%;
}
.small{
  z-index: -1;
  width: 100px;
  height: 100px;
  left: -50px;
  bottom: 100px;
}

.medium{
  z-index: -1;
  width: 200px;
  height: 200px;
  left: 50px;
  bottom: 100px;
}

.large{
  z-index: -1;
  width: 200px;
  height: 200px;
  left: -100px;
  bottom: 50px;
}

.xlarge{
  z-index: -1;
  width: 300px;
  height: 300px;
  left: -150px;
  bottom: 0px;
}

.xxlarge{
  z-index: -1;
  width: 400px;
  height: 400px;
  left: -200px;
  bottom: -50px;
}
}

/* Ensure no extra space on the right */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* cards */
.services {
  padding: 100px 50px;
  padding-top: 0px;
  color: #fff;
  text-align: center;
}

.services h2 {
  font-size: 46px;
  margin-bottom: 20px;
  color: #8756ff;
  font-family: "Inter", sans-serif;
}

.services p {
  font-size: 20px;
  margin-bottom: 50px;
  color: #211951;
  font-family: "Inter", sans-serif;
}

.services-box {
  overflow-x: scroll;
  white-space: nowrap;
  padding-bottom: 20px;
  -ms-overflow-style: none;
  scrollbar-width: 70%;
  padding-right: 5rem;
}

.services ::-webkit-scrollbar-track {
  border-radius: 5px;
}

.services ::-webkit-scrollbar {
  height: 5px;
}

.services ::-webkit-scrollbar-thumb {
  background-color: #8756ff;
  border-radius: 5px;
}

.service-card {
  display: inline-block;
  width: 300px;
  margin-right: 20px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 8px #8576ff;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 350px;
  margin: 1.5rem;
}

.service-card:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #8576ff;
}

.service-header img {
  width: 45px;
  height: 45px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.service-header a {
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  color: #8576ff;
  background-color: #ffffff;
  padding: 10px;
  font-family: "Inter", sans-serif;
  border-radius: 5px;
}

.service-info {
  padding: 20px;
  background-color: #8576ff;
}

.service-info h3 {
  font-size: 24px;
  margin: 0;
  font-family: "Inter", sans-serif;
}

.service-footer {
  padding: 20px;
  text-align: center;
  background-color: #fff;
}

.service-footer img {
  width: 100%;
  height: 160px;
  border-radius: 5px;
}

.service-buttons {
  margin-top: 40px;
  align-items: center;
  justify-content: center;
}

.service-buttons .btn {
  background-color: #ffffff;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  border: 2px solid #000;
}

/* Media Queries */
@media (max-width: 1200px) {
  .services {
    padding: 80px 30px;
  }
  
  .services h2 {
    font-size: 36px;
  }
  
  .services p {
    font-size: 18px;
  }
  
  .service-card {
    width: 250px;
    height: 300px;
    margin: 1rem;
  }
  
  .service-info h3 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 20px;
  }
  
  .services h2 {
    font-size: 32px;
  }
  
  .services p {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .service-card {
    width: 220px;
    height: 280px;
    margin: 0.5rem;
  }
  
  .service-info h3 {
    font-size: 20px;
  }
  
  .services-box {
    padding-right: 2rem;
  }
  .small{
    z-index: -1;
    width: 100px;
    height: 100px;
    left: -50px;
    bottom: 100px;
  }
  
  .medium{
    z-index: -1;
    width: 200px;
    height: 200px;
    left: 50px;
    bottom: 100px;
  }
  
  .large{
    z-index: -1;
    width: 200px;
    height: 200px;
    left: -100px;
    bottom: 50px;
  }
  
  .xlarge{
    z-index: -1;
    width: 300px;
    height: 300px;
    left: -150px;
    bottom: 0px;
  }
  
  .xxlarge{
    z-index: -1;
    width: 400px;
    height: 400px;
    left: -200px;
    bottom: -50px;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 40px 10px;
  }
  
  .services h2 {
    font-size: 28px;
  }
  
  .services p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .service-card {
    width: 180px;
    height: 250px;
    margin: 0.5rem;
  }
  
  .service-info h3 {
    font-size: 18px;
  }
  
  .services-box {
    padding-right: 1rem;
  }
}

/* Bar Section */
.bar {
  margin-top: 50px; /* Reduced margin-top for a smaller container */
  background-color: #8576ff;
  color: #211951;
  padding: 10px; /* Reduced padding for a smaller container */
  text-align: center;
}

.bar-flex-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px; /* Added padding for a smaller container */
}

.bar-content p {
  font-size: 30px;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 3;
  margin: 8px;
  transition: color 0.3s ease;
}

.bar-content p:hover {
  color: white;
}

.bar-flex-container img {
  width: 25px;
}

/* Media Queries */
@media (max-width: 1200px) {
  .bar-content p {
    font-size: 25px;
    line-height: 2.5;
  }

  .bar-flex-container img {
    width: 20px;
  }
}

@media (max-width: 768px) {
  .bar-flex-container {
    justify-content: space-around;
  }

  .bar-content p {
    flex: 1 1 45%;
    text-align: center;
    font-size: 22px;
    line-height: 2.2;
  }

  .bar-flex-container img {
    width: 18px;
  }
}

@media (max-width: 480px) {
  .bar-flex-container {
    flex-direction: column;
    align-items: center;
  }

  .bar-content p {
    flex: 1 1 100%;
    text-align: center;
    font-size: 20px;
    line-height: 2;
  }

  .bar-flex-container img {
    width: 15px;
  }
}

/* Working process section styles */
* {
  box-sizing: border-box;
}

body {
  background-color: #f5f7f8;
  font-family: Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

.container:hover .content {
  transform: scale(1.05);
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .container:hover .content {
    transform: scale(1.03);
  }
}

.timeline {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: 5rem;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: #211951;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-right: 20px;
}

.container::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #8576ff;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

/* .container-left{
    border-left: 4px solid #211951;
  }

  .container-right{
    border-right: 4px solid #211951;
  }
   */
/* .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
  }
  
  .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  } */

.right::after {
  left: -16px;
}

.content {
  padding: 20px 30px;
  /* background-color: #8576ff; */
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .timeline::after {
    left: 31px;
  }

  .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .container::before {
    left: 60px;
    border: medium solid rgb(239, 37, 37);
    border-width: 10px 10px 10px 0;
    border-color: transparent rgb(167, 45, 45) transparent transparent;
  }

  .left::after,
  .right::after {
    left: 15px;
  }

  .right {
    left: 0%;
  }
}

/* career */
.career h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #8756ff;
  font-family: "Inter", sans-serif;
}

.career p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 4rem;
  color: #211951;
  font-family: "Inter", sans-serif;
  padding: 0 2rem;
}

@media (min-width: 576px) {
  .career h2 {
    font-size: 40px;
  }

  .career p {
    font-size: 18px;
    padding: 0 4rem;
  }
}

@media (min-width: 768px) {
  .career h2 {
    font-size: 44px;
  }

  .career p {
    font-size: 19px;
    padding: 0 8rem;
  }
}

@media (min-width: 992px) {
  .career h2 {
    font-size: 46px;
  }

  .career p {
    font-size: 20px;
    padding: 0 12rem;
  }
}


/* Footer section */
/*wrapper*/
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #F5F7F8;
}

.footer {
  background-color: #F5F7F8;
  color: #8576FF;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  /* Change font family */
  position: relative;
  /* Position relative for absolute positioning */
}

.footer-divider {
  position: absolute;
  top: -1px;
  /* Position above the footer */
  right: 0;
  left: 0;
  height: 1px;
  /* Height of the divider */
  background-color: #8576FF;
  /* Divider color */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* Align items vertically top */
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  /* Reduce the gap between sections */
  position: relative;
  /* Position relative for absolute positioning */
}

.footer-divider-vertical {
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(29% - 1px);
  /* Position at the end of the left column */
  width: 1px;
  /* Width of the divider */
  background-color: #8576FF;
  /* Divider color */
}

.footer-right {
  flex: 2.9;
  /* Right content covers 3/4 of the container */
}

.footer-left {
  /* flex: 1.1; Left content covers 1/4 of the container */
  display: flex;
  /* Display columns side by side */
  gap: 20px;
  /* Gap between columns */
}

.footer-content {
  display: flex;
  align-items: center;
}

.footer-img {
  margin-right: 20px;
  /* Space between image and content */
}

.footer-img img {
  width: 100px;
  /* Adjust image width as needed */
  height: auto;
  /* Maintain aspect ratio */
  margin-right: 3px;
  /* Space between image and content */
}

.content {
  flex: 1;
  /* Take remaining space */
  padding: 0 10px;
}

.content h3 {
  line-height: 25px;
  font-size: 20px;
  /* Increase font size */
  font-weight: 500;
  /* Make text bold */
  /* line-height: 1.2;  */
  text-wrap: stable;
}

.contact-box {
  display: flex;
  gap: 20px;
  /* Space between contact items */
  margin: 10px;
}

.contact-box1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.contact-item {
  background-color: #fcfcfd;
  color: #333;
  padding: 10px 20px;
  border: 2px solid #8576ff;
  border-radius: 25px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}

.contact-item span {
  font-weight: bold;
  margin-right: 5px;
  /* Space between label and content */
}

.contact-item:hover {
  background-color: #8576ff;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
  border-top: 1px solid #8576ff;
}

.footer-bottom i {
  color: #8576FF;
  margin: 5px;
  font-size: larger;
}

.footer-bottom a {
  color: #211951;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #8576ff;
  text-decoration: underline;
}

.footer-column {
  flex: 1;
  /* Each column takes equal space */
}

.footer-column ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* Arrange items in column direction */
}

.footer-column ul li {
  margin-bottom: 10px;
  display: block;
  /* Ensure each item is displayed as a block element */
}

.footer-column ul li a {
  color: #211951;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  /* Ensure each link is displayed as a block element */
}

.footer-column ul li a:hover {
  color: #8576FF;
}

/* Media Queries */
@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .footer-divider-vertical {
    display: none;
  }

  .footer-right,
  .footer-left {
    flex: 1;
    width: 100%;
  }

  .contact-box {
    flex-direction: column;
    align-items: center;
  }

  .contact-box1 {
    margin-left: 0;
  }

  .content h3,
  .footer-column h3 {
    font-size: 22px;
  }

  .contact-item span {
    display: block;
    /* Ensure each label is on a new line */
  }

  .contact-box1 .contact-item {
    text-align: center;
    font-size: 14px;
    /* Adjust font size for better readability */
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 15px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-img {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .footer-img img {
    width: 80px;
  }

  .contact-item {
    padding: 8px 16px;
    font-size: 14px;
  }

  .content h3,
  .footer-column h3 {
    font-size: 20px;
  }

  .contact-box1 .contact-item {
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
    /* Ensure the text wraps properly */
    white-space: normal;
    /* Allow text to wrap */
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 10px;
  }

  .footer-content {
    align-items: center;
  }

  .footer-img img {
    width: 60px;
  }

  .contact-item {
    padding: 6px 12px;
    font-size: 12px;
  }

  .content h3,
  .footer-column h3 {
    font-size: 18px;
  }

  .footer-bottom {
    padding: 5px;
  }

  .footer-bottom i {
    font-size: medium;
  }

  .contact-box1 .contact-item {
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
    /* Ensure the text wraps properly */
    white-space: normal;
    /* Allow text to wrap */
  }
}