.header-logo {
  width: 8rem;
  height: 2rem;
}

/* ===== Accreditation Section ===== */
.bg-accreditation {
  background-color: #d6e8fb;
}

.accreditation-layout {
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* Left display card */
.accreditation-display {
  flex: 0 0 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accreditation-active-card {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.accreditation-active-card .accreditation-logo {
  max-width: 220px;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.accreditation-active-card .accreditation-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: black;
  margin: 0;
}

/* Right list - 2 columns */
.accreditation-list {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.accreditation-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.accreditation-item:hover {
  background: #f0f7ff;
  border-color: #a8cfff;
}

.accreditation-item.active {
  background: #eafaf1;
  border-color: #22c55e;
}

.accreditation-item-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 1.5px dashed #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.accreditation-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accreditation-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.accreditation-item.active span {
  color: #15803d;
}

/* Responsive */
@media (max-width: 1199px) {
  .accreditation-item span {
    font-size: 0.68rem;
  }
}

@media (max-width: 991px) {
  .accreditation-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .accreditation-display {
    flex: none;
    width: 100%;
    max-width: 340px;
  }

  .accreditation-list {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .accreditation-list {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8edf3;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(1, 105, 254, 0.12);
}

.service-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #cd7100;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.service-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.6rem;
}

.service-card-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 1.2rem;
  flex: 1;
}

.service-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #f48803;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition:
    gap 0.2s ease,
    color 0.2s ease;
}

.service-card-link:hover {
  color: #a75c00;
  gap: 8px;
  text-decoration: none;
}

@media (max-width: 767px) {
  .service-card-img-wrap {
    height: 190px;
  }
}

/* ============================================================
   Lahari Lakshmi Management Services — Extracted Inline Styles
   ============================================================ */

/* Hero / Concept Section */
.section-concept {
  background-image: url(img/landing/header_bg.jpg);
  background-size: cover;
  background-position: center;
  animation-duration: 750ms;
  animation-delay: 300ms;
  animation-fill-mode: forwards;
}

/* Accreditation Section */
.bg-accreditation {
  background-color: #0169fe !important;
}

/* "6 Reasons" Section */
.section-reasons {
  background-repeat: no-repeat;
  background-color: #0169fe !important;
  background-image: url(img/landing/reason_bg.png);
}

/* Floating dots image in "6 Reasons" section */
.reasons-dots {
  bottom: 184px;
  left: 70px;
}

/* Feature image wrapper */
.theme-options-wrapper {
  height: 0;
  padding-bottom: 16%;
}

.custom-header-bar:before {
  background-image: linear-gradient(
    150deg,
    #cd7100 0%,
    #cd7100 30%,
    #cd7100 70%,
    #cd7100 100%
  ) !important;
}

.owl-carousel.carousel-center-active-item-2 .owl-item.active > div {
  background-color: #cd7100 !important;
}

.page-header-banner {
  position: relative;
  background-image: url("path/to/your/banner-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
}
.page-header-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
  z-index: 1;
}

.page-header-banner .container {
  position: relative;
  z-index: 2;
}

.page-header-banner h1,
.page-header-banner .breadcrumb {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header-banner .breadcrumb a {
  color: #ffffff;
  opacity: 0.9;
}

.page-header-banner .breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.page-header-banner .breadcrumb .active {
  color: #ffffff;
  opacity: 0.7;
}

/* Certificate Carousel Wrapper */
.certificate-carousel-wrapper {
  position: relative;
  padding: 40px 0;
  max-width: 700px;
  margin: 0 auto;
}

/* Certificate Carousel */
.certificate-carousel {
  overflow: visible;
  width: 100%;
  padding: 0 80px;
}

.certificate-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Certificate Item */
.certificate-item {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
  pointer-events: none;
}

.certificate-item.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.certificate-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.certificate-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #e9ecef;
}

.certificate-footer {
  padding: 25px 30px;
  background: #fff;
  text-align: left;
}

.certificate-usage {
  font-size: 14px;
  color: #6c757d;
  display: block;
  margin-bottom: 8px;
}

.certificate-title {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-verify {
  background: #7c4dff;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(124, 77, 255, 0.3);
}

.btn-verify:hover {
  background: #6a3de8;
  box-shadow: 0 6px 15px rgba(124, 77, 255, 0.4);
  transform: translateY(-2px);
}

/* Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
  background: #0088cc;
  border-color: #0088cc;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.carousel-nav:hover i {
  color: #fff;
}

.carousel-nav i {
  font-size: 18px;
  color: #495057;
  transition: color 0.3s ease;
}

.carousel-nav-prev {
  left: 0;
}

.carousel-nav-next {
  right: 0;
}

.carousel-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-nav:disabled:hover {
  background: #fff;
  border-color: #e9ecef;
}

.carousel-nav:disabled:hover i {
  color: #495057;
}

/* Responsive Design */
@media (max-width: 767px) {
  .certificate-carousel-wrapper {
    max-width: 100%;
    padding: 30px 0;
  }

  .certificate-carousel {
    padding: 0 60px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .carousel-nav i {
    font-size: 14px;
  }

  .certificate-footer {
    padding: 20px;
  }

  .certificate-title {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .certificate-carousel {
    padding: 0 50px;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
  }

  .carousel-nav i {
    font-size: 12px;
  }
}
/* .justify-content-center{
  gap: 2px;
} */

/* .image-box{
      background: white;
    padding: 10px;
} */

/* ── Hero Contact Form ───────────────────────────── */
.hero-contact-form-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 27px 32px 0px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    position: relative;
    overflow: hidden;
    /* position: relative;
    top: -40px; */
}

.hero-contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cd7100, #f59332);
}

.hero-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a !important;
    margin-bottom: 4px;
}

.hero-form-subtitle {
    font-size: 0.88rem;
    color: #777 !important;
    margin-bottom: 22px;
}

.hero-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hero-form-group {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
}

.hero-form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 5px;
}

.hero-form-group input,
.hero-form-group select,
.hero-form-group textarea {
    border: 1.5px solid #e0e0e0;
    border-radius: 7px;
    padding: 9px 13px;
    font-size: 0.9rem;
    color: #222;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: inherit;
    width: 100%;
}

.hero-form-group input:focus,
.hero-form-group select:focus,
.hero-form-group textarea:focus {
    border-color: #cd7100;
    box-shadow: 0 0 0 3px rgba(205, 113, 0, 0.12);
    background: #fff;
}

.hero-form-group textarea {
    resize: vertical;
}

.hero-form-btn {
    width: 100%;
    background: #cd7100;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    transition: background 0.2s, transform 0.15s;
}

.hero-form-btn:hover {
    background: #b36200;
    transform: translateY(-1px);
}

.hero-form-btn i {
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.hero-form-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 576px) {
    .hero-form-row {
        grid-template-columns: 1fr;
    }
    .hero-contact-form-wrap {
        padding: 24px 18px;
    }
}


/* ---- SECTION BASE ---- */
#section-concept {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  background: transparent !important;
}
 
