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

/* Top bar icons */
.top-icons i {
  cursor: pointer;
  transition: 0.3s;
}

.top-icons i:hover {
  color: yellow;
}

/* Navbar */
.navbar {
  background-color: #d15102 !important;
}

.navbar .nav-link {
  color: white !important;
  font-weight: 500;
}

.navbar .nav-link:hover {
  background-color: #a63f01;
  border-radius: 5px;
}

/* Dropdown */
.dropdown-menu {
  border: none;
}

.dropdown-item:hover {
  background-color: #00040a;
  color: white;
}

/* Carousel */
.carousel img {
  height: 400px;
  object-fit: cover;
}



.hero-section {
  background: linear-gradient(to right, #0a1f44);
  padding: 60px 0;
}

.hero-img {
  border: 5px solid white;
  border-radius: 10px;
  max-width: 90%;
  box-shadow: 0 5px 5px rgb(15, 125, 139);
}


.hero-img:hover {
  transform: scale(1.01);
}

.hero-title {
  font-size: 32px;
  font-weight: bold;
}

.line {
  width: 120px;
  height: 4px;
  background-color: #00c3ff;
  margin: 10px 0 20px;
}

.hero-text {
  font-size: 16px;
  line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 24px;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .line {
    margin: 10px auto;
  }
}




/* Cards */
.card {
  background-color: wheat;
  border: none;
  transition: 0.3s;
  box-shadow: 3px 3px 3px rgb(135, 107, 107);
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 200px;
  margin: 10px auto;
  border: 2px solid white;
}

.custom-btn {
  background-color: #c94c4c;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  transition: 0.3s;
}

.custom-btn:hover {
  background-color: #a63b3b;
}

.line {
  width: 250px;
  height: 2.8px;
  background-color: #00c3ff;
  margin: 5px auto;
}



.doc-section {
  background-color: #f5f5f5;
}

.doc-img {
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 10px gray;

}


.doc-img:hover {
  transform: scale(1.01);
}


/*Whatshap btn*/


.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: green;
  color: white;
  padding: 12px;
  border-radius: 50%;
  font-size: 20px;
}



/* Footer */
.footer-section {
  background: linear-gradient(to right, #0a1f44);
}

.footer-section h5 {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 13px;
  color: lightblue;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  font-size: 13px;
  margin-bottom: 6px;
  color: lightblue;
  cursor: pointer;
  transition: 0.3s;
}

.footer-list li:hover {
  color: white;
}

/* line */
.footer-line {
  border: 1px solid lightblue;
  margin: 20px 0;
}

/* social icons */
.social-circle {
  height: 35px;
  width: 35px;
  background-color: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.social-circle i {
  color: white;
}

.social-circle:hover {
  background-color: #00c3ff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
}
/* Responsive */
@media (max-width: 576px) {
  .carousel img {
    height: 200px;
  }

  .card img {
    width: 120px;
  }
}



