* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: "Poppins", sans-serif;
    background-color: rgb(255, 255, 255);
    color: black;
    line-height: 1.6;
  }
  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 80px;
    background-color: rgb(35, 35, 84);
    color: white;
    position: fixed;
    width: 100%;
    z-index: 1000;
  }
  nav ul {
    display: flex;
    list-style: none;
    margin-right: 15px;
  }
  nav ul li {
    margin: 0 20px;
  }
  nav ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
   
  }
  nav ul li a:hover {
    color: yellow;
  }
  main {
    padding-top: 80px;
  }
  .firstSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
  }
  .leftSection {
    margin-bottom: 30px;
    font-size: 2rem;
  }
  .leftSection h1 .purple{
    color: blueviolet;
  }
  .leftSection h1 {
    font-size: 2.5rem;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    font-weight:500;
  }
  .leftSection .lang {
    font-size: 2.5rem;
    color: blueviolet;
  }
  .rightSection {
    max-width: 100%;
    margin-top: 30px;
    text-align: center;
  }
  .about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
  }
  .slideshow-container {
    width: 100%;
    max-width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  .slideshow-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: opacity 0.5s ease-in-out;
  }
  .slideshow-container img.active {
    opacity: 1;
  }
  .slideshow-controls {
    margin-top: 10px;
  }
  .slideshow-controls button {
    background-color: blueviolet;
    color: white;
    border: none;
    padding: 8px 16px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  .slideshow-controls button:hover {
    background-color: rgb(110, 0, 255);
  }
  .slideshow-controls button.active {
    background-color: rgb(110, 0, 255);
  }
  hr {
    border: 0;
    background-color: blueviolet;
    height: 1px;
    margin: 20px 0;
    
   
  }
  .bottom {
    background-color: rgb(35, 35, 84);
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  .bottom-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 10px 0;
  }
  .bottom-nav ul li {
    margin: 0 10px;
  }
  .bottom-nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .bottom-nav ul li a:hover {
    color: yellow;
  }
  h2{
 margin: auto;
  }
  u{
    color: blueviolet;
    font-weight: bold;
  }
  #element{
    color: blueviolet;
    font-size: 2rem;
    font-weight: 500;
  }
  .card {
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.2s, background-color 0.3s, color 0.3s, box-shadow 0.3s;
    width: 18rem;
    padding-bottom: 4rem;
    margin-bottom: 3rem;
  }

  .card:hover {
    transform: scale(1.05);
    background-color: #f8f9fa; /* Light background color on hover */
    color: #343a40; /* Dark text color on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 0 20px blueviolet; /* Glow effect */
    color: rgb(130, 4, 248);
    text-transform: none;
    text-decoration: wavy;
  }

  .card-img-top {
    height: 200px; /* Fixed height for the image */
    object-fit: cover; /* Ensure the image covers the area */
  }

  .card-body {
    padding: 1rem; /* Padding inside the card body */
    transition: color 0.3s; /* Smooth color transition on hover */
  }

  .card-title {
    font-size: 1.25rem; /* Title font size */
    font-weight: bold; /* Bold title text */
  }

  .card-text {
    font-size: 0.9rem; /* Text font size */
    color: #555; /* Text color */
  }

  .btn-primary {
    background-color: #0044ffb7; /* Primary button background color */
    border: none;
    padding: 10px 20px; /* Button padding */
    border-radius: 5px; /* Rounded corners for the button */
    text-align: center;
    text-decoration: none;
    color: #fff; /* Button text color */
    transition: background-color 0.3s; /* Smooth background color transition on hover */
  }

  .btn-primary:hover {
    background-color: blueviolet; /* Darker button background color on hover */
  }
  .border {
    border: 2px solid blueviolet; /* Blueviolet border */
    border-radius: 10px;          /* Rounded corners */
    padding: 20px;                /* Padding inside the border */
    margin: 10px 10px;            /* Margin on both sides, centering the div */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px; /* Shadow effect */
    max-width: 1000px;             /* Optional: limits the width of the div */
}
.border:hover{
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 0 20px blueviolet; /* Glow effect */
  transform: scale(1.03);
  
}
