/********** Template CSS **********/
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-dark,
.btn.btn-outline-dark:hover {
    color: var(--bs-white);
    font-weight: 500;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    border-color: var(--bs-dark);
}

.btn.btn-dark:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 100px;
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 10px 0;
    color: var(--bs-secondery);
    font-size: 17px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .navbar-nav .dropdown-item:hover,
.navbar .navbar-nav .dropdown-item.active {
    background: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-light {
    font-weight: 500;
    color: var(--bs-secondery);
}

.navbar .btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Hero ***/
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-section .carousel {
    width: 100%;
    height: auto;
}

.hero-section .carousel-item {
    height: auto;
    position: relative;
}

.hero-section .carousel-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-section .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.hero-section .carousel-indicators {
    position: absolute;
    bottom: 20px;
    z-index: 10;
}

.hero-section .carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.hero-section .carousel-indicators button.active {
    background-color: #fff;
}

.hero-header {
    background: url(../img/banner.jpeg) top right no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-primary);
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-primary);
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: var(--bs-white);
    background: #000000;
    opacity: 1;
}

.page-header {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

/* Individual page header background images */
.page-header-about {
    background-image: url(../img/hero.jpg);
}

.page-header-services {
    background-image: url(../img/service-banner.png);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-secondery)
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--bs-primary);
}


/*** Appointment ***/
@media (min-width: 992px) {
    .container.appointment {
        max-width: 100% !important;
    }

    .container.appointment .appointment-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.appointment .appointment-form {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.appointment .appointment-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.appointment .appointment-form  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.appointment .appointment-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.appointment .appointment-form  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.appointment .appointment-text {
    background: linear-gradient(rgba(205, 95, 55, .95), rgba(205, 95, 55, .95)), url(../img/service4.jpeg) center center no-repeat;
    background-size: cover;
}

.container.appointment .appointment-form {
    background: linear-gradient(rgba(72, 30, 11, .95), rgba(72, 30, 11, .95)), url(../img/service3.jpeg) center center no-repeat;
    background-size: cover;
}

.container.appointment .appointment-text .h-100,
.container.appointment .appointment-form .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item .service-text {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.service-item .service-img {
    transition: .5s;
}

.service-item:hover .service-img {
    transform: scale(1.2) rotate(7deg);
}



/*** Team ***/
.team {
    position: relative;
}

.team::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 110px;
    left: 0;
    bottom: 3rem;
    background: var(--bs-light);
    z-index: -1;
}

.team .team-item {
    position: relative;
    overflow: hidden;
}

.team .team-item img {
    position: relative;
    transform: scale(1.1);
    transition: .5s;
}

.team .team-item:hover img {
    margin-top: -30px;
    padding-bottom: 30px;
}

.team .team-text {
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team .team-text-overflow {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-text-overflow {
    bottom: 0;
    opacity: 1;
}



/*** Testimonial ***/
.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    animation: pulse-img 5s ease-out infinite;
}

@keyframes pulse-img {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 0;
    }

    50% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 0;
    }
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    background: var(--bs-primary);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-dark);
}


/*** Footer ***/
.footer {
    color: #fff;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(256, 256, 256, .6);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #fff;
    border: 1px solid rgba(256, 256, 256, .6);
}

.footer .btn.btn-square:hover {
    color: var(--bs-white);
    border-color: var(--bs-primary);
    background: var(--bs-primary);
}

.footer .form-control {
    color: #000000 !important;
    border-color: #ffc107  !important;
    background-color: white !important;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}
.input::placeholder {
        color: white;
        opacity: 1; /* Ensures the placeholder is fully visible */
    }
/* Hide <p> tags inside .hero-header on small devices */
@media (max-width: 767px) {
    .hero-header p {
        display: none;
    }
}

.html {
    scroll-behavior: smooth;
}

/* Hide YouTube video button on mobile devices */
@media (max-width: 767px) {
    .btn-play {
        display: none;
    }
}

/* Adjust hero section for mobile devices */
@media (max-width: 767px) {
    .hero-header {
        background: url(../img/banner.jpeg) center center no-repeat;
        background-size: cover;
        padding: 50px 20px; /* Add padding for better spacing */
        text-align: center; /* Center-align text */
        height: 200px !important;
        position: relative; /* Enable positioning for child elements */
    }

    .hero-header .container {
        position: absolute;
        /* bottom: -21px; */
        left: 35%;
        transform: translateX(-50%);
        text-align: center;
        margin-top: -81px !important;
    }

    .hero-header h1,
    .hero-header h2 {
        font-size: 1.5rem; /* Reduce font size for smaller screens */
        margin-bottom: 10px; /* Add spacing */
    }

    .hero-header p {
        font-size: 1rem; /* Adjust paragraph font size */
        margin-bottom: 15px; /* Add spacing */
    }

    .hero-header .btn-play {
        margin-top: 10px; /* Add spacing above the button */
    }
}

/* Adjust text size for mobile devices */
@media (max-width: 767px) {
    .hero-header h1 {
        font-size: 1.2rem; /* Reduce font size for the main heading */
    }

    .hero-header h2 {
        font-size: 1rem; /* Reduce font size for the subheading */
    }

    .hero-header p {
        font-size: 0.9rem; /* Reduce font size for paragraph text */
    }

    .hero-header .btn {
       
        padding: 8px 12px; /* Adjust button padding */
        margin: -22px;
    }
}

/* Adjust "Read More" button size for mobile devices */
@media (max-width: 767px) {
    .hero-header .btn {
        font-size: 0.8rem; /* Reduce font size */
        padding: 6px 10px !important; /* Adjust padding for smaller size */
    }
}

/* Fixed Buttons - Left Side (Phone Call) */
.fixed-buttons-left {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixed-buttons-left .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    border: none;
}

