.container {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}
.section {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.section img {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  flex: 1;
}
.section-content {
  flex: 1;
  padding: 20px;
}
.section-content h2 {
  font-family: "stubi", arial;
  color: transparent;
  font-size: 40px;
  background-image: url("../img/line1.png");
  -webkit-text-stroke: 1px #0078ff;
  -webkit-background-clip: text;
  background-position: 0 0;
  animation: stubi 20s linear infinite;
}

.section-content p {
  line-height: 1.6;
}
.cta {
  text-align: center;
  margin-top: 20px;
}
.cta a {
  text-decoration: none;
  background: #0078ff;
  color: #1a1a1a;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background 0.3s;
}
.cta a:hover {
  background: #ff9000;
}
footer {
  text-align: center;
  padding: 20px;
  background: #1a1a1a;
  color: #ccc;
  font-size: 0.9rem;
}

@media screen and (max-width: 800px) {
  .section img {
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .section-content h2 {
    font-size: 25px;
  }
} /* Global styling for the slider */
.glide {
  position: relative;
  max-width: 80%;
  height: 100vh;
  overflow: hidden;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  object-fit: cover;
  transform: scale(0.7);
}

.slide-content img {
  transform: translateY(-20%);
}

@media screen and (max-width: 950px) {
  .glide {
    position: relative;
    max-width: 80%;
    height: 100vh;
    overflow: hidden;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    object-fit: cover;
    transform: scale(1);
  }
  .slide-content img {
    transform: translateY(0%);
  }
}

@media screen and (max-width: 550px) {
  .glide {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
    transform: scale(1);
    height: auto;
  }
}

.glide__slides {
  display: flex;
}

.glide__slide {
  position: relative;
}

.slide-content img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
  transition: opacity 0.5s ease;
}

.overlay h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1.2em;
}

.glide__slide:hover .overlay {
  opacity: 1;
}

.glide__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2;
}

.glide__arrow {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1.5em;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.glide__arrow:hover {
  background: rgba(0, 0, 0, 1);
}

.glide__bullets {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.glide__bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.glide__bullet:hover,
.glide__bullet:focus {
  background: white;
}

.cta-section {
  background: #0056b3;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section .btn {
  background: white;
  color: #0056b3;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.cta-section .btn:hover {
  background: #e9ecef;
}