/* ---- VIDEO CAROUSEL BACKGROUND ---- */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
 
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
  object-position: center top;
}
 
.hero-video.active {
  opacity: 1;
}
 
/* .hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.70) 0%,
    rgba(10, 20, 40, 0.55) 60%,
    rgba(0, 0, 0, 0.45) 100%
  );
  z-index: 1;
} */
 
/* Carousel Dots */
.hero-carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
 
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
 
.hero-dot.active {
  background: #cd7100;
  border-color: #cd7100;
  transform: scale(1.25);
}
 
/* ---- HERO CONTENT ---- */
.hero-content-wrap {
  position: relative;
  z-index: 5;
  padding-top: 80px;
  padding-bottom: 80px;
}
 
.hero-brand-name {
  color: #cd7100;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
 
.hero-headline {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
 
.hero-highlight {
  color: #cd7100;
  position: relative;
}
 
.hero-subtext {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}


.p-static{
  max-width: 40rem;
}
.p-static p{
  color: rgba(255, 255, 255, 0.634) !important;
}
.page-header-title-border{
  display: none;
}


.certificate-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: 30px 0;
}

.certificate-carousel {
  width: 100%;
}

.certificate-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.certificate-item {
  min-width: 100%;
  display: none;
  padding: 20px;
}

.certificate-item.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.certificate-card {
  width: 100%;
  max-width: 600px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.certificate-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 600px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fa9f1f;
  color: #fff;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50px;
  font-size: 18px;
  z-index: 10;
  transition: background 0.3s ease;
}

.carousel-nav:hover:not(:disabled) {
  background: #acacac6d;
}

.carousel-nav:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.carousel-nav-prev {
  left: 20px;
}

.carousel-nav-next {
  right: 20px;
}

.certificate-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .carousel-nav {
    padding: 8px 12px;
    font-size: 14px;
  }

  .carousel-nav-prev {
    left: 10px;
  }

  .carousel-nav-next {
    right: 10px;
  }

  .certificate-card {
    min-height: 300px;
  }
}

p {
  text-align: justify !important;
  font-size: 12px !important;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
  letter-spacing: 0;
  word-spacing: normal;
  hyphens: auto;
  line-height: 1.6 !important;
}

#footer {
  margin-top: 0 !important;
}
/*****************/
.btn-dark {
    background-color: #18152a!important;
    border-color: #212529 #212529 #0a0c0d;
    color: #FFF;
    --color: #212529;
    --hover: #32383e;
    --disabled: #212529;
    --active: #101214;
}