
  

       

        .category-tag {
            background-color: #d47d37;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .blog-title {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a365d;
            font-weight: bold;
        }

        .blog-image {
            width: 100%;
            
            background: linear-gradient(45deg, #2d3748, #4a5568);
            border-radius: 10px;
            margin-bottom: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
        }
        .blog-image img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }



        .key-points {
            background-color: #f7fafc;
            border-radius: 8px;
            padding: 2rem;
            margin: 2.5rem 0;
        }

        .key-points li i {
            color: #d47d37;
            margin-top: 5px;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: transform 0.3s;
        }

        .social-btn:hover {
            transform: translateY(-3px);
        }

        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .linkedin { background-color: #0077b5; }
        .link { background-color: #718096; }

        .back-to-blog {
            display: inline-block;
            background-color: #d47d37;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 2rem;
            transition: background-color 0.3s;
        }

        .back-to-blog:hover {
            background-color: #339af0;
        }
        .hero-team {
    background: url("../website-img/bg of internal banners.webp") center/cover no-repeat;
    color: white;
    padding: 80px 0 60px;
    height:50vh;
    text-align: center;
    display: flex;
    align-items: center;      /* NEW LINE */
    justify-content: center;  /* NEW LINE */
}


/* Desktop Spacing */
@media (min-width: 992px) {
    .hero-team {
        padding: 120px 0 80px;
    }
}

/* Heading */
.hero-team h1 {
    font-size: 35px;
    color: white;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    text-align: center;
}

/* Paragraph */
.hero-team p {
    font-size: 20px;
    margin: 0 auto 25px;
    line-height: 1.6;
    font-family: 'Raleway', sans-serif;
    max-width: 700px;
}

/* Mobile adjustments */
@media (max-width: 567px) {
    .hero-team {
        padding-top: 100px;
        padding-bottom: 40px;
      
    }

    .hero-team h1 {
        font-size: 32px;
    }

    .hero-team p {
        font-size: 18px;
        padding: 0 10px;
    }
}
