/* ===== Base hover dropdown ===== */
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}

/* ===== Submenu positioning ===== */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
  display: none;
  position: absolute;
}

/* ===== Show only submenu on its own hover ===== */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Small visual tweak for arrow cursor */
.dropdown-toggle::after {
  margin-left: 0.3rem;
}

.limit-3-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- GENERAL STYLES --- */
body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background-color: #f7f9fc;
  margin: 0;
  padding: 0;
}

/* --- TESTIMONIAL SECTION --- */
.testimonial-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff, #f2f6fc);
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 50px;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 30px;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00bfa6;
  margin-bottom: 20px;
}

.testimonial-comment {
  font-style: italic;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-name {
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #777;
}

/* --- QUOTATION SECTION --- */
.quotation-section {
  background: linear-gradient(135deg, #00bfa6, #0077b6);
  color: #fff;
  padding: 60px 20px;
}

.quotation-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.quotation-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.quotation-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.btn-modern {
  display: inline-block;
  background: #fff;
  color: #0077b6;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-modern:hover {
  background: #00bfa6;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.quotation-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quotation-contact .icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.quotation-contact .info span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

.quotation-contact .info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }

  .quotation-box {
    flex-direction: column;
    text-align: center;
  }
}
.bg-header {
  position: relative;
  background-size: cover;
  background-position: center;
}

.bg-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* 50% dark overlay */
  z-index: 1;
}

.bg-header .row {
  position: relative;
  z-index: 2;
}

.contact-section-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f3 100%);
  position: relative;
  overflow: hidden;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
}

.contact-header p {
  color: #555;
  margin-top: 10px;
  font-size: 1.1rem;
}

.contact-wrapper {
  margin-top: 60px;
}

.contact-form-area {
  background: #ffffffc9;
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.form-control {
  border: none;
  border-radius: 10px;
  background: #f5f5f5;
  padding: 14px 20px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: #fff;
  box-shadow: 0 0 0 3px #a7c7e7;
  outline: none;
}

.btn-modern {
  background: linear-gradient(135deg, #0052d4, #4364f7, #6fb1fc);
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(67,100,247,0.3);
}

.contact-info-area .info-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-info-area .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-box i {
  font-size: 2rem;
  color: #4364f7;
  margin-bottom: 10px;
}

.info-box h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.map-container {
  margin-top: 60px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}
.about_area_modern {
    padding: 100px 0;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
}

.about_image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
}

.about_image:hover {
    transform: scale(1.05);
}

.about_image .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    mix-blend-mode: multiply;
}

.about_content .title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about_content .highlight {
    background: linear-gradient(90deg, #4364f7, #6fb1fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    width: 60px;
    height: 4px;
    background: #4364f7;
    margin: 20px 0;
    border-radius: 2px;
}

.divider_small {
    width: 40px;
    height: 3px;
    background: #6fb1fc;
    margin: 10px 0;
    border-radius: 2px;
}

.short_description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.description_card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.description_card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.description_card p {
    color: #555;
    line-height: 1.7;
}

.stats {
    margin-top: 25px;
    gap: 30px;
}

.stat_item {
    text-align: center;
}

.stat_item .counter {
    font-size: 2rem;
    font-weight: 700;
    color: #4364f7;
    display: block;
}

.stat_item p {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}
.about_area_modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e0eafc 100%);
}

.about_image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.about_image:hover {
    transform: scale(1.05);
}
.bg-header .overlay {
  background: none !important;
}
.image_overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.25); */
    mix-blend-mode: multiply;
    border-radius: 25px;
}

.about_content .title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about_content .highlight {
    background: linear-gradient(90deg, #ff6a00, #ee0979);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    width: 70px;
    height: 4px;
    background: #ff6a00;
    margin: 20px 0;
    border-radius: 2px;
}

.divider_small {
    width: 50px;
    height: 3px;
    background: #ee0979;
    margin: 10px 0;
    border-radius: 2px;
}

.short_description {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 30px;
}

.description_card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.description_card h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.description_card p {
    color: #555;
    line-height: 1.7;
}

.stats {
    margin-top: 25px;
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
}

.stat_item {
    text-align: center;
    flex: 1 1 150px;
    margin: 10px;
}

.stat_item .counter {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff6a00;
    display: block;
}

.stat_item p {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}
