body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: url('../assets/images/bg.png');
    background-size: cover;
   min-height: 100vh;
   position: relative;
   width: 100%;
   overflow-x: hidden;
   background-attachment: fixed;
  }
  

.main-content {
    background-color: #e8f4f82c;
    /* width: 100% !important; */
    min-height: 100% !important;
    width: 100% !important;
    padding: 10px 0px;
    /* position: relative; */
}

.main-content .hero-content {
    /* width: ; */
    padding: 0 50px;
}

.about-header {
    background-color: #3681861A;
    color: #368186;
    font-size: 35px;
    margin-top: 70px;
    font-weight: 600;
    padding: 10px 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content-text {
    color: #4a5568;
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 25px;
    text-align: left !important;
}
.about-header-container {
    position: relative;
}
.about-header {
    width: 100%;
}

.about-header-container img {
    position: absolute;
    right: -20px;
    top: 50%;  
    transform: translateY(-39%);
    cursor: pointer;
    height: 130px;
    width: 130px;
    padding: 20px;
    /* padding-left: 30px; */
    border-radius: 50%;
    background: #e8f4f8;
}

.highlight-text {
    font-weight: 600;
    color: #2d3748;
}

.commitment-text {
    font-weight: 600;
    color: #2d3748;
    margin-top: 30px;
}
.commitment-text span{
    font-weight: 400;
}

.like-section {
    margin-top: 40px;
}

.profile-btn {
    z-index: 100;
  }

.like-btn {
    /* background-color: #4299e1; */
    border: none;
    color: white;
    /* padding: 8px 12px; */
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.like-btn .thumb-icon {
    background: #36818633;
    /* padding: 5px ; */
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-content: center;
    border-radius: 50%;
}
.like-btn .thumb-icon img{
    width: 18px;
    height: 35px;
}

#likeCount {
    color: #4F4F4F !important;
}

.like-btn.liked {
    background-color: #38a169;
}

.floating-btn {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    box-shadow: 0 4px 20px rgba(229, 62, 62, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.floating-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 25px rgba(229, 62, 62, 0.5);
}

.floating-btn i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

@media (max-width: 992px) {
    .main-content .hero-content { 
        min-height: 100vh !important;
    }
    .main-content .main-content{
        position: unset;
        min-height: 100vh;
        padding: 20px 30px;
    }

    .footer{
        bottom: -77px !important;
    }

    .about-header{
        margin-top: 10px !important;
    }
    .about-header-container img {
        position: absolute;
        right: -20px;
        top: 50%;  
        transform: translateY(-65%);
        cursor: pointer;
        height: 100px;
        width: 100px;
        padding: 15px;
        /* padding-left: 30px; */
        border-radius: 50%;
        background: #e1eef4;
    }
}
@media (max-width: 768px) {
    .main-content .hero-content {
        padding: 0 0px;
    }
    .content-text {
        font-size: 16px;
    }
    .about-header {
        font-size: 1.8rem;
        padding: 8px 20px;
    }
    
    .floating-btn {
        width: 70px;
        height: 70px;
        right: 20px;
        font-size: 0.7rem;
    }
}

.profile-btn {
    position: absolute;
    right: 20px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    border: 2px solid #efefef;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  
  }
  
  .overlay.show {
    opacity: 1;
    visibility: visible;
  }

 
  .footer-links a {
    white-space: nowrap;
  }
  
  .like-section {
    display: flex;
  }
  
  .like-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    background: #d3d3d3;
    padding: 8px 12px;
    border-radius: 20px;
    gap: 6px;
    font-size: 20px;
    color: #555;
    transition: color 0.3s ease;
  }

  #likeCount {
    font-size: 16px;
    font-weight: 500;
  }
  
  .like-btn.liked {
    background:  #d3d3d3 !important;
  }