.fixed-buttons-left .btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.fixed-buttons-left .btn-call {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FDB750 100%);
    color: #fff;
    font-weight: bold;
}

.fixed-buttons-left .btn-call:hover {
    background: linear-gradient(135deg, #E55A2B 0%, #E6821A 50%, #F5A640 100%);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.4);
}

.fixed-buttons-left .btn i {
    font-size: 28px;
    color: inherit;
}

/* Fixed Buttons - Right Side (Instagram & WhatsApp) */
.fixed-buttons-right {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixed-buttons-right .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    border: none;
}

.fixed-buttons-right .btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.fixed-buttons-right .btn-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 20%, #dc2743 40%, #cc2366 60%, #bc1888 80%, #712c9a 100%);
    color: #fff;
    font-weight: bold;
}

.fixed-buttons-right .btn-instagram:hover {
    background: linear-gradient(135deg, #e6683c 0%, #dc2743 20%, #cc2366 40%, #bc1888 60%, #712c9a 80%, #5a1f73 100%);
    box-shadow: 0 8px 16px rgba(220, 39, 67, 0.4);
}

.fixed-buttons-right .whatsapp-button {
    background-color: #25D366;
    color: #fff;
    font-weight: bold;
}

.fixed-buttons-right .whatsapp-button:hover {
    background-color: #20ba5a;
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.4);
}

.fixed-buttons-right .btn i {
    font-size: 28px;
    color: inherit;
}

/* Modal Header Styling */
.modal-header {
    border-bottom: none;
    border-radius: 10px 10px 0 0;
}

.modal-header h5 {
    font-size: 1.5rem;
    font-weight: 700;
}



/* Modal Body Styling */
.modal-body {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 0 0 10px 10px;
}

.modal-body .form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.modal-body .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 1rem;
}

.modal-body .form-control:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

/* Submit Button Styling */
.modal-body .btn {
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-body .btn:hover {
    background: #fff;
    box-shadow: 0 4px 10px rgba(56, 142, 60, 0.3);
}

/*** Blog Page Styling ***/
.blog-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #cf9a32 0%, #764ba2 100%);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    min-height: 60px;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 60px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.blog-category {
    display: inline-block;
    background: #cf9a32;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-more-btn {
    color: #cf9a32;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.read-more-btn:hover {
    color: #764ba2;
}

.blog-header {
    background: linear-gradient(135deg, #cf9a32 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 50px;
}

.blog-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/*** Blog Details Page Styling ***/
.blog-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(194, 158, 231, 0.9) 100%);
    color: #f1cd86;
    padding: 80px 0 40px;
    margin-bottom: 50px;
}

.blog-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-meta-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.95rem;
    opacity: 0.95;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta-item i {
    font-size: 1.1rem;
}

.blog-featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    
}

.blog-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-top: 35px;
    margin-bottom: 20px;
}

.blog-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #444;
    margin-top: 25px;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.blog-content li {
    margin-bottom: 12px;
}

.blog-highlight {
    background: #f0f4ff;
    border-left: 5px solid #cf9a32;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.blog-share {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 30px 0;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
    margin-bottom: 50px;
}

.share-label {
    font-weight: 600;
    color: #333;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-facebook {
    background: #3b5998;
}

.share-twitter {
    background: #1DA1F2;
}

.share-whatsapp {
    background: #25D366;
}

.share-linkedin {
    background: #0A66C2;
}

/* Sidebar Styling */
.sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #cf9a32;
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    transition: transform 0.3s ease;
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post:hover {
    transform: translateX(5px);
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-date {
    font-size: 0.8rem;
    color: #999;
}

.recent-post-date i {
    margin-right: 5px;
}

.recent-post a {
    text-decoration: none;
    color: inherit;
}

.recent-post a:hover {
    color: #cf9a32;
}

.category-tag {
    display: inline-block;
    background: #cf9a32;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.author-box {
    background: linear-gradient(135deg, #cf9a3215 0%, #764ba215 100%);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid #cf9a3230;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
    border: 3px solid #cf9a32;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.author-role {
    font-size: 0.9rem;
    color: #cf9a32;
    font-weight: 500;
    margin-bottom: 12px;
}

.author-bio {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.cta-box {
    background: linear-gradient(135deg, #cf9a32 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.cta-box h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-box p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.95;
}

.cta-box .btn {
    background: white;
    color: #cf9a32;
    border: none;
    font-weight: 600;
    padding: 10px 25px;
}

.cta-box .btn:hover {
    background: #f5f5f5;
    color: #cf9a32;
}

/* Comments Section */
.comments-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 3px solid #eee;
}

.comments-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.comment-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #cf9a32;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

.comment-date {
    font-size: 0.85rem;
    color: #999;
}

.comment-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.comment-reply {
    font-size: 0.9rem;
}

.comment-reply a {
    color: #cf9a32;
    text-decoration: none;
    font-weight: 600;
}

.comment-reply a:hover {
    text-decoration: underline;
}

.comment-form {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 35px;
    margin-top: 40px;
    border: 1px solid #eee;
}

.comment-form h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cf9a32;
    box-shadow: 0 0 0 3px rgba(207, 154, 50, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    background: linear-gradient(135deg, #cf9a32 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(207, 154, 50, 0.4);
}

/* Related Posts Section */
.related-posts {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 3px solid #eee;
}

.related-posts h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.related-post-card {
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.related-post-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-body {
    padding: 20px;
}

.related-post-category {
    display: inline-block;
    background: #cf9a32;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-post-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.related-post-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #cf9a32;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.read-more:hover {
    color: #764ba2;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-featured-image {
        height: 300px;
    }

    .blog-meta-info {
        gap: 15px;
        font-size: 0.85rem;
    }

    .sidebar {
        margin-top: 40px;
    }
}