
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #f3f4f5, #e9eef5);
}
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #333;
  padding: 10px;
  text-align: right;
  margin-right: 20px;
  word-spacing: 20px;
  z-index: 1000;
}

a {
  border: 1px solid white;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  border-radius: 10px;
  margin-top: 2px;
}

a:hover {
  background-color: #806d21;
  color: rgb(254, 253, 253);
}

.para {
  float: left;
  color: bisque;
  word-spacing: 5px;
  margin-top: 2px;
  font-family: cursive;
  font-size: 30px;
}

@media (max-width: 768px) {

  nav {
      text-align: center;
      padding: 10px;
      height: 50px;
      word-spacing: 0.9px;
  }

  .nav-links a {
      display: block;
      margin-top: 10px;
      padding: 12px 20px; 
  }

 
  .para {
      font-size: 10px;
      margin-top: 10px;
      word-spacing: 0.5px;
  }
  
  a {
      width: auto;
      padding: 12px 7px;
      border:1px solid beige;
      border-radius: 5px;
      font-size: 6px;
      gap: 1px;
  }
}

section{
background-image: url('./images/black.jpg');
background-repeat: no-repeat;
background-size: cover;
height: 430px;
padding: 10px;
color: white;

}
.koushi{
  margin-left: 50px;
  margin-right: 50px;
}
#hero h1 {
font-size: 2.5rem;
line-height: 1.5;
}

#hero .lead {
font-size: 1.25rem;
}

/* For mobile devices */
@media (max-width: 768px) {
#hero h1 {
  font-size: 1.8rem; 
}
section{
    height: 600px;
    padding: 10px;
}

#hero .lead {
  font-size: 1rem; 
}

.btn {
  font-size: 0.9rem; 
  padding: 12px 24px;     }
}


@media (max-width: 480px) {
#hero h1 {
  font-size: 1.5rem; 
  padding: 10px; 
}

#hero .lead {
  font-size: 0.9rem; 
}

.btn {
  font-size: 0.8rem;
  padding: 10px 20px;
}
}
.highlight {
  color: #007bff;
}
.btn-primary {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  border: none;
}
.btn-primary:hover {
  background: linear-gradient(to right, #2575fc, #6a11cb);
}
.feature-card:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
footer {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}

footer .footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

footer .footer-content p {
margin: 10px 0;
font-size: 14px;
}

footer .footer-content a {
color: #fff;
text-decoration: none;
transition: color 0.3s ease;
}

footer .footer-content a:hover {
color: #FF5722; 
}

/* Responsive Styles for Footer */
@media (max-width: 480px) {
footer .footer-content p {
font-size: 12px; 
}

footer .footer-content a {
font-size: 14px; 
}
}
.featurette-left, .featurette-right {
    opacity: 0;
    transform: translateX(100%); /* Default off-screen */
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}
.featurette-left {
    transform: translateX(-100%); /* Start from the left for .featurette-left */
}
.featurette-right {
    transform: translateX(100%); /* Start from the right for .featurette-right */
}
/* Final state when in view */
.featurette-left.in-view {
    transform: translateX(0);
    opacity: 1;
}
.featurette-right.in-view {
    transform: translateX(0);
    opacity: 1;
}
/* Styling for the page */
.featurette-divider {
    margin: 3rem 0;
    border-top: 3px solid #545353;
}
@media (max-width: 768px) {
  .featurette-left, .featurette-right {
      transform: translateY(100%); /* Transition vertically instead of horizontally */
  }
  .featurette-left.in-view, .featurette-right.in-view {
      transform: translateY(0); /* Slide up into view */
      opacity: 1;
  }
  .featurette-divider {
      margin: 2rem 0; /* Reduce spacing for smaller screens */
  }
}

.row.featurette {
  display: flex;
  align-items: center;
  gap: 20px;
}

.col-md-7 {
  flex: 1;
}

.col-md-5 {
  flex: 1;
  text-align: center;
}

.col-md-5 img {
  max-width: 100%; 
  height: auto; 
}

@media (max-width: 768px) {
  .row.featurette {
    flex-direction: column; 
  }

  .col-md-5 {
    margin-top: 20px; 
  }

  .col-md-5 img {
    max-width: 100%;
    height: 200px;
  }
  .lead{
    font-size: 0.5rem;
  }
}
