/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
}

/* =====================================================
   ABOUT US – FINAL FIX (IMPORTANT OVERRIDE)
   ===================================================== */

/* Force equal height layout */
.about-grids {
  display: flex !important;
  flex-wrap: wrap !important;
}

/* Each card behaves like a column */
.about-grid {
  display: flex !important;
  flex-direction: column !important;
}

/* Stretch content evenly */
.about-info {
  flex: 1 !important;
}

/* Force same height description text */
.about-info p {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important; /* Desktop lines */
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Mobile optimization */
@media screen and (max-width: 480px) {
  .about-info p {
    -webkit-line-clamp: 4 !important;
  }
}

/* =====================================================
   ABOUT US – IMAGE STYLING (IMPORTANT OVERRIDE)
   ===================================================== */

.about-image {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Desktop */
.about-img {
  width: 200px !important;
  height: 200px !important;
  object-fit: cover !important;
  border-radius: 15px !important;
}

/* Tablet */
@media screen and (max-width: 991px) {
  .about-img {
    width: 160px !important;
    height: 160px !important;
  }
}

/* Mobile */
@media screen and (max-width: 480px) {
  .about-img {
    width: 130px !important;
    height: 130px !important;
  }
}

.about-desc {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.read-more-btn {
  padding: 0 !important;
  font-size: 14px !important;
  color: #337ab7 !important;
}

/* ================= ABOUT MODAL STYLING ================= */

.about-modal .modal-content {
  border-radius: 15px;
  overflow: hidden;
}

/* Header */
.about-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-close {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-size: 28px;
  opacity: 1;
  color: #fff;
}

.about-close span {
  display: block;
  line-height: 1;
}

.about-modal-header h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.about-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-close {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-size: 28px;
  opacity: 1;
  color: #000;
}

.about-close span {
  display: block;
  line-height: 1;
}

/* Body */
.about-modal-body {
  padding: 25px;
  align-items: center;
}

/* Image */
.about-modal-img {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Text */
.about-modal-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

/* Mobile */
@media (max-width: 767px) {
  .about-modal-body {
    text-align: center;
  }

  .about-modal-desc {
    margin-top: 20px;
  }
}

.stats-info .stats-grid {
    margin-bottom: 40px !important;
}

@media (max-width: 768px) {
    .stats-info .stats-grid {
        margin-bottom: 25px !important;
    }
}

/*-- Why --*/

.why {
    padding: 100px 0 !important;
}

.why h3 {
    font-size: 45px !important;
    font-weight: 700 !important;
    margin-bottom: 50px !important;
    text-align: center !important;
}

.why-grid {
    text-align: center !important;
    margin-bottom: 40px !important;
}

/* Image & Hover Effect */
.why-effect a {
    position: relative !important;
    display: inline-block !important;
}

.why-effect img {
    width: 150px !important;
    height: 150px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    position: relative !important;
    z-index: 1 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Hover circles */
.why-effect a::before,
.why-effect a::after {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 180px !important;
    height: 180px !important;
    border: 2px solid #FFEB3B !important;
    border-radius: 50% !important;
    content: '' !important;
    opacity: 0 !important;
    transition: transform 0.4s, opacity 0.4s !important;
    transform: translate(-50%, -50%) scale(0.2) !important;
}

.why-effect a::after {
    width: 165px !important;
    height: 165px !important;
    border-width: 6px !important;
    transform: translate(-50%, -50%) scale(0.8) !important;
}

.why-effect a:hover::before,
.why-effect a:hover::after {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

.why-grid h4 {
    margin: 35px 0 20px !important;
}

.why-grid p {
    color: #000 !important;
    padding: 0 5px !important;
    line-height: 30px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .why-effect img {
        width: 125px !important;
        height: 125px !important;
    }

    .why-effect a::before {
        width: 150px !important;
        height: 150px !important;
    }

    .why-effect a::after {
        width: 135px !important;
        height: 135px !important;
    }
}

/*-- //Why --*/
