html{
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h5 {
    font-family: 'Poppins', sans-serif;
}

.card {
    border: none;
}


/* crousals */

.carousel-inner,
.carousel-item {
    height: 92vh ;
    min-height: 400px ;
}


.carousel-item img.hero {
    height: 85vh ;
    width: 100% ;
    object-fit: cover ;
}


.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 92vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.carousel-caption {
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto ;
}

/* TEXT STYLE */
.carousel-caption h5 {
    font-size: 50px;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 20px ;   
}






/* home gallery section */
.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* About page */
.team-card-img {
    height: 250px; 
    width: 100%;  
    object-fit: cover;
}


/* footer */
.footer-section {
    background-color: #151924; 
    margin-top: 60px;
}


.footer-heading {
    color: #f6c000; 
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

footer a {
  text-decoration: none;
}


.footer-links a {
    color: rgba(255, 255, 255, 0.75); 
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    
}

.footer-links a:hover {
    color: #f6c000; 
    transform: translateX(5px); 
}


/* contact page */

.form-left-side{
    background-color: rgb(0, 221, 255);

}

.icon{
    padding: 15px;
}

/* verify page */

/* NO RESULT */

.no-result {
  background: #fff3f3;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ffcaca;
  max-width: 400px;
  margin: auto;
}

.no-result h5 {
  color: #dc3545;
  font-weight: 600;
}

.no-result p {
  color: #6c757d;
  margin: 0;
}

/* LOGIN PAGE */

.login-wrapper {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.login-card {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding-bottom: 100px;
 
}

.login-card h3 {
  font-weight: 600;
}

.form-group {
  position: relative;
}

.input-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #6c757d;
}

.form-control {
  padding-left: 35px;
  height: 45px;
  border-radius: 8px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #0d6efd;
}

.btn-primary {
  height: 45px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #0b5ed7;
}