/* Navbar */
.navbar-nav .nav-link:hover {
  color: #307c8a; /* Bootstrap primary */
}
 .get-consultant-btn:hover {
  background-color: #2e6b74;
  color: white;
}
.nav-link{
  font-weight: bolder;
  font-size: 1.1rem;
}
.get-consultant-btn{
  transition: background-color 0.3s ease;
  background-color: rgb(221, 21, 21);
  color: white;
  font-weight: bolder;
}
.navbar{
position: fixed;
box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
z-index: 999;
top: 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #edf0f3, #ced4dadc); /* darker gradient */
  padding: 60px 20px;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  box-shadow: #343a407a 0px 5px 15px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #343a40;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #495057;
}

.hero-img {
  width: 1100px;
  max-width: 100%;
  height: 500px;
}

#get-started{
  transition: background-color 0.3s ease;
    background-color: rgb(221, 21, 21);
    color: white;
    font-weight: bolder;
}
#get-started:hover{
  background-color: #2e6b74;
  color: white;
}

/* Desktop layout */
@media (min-width: 992px) {
  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }

  .hero-content {
    padding-left: 30px;
    text-align: left;
  }
}

/* Tablet & Mobile layout */
@media (max-width: 991.98px) {
  .hero .container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    margin-top: 10px;
  }

  .hero-img {
    margin-top: 30px;
    width: 400px;
    height: 200px;
  }
}

/* count section css */
.stats-section {
  background-color: #001f3f; /* Navy Blue */
  color: white;
  border-radius: 60px ;
  margin-top: -30px;
  padding: 50px 0 40px;
  max-width: 1350px;       /* or any value you prefer */
  margin-left: auto;
  margin-right: auto;
  box-shadow: #343a40 0px 5px 15px;
}

.stat-box {
  background-color: transparent;
  border: none;
  border-radius: 12px;
  padding: 5px;
  transition: transform 0.3s ease;
}

.stat-number {
  font-size: 2.3rem;
  font-weight: 600;
  color: #ffffff;
  /* margin-bottom: 5px; */
}

.stat-box p {
  font-size: 1.1rem;
  color: #f1f1f1;
  margin: 0;
}

/* why choose us section */
.why-choose-section {
  margin-top: 25px;
  background: linear-gradient(to bottom, #ffffff, #cbd0d4);
}

.why-choose-section h2 {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .why-choose-section h2 {
    font-size: 1.5rem;
  }

  .why-choose-section .list-group-item h5 {
    font-size: 1rem;
  }

  .why-choose-section .list-group-item p {
    font-size: 0.9rem;
  }
}
.text-why{
  color: rgb(202, 2, 2);
}

/* service section */
.service-card {
  background-color: rgb(19, 94, 94) !important;
  border: 2px solid #ff6f61 !important; /* light red */
  border-radius: 15px;
  color: white !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.637);
}

.but-service{
  background-color: rgb(202, 30, 30) !important ;
  color: #ffffff;
}

.but-service:hover {
  background-color: #0b635e !important;
  color: #ffffff;
  transition: background-color 0.3s ease-out, box-shadow 0.3s ease-out;
}


.service-card .icon i {
  text-align: center;
  color: white;
}

@media (max-width: 768px) {
  .icon {
    font-size: 2rem;
  }

  .services-section h2 {
    font-size: 1.8rem;
  }
}

/* FAQ section */
/* FAQ Button Styling */
.faq-btn {
  background-color: white !important;
  color: #212529;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  position: relative;
  box-shadow: none !important;
  border-radius: 0;
  justify-content: space-between;
}

/* Remove blue highlight on click */
.faq-btn:focus {
  box-shadow: none !important;
  font-size: 1.3rem;
}

/* + Symbol Styling */
.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: darkred;
  margin-left: auto;
}
.accordion-button{
  font-size: 1.2rem;
  font-weight: bold;
}

/* Shadow on answer box */
.accordion-body {
  background-color: #fff;
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
  border-radius: 0 0 5px 5px;
}

/* Remove Bootstrap arrow */
.accordion-button::after {
  display: none;
}

/* footer */
.footer-section{
  position: sticky;
  box-shadow: rgba(0, 0, 0, 0.459) 0px -5px 15px;
  z-index: 999;
  top: 0;
}

.footer-logo {
  max-width: 50px;
}