/* ===== GLOBAL POPPINS FONT ===== */
* {
  font-family: 'Poppins', sans-serif !important;
  margin: 0 ;
    padding: 0 ;
    box-sizing: border-box;

}
p{
    font-weight: 400;
}


/* ===== NAVBAR BASE ===== */
.main-navbar {
  background: #000;
  padding: 12px 0;
}

.navbar-brand img {
  height: 55px;
}

/* LINKS */
.nav-link {
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px !important;
}

/* HOME COLOR */
.home-active {

  color: #9ac43c !important;
}

/* FULL TIME ACTIVE BOX */
.active-box > .nav-link {
 
  color: #fff !important;
}

/* HOVER COLOR */
.nav-link:hover {
  color: #fff !important;
   background: #8dbb3c;
}

/* ===== COMMON DROPDOWN (ALL SAME) ===== */
.custom-dropdown {
  position: relative;
}

.custom-dropdown:hover .custom-menu {
  display: block;
}

/* DROPDOWN BOX */
.custom-menu {
  display: none;
  width: 330px;
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-top: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* DROPDOWN ITEMS */
.custom-menu .dropdown-item {
  padding: 14px 22px;
  font-size: 18px;
  color: #777;
  border-bottom: 1px solid #eee;
  text-decoration: underline;
  background: transparent;
}

/* LAST ITEM */
.custom-menu .dropdown-item:last-child {
  border-bottom: none;
}

/* ITEM HOVER */
.custom-menu .dropdown-item:hover {
  background: #f7f7f7;
  color: #000;
}

/* ===== SOCIAL ICONS ===== */
.social-area {
  display: flex;
  gap: 18px;
  border-left: 1px solid #333;
  padding-left: 20px;
}

.social-area a {
  color: #fff;
  font-size: 15px;
}

.social-area a:hover {
  color: #9ac43c;
}

/* MOBILE */
.navbar-toggler {
  border: 1px solid #555;
}

.navbar-toggler-icon {
  filter: invert(1);
}


.hero-slider {
  position: relative;
}

.hero-slider img {
  height: 550px;
  object-fit: cover;
}

/* TEXT POSITION */
.custom-caption {
  position: absolute;
  left: 8%;
  top: 45%;
  transform: translateY(-50%);
  text-align: left;
}

/* TITLE BOX */
.title-box {
  display: inline-block;
  padding: 12px 25px;
  border: 3px solid #2c4fa3;
  color: #2c4fa3;
  font-size: 34px;
  font-weight: 700;
  background: rgba(255,255,255,0.6);
}

/* TAGLINE */
.tagline {
  margin-top: 15px;
  font-size: 26px;
  color: #444;
  font-style: italic;
}

/* ARROWS */
.custom-arrow {
  background-color: rgba(0,0,0,0.6);
  padding: 18px;
  border-radius: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-slider img {
    height: 350px;
  }
  .title-box {
    font-size: 20px;
  }
  .tagline {
    font-size: 16px;
  }
}


.features-section {
  padding: 60px 0;
  background: #fff;
}

/* ICON CIRCLE */
.icon-circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #0a66a6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 40px;
}

/* TEXT */
.feature-box h5 {
  font-size: 18px;
  font-weight: 500;
  color: #555;
}

/* HORIZONTAL LINE (HOUR LINE) */
.feature-line {
  width: 100%;
  height: 2px;
  background: #e5e5e5;
  margin: 35px 0 25px;
  position: relative;
}

.feature-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 25%;
  background: #7ac143; /* green highlight */
}

/* PARAGRAPH */
.feature-text {
  max-width: 900px;
  margin: auto;
  text-align: center;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .feature-box {
    margin-bottom: 30px;
  }
}


