html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
}

/* NAVBAR */
.navbar {
  position: absolute;
  width: 100%;
  z-index: 10;
  padding: 1rem 3rem !important;
  border-bottom: 1px solid rgba(170, 165, 165, 0.795);
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
  background-color: transparent;
}

.navbar-brand {
  font-weight: 700;
  color: #fff !important;
  font-size: 18px;
  letter-spacing: 2px;
}

.nav-link {
  color: #fff !important;
  margin: 0 15px;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #ffc107 !important;
}

.btn-yellow {
  background: #ffc107;
  color: #000;
  font-weight: 700;
  border-radius: 4px;
  padding: 14px 30px;
  border: none;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-yellow:hover {
  background: #ffc107;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
}

.carousel-item {
  height: 100vh;
  position: relative;
}

/* BACKGROUND IMAGE */
.slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* LEFT DARK GRADIENT */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 9, 15, 0.97) 50%,
    rgba(0, 0, 0, 0)
  );
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding-top: 150px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.tag {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 65px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero p {
  color: #d1d1d1;
  margin: 20px 0 30px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
}

.btn-outline-link {
  color: #fff;
  text-decoration: underline;
  margin-left: 20px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.btn-outline-link:hover {
  color: #ffc107;
}

/* ARROWS */
.carousel-control-prev,
.carousel-control-next {
  width: 55px;
  height: 55px;
  background: #ffc107;
  color: black;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #ffc107;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .overlay {
    width: 100%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-content {
    padding-top: 140px;
  }
}

.services-section {
  margin: 40px 0;
}

.section-tag {
  color: #f6af17;
  margin-bottom: 8px;
  letter-spacing: 1.3px;
  font-weight: 700;
  font-size: 14px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0c3246;
}

/* CARD */
.service-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 40px 20px 0;
  text-align: center;
  transition: 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* ICON CIRCLE */
.icon-circle {
  width: 90px;
  height: 90px;
  background: #f3e7cf;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 40px;
}

/* TEXT */
.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
  padding: 0 10px;
}

/* READ MORE BAR */
.read-more {
  border-top: 1px solid #e5e5e5;
  margin-top: 25px;
  padding: 15px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0b1c2c;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.read-more:hover {
  background: #0c3246;
  color: #fff;
  border-top-color: #0c3246;
  transform: translateY(-2px);
}

.read-more:active {
  transform: translateY(0);
}

/* BOTTOM TEXT */
.bottom-text {
  color: #555;
  font-size: 15px;
}

.bottom-text .icon {
  margin-right: 10px;
}

.about-section {
  background: #f6f8fb;
  padding: 100px 0;
}

.about-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 20px 40px rgba(22, 30, 45, 0.12);
}

.about-img-wrap img {
  width: 100%;
  display: block;
  border-radius: 10px;
  height: auto;
}

.trusted-badge {
  position: absolute;
  left: -49px;
  bottom: -48px;
  z-index: 999;
  background: #051b2e !important;
  text-align: center;
  color: #fff;
  padding: 13px 18px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(7, 45, 91, 0.3);
}

.trusted-badge span {
  display: block;
  font-size: 35px;
  font-weight: 900;
  margin-top: 6px;
}
.about-right-card,
.about-content {
  padding-left: 50px;
}

.about-content .section-tag {
  color: #f6af17;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.main-heading {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.work-process-section {
  background: #f6f8fb;
  padding: 80px 0;
}

.who-we-are-section {
  background: #fff;
  margin: 50px 0;
}

.gallery-layout {
  position: relative;
}

.gallery-top {
  margin-bottom: 20px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(10, 15, 50, 0.12);
}

.gallery-top img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-bottom {
  margin-top: 20px;
}

.gallery-bottom img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(10, 15, 50, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  left: 20px;
  background: #f5b636;
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(245, 182, 54, 0.35);
  z-index: 5;
}

.experience-badge i {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.3);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-we-are-section .section-tag {
  color: #f6af17;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.who-we-are-section h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.who-we-are-section .lead-text {
  color: #5f728f;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.divider-line {
  width: 80px;
  height: 4px;
  background: #f5b636;
  margin: 30px 0;
}

.testimonial-card {
  background: #f6f8fb;
  border-radius: 16px;
  padding: 28px;
}

.testimonial-card h6 {
  font-weight: 700;
  color: #0c2e56;
  font-size: 1rem;
}

.testimonial-card small {
  color: #89a0b8;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  color: #0c2e56;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.checklist li i {
  color: #f5b636;
  font-size: 1.1rem;
}

.pricing-section {
  background: #fff;
  padding: 80px 0;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e6ecf4;
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(12, 22, 42, 0.15);
}

.pricing-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #f6f8fb;
}

