body {
  font-family: "Poppins", sans-serif;
}

h2 {
  font-size: 36px;
  font-weight: 600;
}
.navbar {
  position: absolute;
  width: 100%;
  background: rgba(0, 0, 0, 0); /* Transparent background */
  z-index: 1000;
  padding: 20px 0; /* Increased navbar size */
}
.navbar-brand img {
  height: 150px; /* Adjusted logo height */
}

.navbar-nav .nav-item {
  padding: 0 15px;
}
.navbar-nav .nav-link,
.dropdown-menu .dropdown-item {
  color: #fff !important;
  position: relative;
  padding-bottom: 5px;
  font-size: 20px; /* Increased font size */
  padding: 10px 15px; /* Added padding between menu items */
}
.navbar-nav .nav-link::after,
.dropdown-menu .dropdown-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #c69642;
  left: 50%;
  bottom: 0;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover::after,
.dropdown-menu .dropdown-item:hover::after {
  width: 100%;
  left: 0;
}
.dropdown-menu {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  /*background-color: rgba(35, 30, 85, 0.9); /* Added background color */
   background-color: #c69642; 
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
}
.dropdown-toggle::after {
  display: none !important; /* Hide dropdown arrow */
}
.dropdown-menu .dropdown-item {
  font-size: 16px; /* Increased dropdown item font size */
}
.dropdown-menu .dropdown-item:hover {
  color: #c69642 !important; /* Blue background on hover */
}

.banner {
  width: 100%;
  height: 100vh;
  background: url(./assets/images/banner.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

.carousel-item {
  position: relative;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.carousel-caption {
  position: absolute;
  top: 60%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  color: white;
}
.carousel-caption h1 {
  font-size: 50px;
  font-weight: 600;
}
.carousel-caption p {
  font-size: 18px;
  margin-top: 10px;
}
.carousel-caption .btn {
  margin-top: 20px;
  background: #c69642;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #c69642;
  padding: 25px;
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
}
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: rgba(35, 30, 85, 0.9);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
  }

  .navbar-toggler {
    background-color: #c69642;
    border-radius: 5px;
    padding: 10px;
    color: #fff;
  }
  .navbar-toggler-icon {
    filter: invert(1);
  }
}

.about-section {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}
.about-section h2 {
  font-size: 36px;
  font-weight: 600;
}
.about-section p {
  font-size: 18px;
  margin-top: 10px;
}
.btn-custom {
  margin-top: 20px;
  background: #c69642;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 8px;
}

.card-section {
  padding: 80px 0;
  background: #ffffff;
}
.card {
  border: none;
  text-align: center;
}
.card-header {
  background: #c69642;
  color: white;
  font-size: 22px;
  font-weight: 600;
  padding: 15px;
}
.card-body p {
  font-size: 16px;
  margin-top: 10px;
}

.parallax-section {
  background: url(../assets/images/banner.jpg) no-repeat center center;
  position: relative;
  padding: 100px 20px;
  color: white;
}
.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.parallax-content h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}
.parallax-content p {
  font-size: 18px;
  margin-bottom: 40px;
}
.service-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}
.service-card:hover {
  transform: translateY(-10px);
}
.service-card i {
  font-size: 50px;
  margin-bottom: 15px;
}
.service-card h4 {
  font-size: 22px;
  font-weight: bold;
}
.contact-form-container {
  background: rgba(255, 255, 255, 0.2);
  padding: 30px;
  border-radius: 10px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.3);
  color: white;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ddd;
}
.contact-form .btn {
  width: 100%;
  background: #ffcc00;
  color: #c69642;
  font-weight: bold;
  padding: 12px;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}
.contact-form .btn:hover {
  background: #ffaa00;
}

.testimonial-section {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}
.testimonial {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.testimonial h5 {
  font-weight: bold;
}
.stars {
  color: #ffcc00;
  margin: 10px 0;
}

.blog-section {
  background: #fff;
  padding: 60px 20px;
}
.blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.blog-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.blog-card:hover img {
  transform: scale(1.1);
}
.blog-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 15px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.blog-card:hover .blog-title {
  opacity: 1;
}

.view-all-btn {
  display: inline-block;
  margin: 40px auto;
  padding: 10px 20px;
  background-color: #c69642;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}
.view-all-btn:hover {
 
}

.footer {
  background: #c69642;
  color: white;
  padding: 80px 0;
}
.footer h4 {
  font-size: 20px;
  margin-bottom: 15px;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li a {
  color: white;
  text-decoration: none;
}
.footer ul li a:hover {
  text-decoration: underline;
}
.social-icons a {
  margin-right: 15px;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

/*===========About / Inner Page =============*/

.banner-section {
  background: url("../assets/images/banner.jpg") no-repeat center center/cover;
  position: relative;
  padding: 150px 20px;
  color: white;
  text-align: center;
}
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.banner-content {
  position: relative;
  z-index: 1;
}

.content-section {
  padding: 60px 20px;
}
.content-title {
  text-align: left;
  margin-bottom: 40px;
}

/*=========bcertification single===========*/

.certification-item {
  position: relative;
  overflow: hidden;
}
.certification-item img {
  width: 100%;
  display: block;
}
.certification-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.certification-item:hover .certification-title {
  opacity: 1;
}
.apply-now {
  text-align: center;
  margin-top: 20px;
}

/*=========contact single===========*/

.contact-page-section {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}
.contact-page-box {
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-page-icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}
.contact-page-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/*=========blog single===========*/

.blog-sidebar {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}


/* Certificate Verification Section */
.certificate-section {
  background-color: #f8f9fa; /* Light grey background */
  padding: 50px 0;
  text-align: center;
}

/* Search Box and Button */
.search-box {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.search-box input {
  border: 2px solid #007bff;
  border-right: none;
  border-radius: 5px 0 0 5px;
  padding: 10px;
  width: 100%;
}

.search-box button {
  border: 2px solid #007bff;
  border-left: none;
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.search-box button:hover {
  background-color: #0056b3;
}

.cert-title {
    margin: 12px;
    text-decoration: none !important;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    
}

