@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");


* {
  margin: 0;
  color: white;
  padding: 0;
  box-sizing: border-box;
  font-family: monospace;
}

body {
  min-height: 100vh;
}

#home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Optional: Set the height as needed */
  }

  #home h1{
    font-weight: bold;
    margin-top: -50px;
  }
  #home p{
    margin-top: 10px;
  }
  #home h1, #home p, #home ul {
    text-align: center;
  }
  
  #home ul {
    list-style: none;
    padding: 0;
  }
  
  #home ul li {
    margin-top: 10px;
  }
  #home p{
    margin-bottom: 18px;
    font-weight: 500;
  }
  #home li{
    border-radius: 10px;
  }
  #home li, i{
    list-style: none;
    padding: 5px;
    font-weight: 500;
  }

  .all-about-dev{
    display: flex;
    align-items: flex-start;

  }
  .left{
    flex: 1;
    flex-basis: 40%;
    font-size: 12px;
    margin-left: 5%;
    margin-right: 5%;
  }
  pre {
    white-space: pre; /* Ensures that whitespace is preserved */
    overflow-x: auto; /* Allows horizontal scrolling */
}


.right {
  background-color: white;
  flex: 1;
  flex-basis: 60%;
  overflow-x: auto;
  border-radius: 40px;
  padding: 20px;
  margin-right: 5%;
}



#course{
    display: flex;
    margin-top: 5%;

}
.course{
    margin-top: 10%;
    align-items: flex-start;
}

.html{
    flex: 1;
    border: 1 solid black;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);;
    border-radius: 20px;
}
.card {
  height: 30%; /* Adjust the height as needed */
  display: flex;
  flex-direction: column; /* Ensures content is stacked vertically */
}

.card-body {
  flex-grow: 1; /* Allows the body to take available space */
}

.app-footer__marquee {
  color: white;
  font-style: italic;
  font-weight: 800;
  background:linear-gradient(to right, #8e2de2, #4a00e0, #ff6ec4);;
  overflow: hidden;
  font-size: calc(40px);
  font-weight: 80;
  padding: 0.25em 0;
  margin-top: 20%;
  margin-left: 5%;
  margin-right: 5%;
  white-space: nowrap;
  --marquee-animation-duration: 40s;
}

.u-marquee {
  --marquee-gap: 1ch;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}

.u-marquee,
.u-marquee__content {
  display: flex;
  gap: var(--marquee-gap);
}

.u-marquee__content {
  animation: marquee var(--marquee-animation-duration) linear infinite;
  flex-shrink: 0;
  justify-content: space-around;
  max-width: fit-content;
}

.u-marquee__content > * {
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(calc(-100% - var(--marquee-gap)));
  }
}

.custom-carousel {
  width: 90%; /* Adjust this value to your needs */
  max-width: 1800px; /* Adjust this value to your needs */
  margin: 0 auto; /* Center the carousel horizontally */
}

.custom-carousel .carousel-inner img {
  max-height: 1800px; /* Adjust this value to control image height */
  object-fit: cover; /* Ensures images cover the area properly */
}

.carousel-item {
  position: relative;
}

.carousel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  display: none; /* Initially hidden */
  text-align: center;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.carousel-item:hover .carousel-info {
  display: block; /* Show on hover */
  opacity: 1;
}

/* General section styling */
.section.bg-gray-100 {
  padding: 60px 0;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  color: #afa7a7;
}

.section-heading h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50px;
  height: 4px;
  background-color: #414243; /* Primary color */
  transform: translateX(-50%);
}

/* Card styling */
.hover-top-in {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.hover-top-in img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}

.hover-top-in:hover img {
  transform: scale(1.1);
}

.hover-top-in .text-center {
  position: relative;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hover-top-in:hover .text-center {
  transform: translateY(-10px);
}

/* Card content styling */
.text-center h6 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}

.text-center small {
  display: block;
  color: #6c757d;
}

.text-center .pt-2 {
  margin-top: 1rem;
}