.pricing-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pricing-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #f5b636;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 3;
}

.price-box {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #0c2e56;
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  z-index: 3;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.price-period {
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c2e56;
  margin-bottom: 16px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.features-list li {
  color: #5f728f;
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid #e6ecf4;
}

.features-list li:last-child {
  border-bottom: none;
}

.pricing-content .btn {
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

@media (max-width: 991px) {
  .pricing-image-wrapper {
    height: 240px;
  }

  .price-box {
    padding: 14px 18px;
  }

  .price-amount {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-card {
    margin-bottom: 20px;
  }

  .pricing-image-wrapper {
    height: 220px;
  }
}

.contact-form-section {
  margin: 50px 0;
}

.contact-form-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #0c2e56;
}

.contact-form {
  background: #f3f6fb;
  padding: 34px;
}

.contact-form .row {
  margin-bottom: 20px;
}

.contact-form .form-label {
  color: #0c2e56;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-form .required {
  color: #f5b636;
}

.contact-form .form-control {
  border: 1px solid #e6ecf4;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #5f728f;
  background: #ffffff;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #f5b636;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(245, 182, 54, 0.1);
}

.contact-form .form-control::placeholder {
  color: #bcc8d8;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.captcha-display {
  background: #f9fbfd;
  border: 1px solid #e6ecf4;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #0c2e56;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.contact-form .btn {
  padding: 14px 40px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 8px;
}

/* CONTACT INFO BOX */
.contact-info-box {
  background: #0c2e56;
  color: #fff;
  padding: 50px 40px;
  border-radius: 16px;
  min-height: 100%;
}

.contact-info-box .section-tag {
  color: #f5b636;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.contact-info-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 35px;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bcc8d8;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.contact-details p {
  margin: 0;
  color: #bcc8d8;
  font-size: 0.95rem;
}

.contact-details a {
  color: #bcc8d8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #f5b636;
}

.contact-socials {
  display: flex;
  gap: 12px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-socials a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bcc8d8;
  font-size: 0.95rem;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  text-decoration: none;
}

.contact-socials a:hover {
  background: #f5b636;
  color: #0c2e56;
}

@media (max-width: 991px) {
  .contact-form-title {
    font-size: 2.2rem;
  }

  .contact-info-title {
    font-size: 1.8rem;
  }

  .contact-info-box {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .contact-form-section {
    padding: 60px 0;
  }

  .contact-form-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .contact-info-box {
    padding: 30px;
    margin-top: 30px;
  }

  .contact-info-title {
    font-size: 1.6rem;
  }
}

.map-section {
  width: 100%;
  height: 600px;
  position: relative;
  background: #f3f6fb;
  margin: 50px 0;
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-overlay-info {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  max-width: 280px;
}

.map-location-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(10, 15, 50, 0.15);
  border: 1px solid #e6ecf4;
}

.map-location-card h6 {
  font-size: 1rem;
  font-weight: 700;
  color: #0c2e56;
  margin-bottom: 4px;
}

.map-location-card p {
  font-size: 0.85rem;
  color: #5f728f;
  margin-bottom: 4px;
}

.map-location-card small {
  font-size: 0.8rem;
  color: #89a0b8;
}

.map-card-actions {
  display: flex;
  gap: 10px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #e6ecf4;
  border-radius: 8px;
  background: #f9fbfd;
  color: #0c2e56;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  background: #f5b636;
  color: #fff;
  border-color: #f5b636;
}

.map-instruction {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(12, 46, 86, 0.85);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 768px) {
  .map-section {
    height: 400px;
  }

  .map-overlay-info {
    top: 12px;
    left: 12px;
    max-width: 240px;
  }

  .map-location-card {
    padding: 12px;
  }

  .map-instruction {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .map-section {
    height: 300px;
  }

  .map-overlay-info {
    max-width: 200px;
  }
}

.work-process-section .section-tag {
  color: #f6af17;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.work-process-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.work-process-section p.subtitle {
  color: #5f728f;
  max-width: 680px;
  margin: 0 auto 40px;
}

.process-step {
  background: #fff;
  border: 1px solid #e6ecf4;
  border-radius: 16px;
  padding: 30px 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
  height: 100%;
}

.process-step:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 40px rgba(12, 22, 42, 0.15);
}

.process-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #f5b636;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.process-step h5 {
  margin-bottom: 10px;
  font-weight: 700;
}

.process-step p {
  margin: 0;
  color: #5f728f;
  font-size: 0.96rem;
}

@media (max-width: 991px) {
  .work-process-section {
    padding: 60px 0;
  }

  .work-process-section h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .work-process-section {
    padding: 50px 0;
  }

  .process-step {
    padding: 24px 14px;
  }

  .process-icon {
    width: 74px;
    height: 74px;
    font-size: 28px;
  }
}

.about-highlight-section {
  padding: 90px 0;
  background: #fff;
}

.highlight-left {
  position: relative;
  min-height: 420px;
}

.highlight-main-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(22, 30, 45, 0.15);
  position: relative;
  /* max-height: 800px; */
}

.highlight-main-img img {
  width: 100%;
  height: 100%;
  /* object-fit: 100% 100%; */
  display: block;
}

.highlight-blob {
  /* position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(255, 202, 59, 0.28), transparent 55%);
  pointer-events: none; */
}

.highlight-top-img {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 160px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(17, 32, 61, 0.2);
  border: 4px solid #fff;
  z-index: 2;
}

.highlight-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trend-block {
  background: #fff;
  border: 1px solid #e5eaf3;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(10, 15, 50, 0.08);
}

.trend-block h3 {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trend-block p {
  margin: 0 0 5px;
  font-weight: 700;
  color: #102846;
}

.trend-block small {
  color: #5f728f;
  font-size: 0.95rem;
}

.trend-up,
.trend-down {
  font-size: 1.4rem;
  color: #f5a623;
}

.trend-down {
  color: #1d7bcf;
}

@media (max-width: 991px) {
  .highlight-left {
    min-height: 360px;
  }

  .highlight-top-img {
    width: 140px;
    height: 140px;
    top: -24px;
    left: -24px;
  }

  .highlight-card {
    width: 140px;
    height: 140px;
    bottom: -28px;
  }
}

@media (max-width: 767px) {
  .about-highlight-section {
    padding: 70px 0;
  }

  .about-highlight-section h2 {
    font-size: 2rem;
  }

  .trend-block {
    min-height: 130px;
  }

  .highlight-main-img {
    min-height: 260px;
  }
}

.about-feature > img {
  width: 40px;
  margin-top: 4px;
}

.about-feature strong {
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
}

.stats-section {
  position: relative;
  padding: 80px 0 55px;
  background: url(https://images.unsplash.com/photo-1485217988980-11786ced9454?auto=format&fit=crop&w=1400&q=80)
    center / cover no-repeat;
  color: #fff;
  min-height: 393px;
}

.stats-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 22, 36, 0.75),
    rgba(8, 12, 23, 0.85)
  );
  z-index: 1;
}

.stats-section .container {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}

.site-entries {
  position: absolute;
  left: 50%;
  top: 160%;
  transform: translate(-50%, -50%);
  width: calc(100% - 60px);
  max-width: 1140px;
  z-index: 3;
}

@media (max-width: 767px) {
  .stats-section {
    padding: 140px 0 120px;
    min-height: 580px;
  }

  .site-entries {
    width: calc(100% - 24px);
  }
}

.stats-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
}