/* ===== WHO WE ARE SECTION ===== */
.who-we-are {
  background: #2b2b2b;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

/* LEFT CONTENT */
.text-content h2 {
    align-items: center;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.text-content h6 {
  color: #9a9a9a;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
}

/* GREEN LINE */
.green-line {
  display: block;
  width: 50px;
  height: 2px;
  background: #7ac143;
  margin: 18px 0 25px;
}

/* PARAGRAPH */
.text-content p {
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 30px;
}

/* READ MORE BUTTON */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7ac143;
  color: #fff;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background: #6aae3b;
  color: #fff;
}

/* RIGHT IMAGE */
.image-content img {
    width: 416px;
    height: auto;

  border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .who-we-are {
    padding: 60px 20px;
  }

  .image-content {
    margin-top: 40px;
  }
  
.image-content img {
    width: 100%;    
}   
}


.facility-section {
  padding: 80px 0;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

/* HEADING */
.section-title {
  font-size: 30px;
  font-weight: 600;
  color: #000;
}

.title-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #7ac143;
  margin-top: 10px;
}

/* ITEM */
.facility-item {
  text-align: center;
}

/* IMAGE ONLY (YOUR DIAMOND IMAGE) */
.facility-img {
  width: 150px;
  height: auto;
  margin-bottom: 15px;
}

/* TEXT */
.facility-item p {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .facility-section {
    padding: 60px 20px;
  }
}



.gallery-section {
  /* padding: 80px 0; */
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

/* TITLE */
.gallery-title {
  font-size: 30px;
  font-weight: 600;
  color: #0a4f7c;
}

.gallery-line {
  display: inline-block;
  width: 120px;
  height: 2px;
  background: #ddd;
  margin-top: 12px;
}

/* IMAGE */
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #555;
  padding: 18px;
}

/* DOTS */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #aaa;
}

.carousel-indicators .active {
  background-color: #7ac143;
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-img {
    height: 180px;
  }
}
.carousel-indicators{
    margin-bottom: -60px;
}

.loveus-wrapper {
    margin-top: 100px;
  background: #dfe5ea;
  padding: 40px 0;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.loveus-header {
  margin-bottom: 50px;
}

.loveus-title {
  font-size: 32px;
  font-weight: 600;
  color: #000;
}

.loveus-underline {
  display: inline-block;
  width: 45px;
  height: 2px;
  background: #7ac143;
  margin-top: 12px;
}

/* TEXT */
.loveus-text {
  max-width: 900px;
  margin: 0 auto 25px;
  font-size: 18px;
  line-height: 1.9;
  color: #333;
}

/* NAME */
.loveus-name {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

/* ARROWS */
.loveus-arrow-left .carousel-control-prev-icon,
.loveus-arrow-right .carousel-control-next-icon {
  background-color: #333;
  padding: 16px;
}

/* DOTS */
.loveus-indicators {
  margin-top: 35px;
  position: static;
}

.loveus-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #999;
}

.loveus-indicators .active {
  background: #7ac143;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .loveus-text {
    font-size: 15px;
    padding: 0 15px;
  }
}


.stats-wrapper {
  padding: 80px 0;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

/* ICON */
.stats-icon {
  font-size: 38px;
  color: #2f3640;
  margin-bottom: 15px;
}

/* NUMBER */
.stats-item h2 {
  font-size: 46px;
  font-weight: 700;
  color: #2f3640;
  margin-bottom: 5px;
}

/* TEXT */
.stats-item p {
  font-size: 18px;
  font-weight: 400;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats-item {
    margin-bottom: 35px;
  }
}



/* MAIN FOOTER */
.footer-main {
  background: #8b1f87;
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.footer-col h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #f1f1f1;
}

.footer-col i {
  color: #7ac143;
  margin-right: 8px;
}

/* SOCIAL ICONS */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #7ac143;
  color: #fff;
}

/* COPYRIGHT */
.footer-bottom {
  background: #000;
  padding: 15px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: #aaa;
  margin: 0;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-col {
    margin-bottom: 30px;
  }
}
.footer-email {
  color: #f1f1f1;
  text-decoration: none;
}

.footer-email:hover {
  text-decoration: underline;
}

.about-scroll-section {
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

.about-text h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 20px;
  color: #333;
  font-weight: 300;
  line-height: 29px ;
  margin-bottom: 12px;
}

.scroll-image-box {
  height: 520px;              /* 👈 fixed height */
  border: 1px solid #ccc;
  overflow-y: auto;           /* 👈 SCROLL HERE */
  padding: 10px;
}

.scroll-image-box img {
  width: 100%;
  display: block;
}
.team-section {
  background: #cfcfcf;
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

.team-title {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 40px;
}

.team-card {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.team-name {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.75);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
}