.icon-sm {
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.icon-sm.bg-primary {
  background-color: none; /* Primary color */
}

.icon-sm.bg-primary:hover {
  background-color: none; /* Darker shade on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-heading h3 {
      font-size: 2rem;
  }

  .text-center h6 {
      font-size: 1.125rem;
  }
}
@import url("https://fonts.googleapis.com/css?family=IBM%20Plex%20Sans:500|IBM%20Plex%20Sans:300");

:root {
  --m: 4rem;
}

* {
  scroll-behavior: smooth;
}


h2 {
  font-weight: 500;
  text-align: center;
  font-size: var(--m);
  margin: 0;
}

h3 {
  font-weight: 500;
  font-size: calc(0.6 * var(--m));
  margin: 0;
}


footer {
  z-index: 500;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-end;
  padding: 5rem 2vw;
  position: relative; 
  background: none; /* Removed background gradient */
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none; /* Removed background gradient */
  z-index: -7;
}

.backdrop {
  z-index: -5;
  position: absolute;
  inset: 0;
  backdrop-filter: none; /* Removed blur effect */
  -webkit-backdrop-filter: none; /* Removed blur effect */
  mask-image: none; /* Removed mask image */
  -webkit-mask-image: none; /* Removed mask image */
}

.col {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: calc(0.3 * var(--m)) calc(0.8 * var(--m));
  width: 28%;
}

.col2{
  margin-right: 10px;
}
.col3{
  margin-right: 10px;
}
.col2,
.col3 {
  background-color: #121212;
  border-radius: calc(0.5 * var(--m));
}

.social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1rem;
}

a {
  text-decoration: none;
}

.link {
  width: calc(0.8 * var(--m));
  height: calc(0.8 * var(--m));
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: calc(0.1 * var(--m));

  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  :root {
    --m: 3rem;
  }
}

@media screen and (max-width: 700px) {
  footer {
    flex-direction: column;
    padding: 5rem 20vw;
  }
  .col {
    width: 100%;
  }
  .col3{
    margin-top: 10px;
  }
}
/* Basic styling */
.team-intro {
  display: flex;
  flex-wrap: wrap; /* Allows elements to wrap in smaller screens */
  align-items: flex-start; /* Align items to the start of the flex container */
  gap: 20px; /* Space between the items */
  font-size: 15px;
}

.team-image {
  flex: 1; /* Allows the image container to grow */
  max-width: 100%; /* Prevents overflow */
}

.team-image h2 {
  margin: 0; /* Resets margin for consistency */
}

.team-description {
  margin-top: 80px;
  flex: 2; /* Allows the text container to take more space */
  max-width: 100%; /* Prevents overflow */
  margin-right: 8%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .team-intro {
    flex-direction: column; /* Stacks items vertically */
    align-items: center; /* Centers items */
  }

  .team-image, .team-description {
    text-align: center; /* Centers text inside the containers */
    max-width: 100%; /* Prevents overflow */
  }
}

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

.all-about-dev {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap */
  gap: 20px; /* Space between the items */
}

.left {
  flex: 1; /* Allows the left container to grow */
  max-width: 100%; /* Prevents overflow */
}

.right {
  flex: 2; /* Allows the right container to take more space */
  max-width: 100%; /* Prevents overflow */
  overflow-x: auto; /* Adds horizontal scrollbar if content overflows */
  background-color: white; /* Ensure background color */
  padding: 10px; /* Add padding */
}

/* Ensure the pre and code tags handle overflow correctly */
pre {
  white-space: pre; /* Preserve whitespace and formatting */
  overflow-x: auto; /* Adds horizontal scrollbar */
  background-color: white; /* Ensure background color */
  margin: 0; /* Remove default margin */
  padding: 10px; /* Add padding for better readability */
  max-width: 100%; /* Prevents overflow */
  word-wrap: break-word; /* Allows content to break if necessary */
}

code {
  display: block; /* Ensures that the code block is displayed properly */
}