.stats-button {
  background: #ffc107;
  color: #1b1e26;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats-card {
  background: #fff;
  border-radius: 12px;
  color: #111827;
  text-align: center;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.397);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.stats-card h3 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 6px;
}

.team-section {
  padding: 150px 0 80px 0;
  background: #f5f8fc;
}
.team-section2 {
  padding: 50px 0 80px 0;
  background: #f5f8fc;
}

.section-tag {
  text-align: center;
}

.team-section .section-tag {
  color: #f6af17;
  margin-bottom: 8px;
  letter-spacing: 1.3px;
  font-weight: 700;
  font-size: 14px;
}
.team-section2 h2,
.team-section h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #0c1b33;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 35px 20px 25px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8edf5;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
}

.team-card .photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffc107;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.team-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.team-card p {
  margin-bottom: 14px;
  color: #61708b;
  font-weight: 600;
}

.team-card .socials {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card .socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #f3f6fb;
  color: #4f658b;
  border: 1px solid #e5ebf5;
  transition: all 0.25s ease;
  text-decoration: none;
}

.team-card .socials a:hover {
  background: #ffc107;
  color: #fff;
  transform: translateY(-2px);
}

.stats-card p {
  color: #64748b;
  font-weight: 600;
}

.news-section {
  /* background: #f8fafc; */
  margin: 50px 0;
}

