body{
    font-family: Arial, Helvetica, sans-serif;
}
.wrapper{
    display: flex;
    width: 100%;
    height: calc(100vh - 100px); /* full viewport minus navbar height */
}

.wrapper .sidebar {
    width: 250px;
    height: 90%;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow-y: auto;
    flex-shrink: 0;
    padding: 20px 16px;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

/* Optional: Add modern scrollbar */
.wrapper .sidebar::-webkit-scrollbar {
    width: 8px;
}
.wrapper .sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.wrapper .sidebar::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
    transition: background-color 0.2s;
}
.wrapper .sidebar::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

/* Improve internal heading and link aesthetics */
.wrapper .sidebar h1, .canvas-menu{
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #222;
}

.wrapper .sidebar ul li a, .canvas-menu ul li a{
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.wrapper .sidebar ul li a:hover,
.wrapper .sidebar ul li.active a,
.canvas-menu ul li a:hover,
.canvas-menu ul li.active a {
    background-color: #f0f4ff;
    color: #27EA90;
}

#content_two {
  background: #f9fafb;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  width:100%;
}

#content_two h2.title {
  font-weight: 700;
  font-size: 2.25rem;
  color: #1f2937;
}

#content_two p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
}
.img_box{
    width:100%;
    height:100%;
    border-radius:10px;
}
.img_box .image{
    width:100%;
    object-fit:cover;
    border-radius:10px;
}

.line{
    border: none;
    height: 2px;            
    background-color: #27EA90;
    margin: 20px 0;
}

.menu_btn{
    background-color:white;
    color:#27EA90;
    font-weight:bold;
    border-radius:5px;
    border:none !important;
}

.menu_btn:hover{
    color:white !important;
    opacity:.8;
    border:none !important;
    opacity: .8;
}

.cta{
    background-color:#27EA90;
    color:white;
    font-weight:bold;
    border-radius:10px;
}

.btn-outline-like{
    background-color:white;
    color:#27EA90;
    border:2px solid #27EA90;
    border-radius:10px;
}
.btn-outline-like:hover{
    color:#27EA90 !important;
    background-color: white !important;
    opacity:.8;
}

@media screen and (max-width:768px){
    .wrapper .sidebar{
        display:none;
    }
}

@media screen and (min-width:769px){
    .wrapper .sidebar{
        display:block;
    }
}

.feature_link {
    text-decoration: none;
    color: inherit;
  }
  
  .feature_item {
    height: 110px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease-in-out;
    text-align: center;
    padding: 1rem;
    user-select: none;
    cursor: pointer;
    color:#01377D;
  }
  
  .feature_item:hover {
    background-color: #27EA90;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .feature_icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .subscribe-form input{
    width:100%;
    height:50px;
    color:#01377D;
    background-color:white;
    border-radius:10px;
  }
  .send-message{
    width:100%;
    height:50px;
    color:white;
    background-color:#01377D;
    border-radius:10px;
  }

.bubble-wrapper {
  background: radial-gradient(circle at top left, #27EA90, #ffffff);
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.bubble-wrapper:hover {
  transform: scale(1.02);
}

.bubble-wrapper .image {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.bubble-wrapper .image:hover {
  transform: scale(1.03);
}

.small_imgs{
  width:40px;
  height:40px;
}
.small_imgs img{
  width:100%;
  object-fit: cover;
}
  