.main-header .logo-box .logo {
    position: relative;
    max-width: 87px ! important;
}

.sticky-header .logo-box {
    padding: 0px 0px;
}

/* Overall layout */
/* Base Layout */
.outer-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #fff;
  z-index: 999;
  
}

/* Logo */
.logo-box img {
  max-height: 55px;
  width: auto;
}

/* Hamburger Icon */
.mobile-nav-toggler {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.icon-bar {
  width: 25px;
  height: 3px;
  background-color: #000;
  display: block;
}

/* Navigation Menu */
.navigation {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navigation li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
  .outer-box {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  /* Show hamburger, hide full menu initially */
  .mobile-nav-toggler {
    display: flex;
  }

  .navigation {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 0;
    border-top: 1px solid #eee;
  }

  .navigation.show {
    display: flex;
  }
}

.content-Top{
  padding-top: 100px !important;
}
.content-bottom{
  margin-top: 100px !important;
}
.sec-title h2 {
  font-size: 30px;
  color: #072d5c;
  font-weight: 700;
  margin-bottom: 8px;
}

.sec-title .subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.dashboard-points p {
  background: #f7faff;
  padding: 12px 18px;
  border-radius: 10px;
  margin-bottom: 15px !important;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.dashboard-points p:hover {
  background: #e9f4ff;
  transform: translateY(-2px);
}

.summary {
  font-weight: 600;
  color: #072d5c;
  text-align: left;
  margin-top: 10px;
}

.btn-box {
  margin-top: 25px;
}

.theme-btn.btn-one {
  background-color: #007bff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.theme-btn.btn-one:hover {
  background-color: #005ecb;
}
.footeri-icon{
width: 46% !important;
}    