.news-section .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
  color: #092040;
}

.news-section .card-title {
  color: #0c2b47;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.3;
}

.news-card .card-img-top {
  height: 270px;
  object-fit: cover;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}

.news-card .card-body {
  padding: 1.2rem;
  /* border-radius: 20px; */
}

.news-section .btn-warning {
  background: #ffc107;
  color: #1b1e26;
  border: none;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.news-section .btn-warning:hover {
  background: #ffc107;
}

.reviews-section {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(rgba(2, 17, 34, 0.6), rgba(2, 17, 34, 0.6)),
    url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?auto=format&fit=crop&w=1600&q=80")
      center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.reviews-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 31, 0.5);
  pointer-events: none;
}

.reviews-inner {
  position: relative;
  z-index: 2;
  width: max(90%, 960px);
  text-align: center;
  padding: 30px 20px;
}

.reviews-inner .section-tag {
  color: #f6af17;
  margin-bottom: 10px;
}

.reviews-inner h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 800;
  margin-bottom: 24px;
  font-size: 50px;
}

.review-box {
  width: 100%;
  max-width: 950px;
  margin: 0 auto 25px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px 38px;
  border-radius: 18px;
  border: 1px solid rgba(106, 125, 161, 0.2);
  box-shadow: 0 18px 32px rgba(0, 15, 44, 0.2);
}

.quote-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.review-box blockquote {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #1f2a3d;
  margin: 0;
  font-style: normal;
  text-align: center;
  font-weight: 600;
}

.review-author {
  margin-top: 18px;
  font-size: 1.7rem;
  font-weight: 800;
  color: #f6af17;
  text-align: center;
}

.review-role {
  font-size: 1rem;
  color: #607d9b;
  text-align: center;
  margin-bottom: 20px;
}

.featured-reviews-carousel {
  width: 100%;
  /* max-width: 980px; */
  margin: 0 auto 24px;
  overflow: hidden;
}

.featured-reviews-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding: 8px;
  width: max-content;
  animation: featured-reviews-slide 18s linear infinite;
}

.featured-reviews-carousel:hover .featured-reviews-track {
  animation-play-state: paused;
}

.featured-review {
  max-width: 560px;
  /* max-width: 460px; */
  background: rgb(0 0 0 / 44%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  padding: 24px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  color: #fff;
}

.featured-review .quote-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  color: #ffca07;
  font-size: 26px;
}

.featured-text {
  font-size: 1.25rem !important;
  line-height: 1.55 !important;
  color: #a39a9a !important;
  margin-bottom: 18px !important;
  /* font-weight: 600; */
  text-align: center !important;
}

.featured-author {
  color: #ffd76a;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}

.featured-author span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-top: 3px;
}

.review-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.review-avatars img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #eef4fe;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.17);
  transition: transform 0.3s ease;
}

.review-avatars img:hover {
  transform: translateY(-4px);
}

.reviews-carousel {
  margin-top: 26px;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.reviews-track {
  display: flex;
  gap: 18px;
  padding: 18px;
  width: max-content;
  animation: reviews-slide-hr 16s linear infinite;
}

.review-card {
  min-width: 300px;
  background: #fff;
  border-radius: 13px;
  padding: 18px;
  border: 1px solid rgba(161, 180, 216, 0.25);
  box-shadow: 0 10px 20px rgba(22, 33, 68, 0.1);
  color: #0f2a45;
}

.review-card .quote-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.review-card p {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 600;
  color: #1c3855;
  text-align: center;
}

.review-card strong {
  font-weight: 700;
  color: #0b205a;
  display: block;
  text-align: center;
}

.reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviews-slide-hr {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes featured-reviews-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* STICKY NAVBAR ON SCROLL */
.navbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 3rem !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease-in-out;
  z-index: 9999;
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
  color: #1f2a38 !important;
}

.navbar.scrolled .nav-link:hover {
  color: #ffc107 !important;
}

.navbar.scrolled .btn-yellow {
  background: #ffc107;
  color: #000;
}

.navbar.scrolled .btn-yellow:hover {
  background: #ffc107;
}

.right-lower > img {
  border-radius: 20px;
}

/* FOOTER TOP WIDGET */
.top-footer-contact-section {
  position: relative;
  height: 120px;
  margin-top: -70px;
  z-index: 5;
}
.top-footer-contact-section .container {
  height: 100%;
}
.top-footer-card {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  max-width: 1200px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ebedf4;
}
.top-footer-card .brand-hub {
  background: #ffcb38;
  color: #0f2b4e;
  padding: 16px 22px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 240px;
}
.top-footer-card .brand-hub h3 {
  margin: 0;
  font-size: 1.45rem;
}
.top-footer-card .brand-hub span {
  font-size: 0.82rem;
  font-weight: 600;
}
.top-footer-card .contact-item2 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a2040;
  font-weight: 600;
  font-size: 0.95rem;
  flex: 1 1 220px;
  min-width: 220px;
}
.top-footer-card .contact-item2 i {
  color: #ffbb33;
  background: #fff4da;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}

/* FOOTER */
.footer-section {
  background: #05162d;
  color: #f8fafc;
  padding: 130px 0 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-section h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 10px;
}

.footer-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list li a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-list li a:hover {
  color: #ffcb38;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(168, 202, 236, 0.25);
  color: #fff;
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #ffcb38;
  color: #0c1e38;
  transform: translateY(-2px);
}

.footer-section small,
.footer-bottom {
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 30px;
  padding-top: 16px;
  font-size: 0.85rem;
  text-align: center;
}

.footer-bottom a {
  color: #ffcb38;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 991px) {
  .navbar {
    padding: 0.7rem 1rem !important;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-content {
    padding-top: 110px;
  }

  .about-content {
    padding-left: 0;
  }

  .about-section .row {
    gap: 1.2rem;
  }

  .stats-title {
    font-size: 2.1rem;
  }

  .team-section {
    padding: 110px 0 65px;
  }

  .team-card {
    padding: 26px 16px 18px;
  }

  .featured-review,
  .review-card {
    min-width: 95%;
    max-width: 95%;
  }

  .featured-reviews-track {
    gap: 12px;
  }

  .news-section .section-title {
    font-size: 2rem;
  }

  .news-card .card-img-top {
    height: 180px;
  }

  .footer-section {
    padding: 55px 0 18px;
  }

  .footer-section h5 {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .navbar {
    padding: 0.6rem 0.8rem !important;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 14px;
  }

  .tag,
  .section-tag {
    font-size: 11px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .service-card {
    padding: 18px 10px 12px;
  }

  .read-more {
    padding: 12px;
    font-size: 12px;
  }

  .review-avatars {
    gap: 8px;
  }

  .news-card .card-img-top {
    height: 150px;
  }

  .news-section .section-title {
    font-size: 1.5rem;
  }

  .footer-section {
    padding: 36px 0 16px;
    text-align: center;
  }

  .footer-section .row {
    display: grid;
    gap: 1rem;
  }

  .footer-bottom {
    padding-top: 12px;
    font-size: 0.8rem;
  }
}
.page-header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("	https://advisorhtml.websitelayout.net/img/banner/page-title.jpg")
    center / cover no-repeat;
  color: #fff;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 17, 34, 0.6);
  z-index: 1;
}

.page-header .page-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3.5rem 1rem;
}

.page-header h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.page-header .breadcrumb {
  justify-content: center;
  background: transparent;
  margin-bottom: 0;
  padding: 0;
  --bs-breadcrumb-divider: "•";
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #ffc107;
  padding: 0 0.5rem;
}

.page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.page-header .breadcrumb-item.active {
  color: #fff;
  font-weight: 700;
}

.video-hero-section {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  background: #031b35;
}

.video-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(2, 17, 34, 0.6), rgba(2, 17, 34, 0.6)),
    url("https://advisorhtml.websitelayout.net/img/blog/blog-01.jpg")
      center/cover no-repeat;
  opacity: 0.45;
  z-index: 1;
}

.video-hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  visibility: hidden;
}

.video-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 100px 1rem;
}

.video-hero-content h2 {
  font-size: 53px;
  font-weight: 900;
  margin-bottom: 20px;
}

.video-hero-content p {
  color: #f2f8ff;
  font-size: 1.1rem;
  max-width: 760px;
  margin: 0 auto;
}

.video-hero-content .btn {
  margin-top: 1.25rem;
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .page-header {
    min-height: 240px;
  }
  .page-header h1 {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .video-hero-content {
    padding: 70px 0.75rem;
  }

  .video-hero-content h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
}
.below-icon img {
  width: 40px !important;
}
