body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #f5fafd;
}

.blogDetailsMain {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    margin: 20px;
}
.nodecoration {
    text-decoration: none !important;
}

.blogsidebarSocial {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
}

.blogDetailsMain h1 {
    font-size: 25px;
    color:green;
}

.authorDet {
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: space-between;
    margin: 15px 0px;
}
.publish-date
{
    color:#ff9933 !important;
}
.authorDet p, .blogContent {
    margin: 0px;
    color: #ff9933;
}
.blogImg img {
    width: 100%;
    display: block;
    border-radius: 20px;
    margin-bottom: 20px;
}

.social-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #f5fafd;
    cursor: pointer;
}

    .social-card i {
        font-size: 1.5rem;
        color: #fff;
        padding: 10px;
        border-radius: 50%;
    }

    .social-card span {
        font-size: 1rem;
        font-weight: 500;
        color: #333;
    }

    .social-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

.instagram i {
    background-color: #e1306c;
}

.twitter i {
    background-color: #1da1f2;
}

.facebook i {
    background-color: #3b5998;
}

.youtube i {
    background-color: #ff0000;
}

.pinterest i {
    background-color: #bd081c;
}

.linkedin i {
    background-color: #0077b5;
}


.enquiry-form {
    background-color: #ffffff;
    border-radius: 20px;
    margin-top: 20px;
    padding: 20px;
}

/* Title Styling */
.form-title {
    font-size: 1.8rem;
    color: #333333;
    font-weight: bold;
}

/* Label Styling */
.label-text {
    font-size: 0.9rem;
    color: #555555;
    font-weight: 500;
}

/* Input Field Styling */
.input-field {
    font-size: 0.9rem;
    border-radius: 4px;
    padding: 10px;
}

/* Button Styling */
.submit-button {
    font-size: 1rem;
    font-weight: bold;
    background-color: #0973a3;
    color: #ffffff;
    border: none;
    transition: background-color 0.3s ease-in-out;
}

    .submit-button:hover {
        background-color: #0056b3;
    }

.courseCard {
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 20px;
}

.courseTitle {
    display: block;
    width: 100%;
    height: 80px;
}

    .courseTitle h2 {
        color:green;
        font-size: 20px;
    }

.courseInfo {
    display: block;
    width: 100%;
}

    .courseInfo p {
        display: flex;
        align-items: center;
        width: 100%;
        margin: 0px;
    }

        .courseInfo p i {
            color: #0973a3;
            font-size: 18px;
            margin-right: 10px;
        }

@media(max-width: 1025px) {
    h1 {
        font-size: 20px;
    }

    h2, h3 {
        font-size: 18px;
    }

    .form-title {
        font-size: 18px !important;
    }

    .social-card i {
        font-size: 14px;
        color: #fff;
        padding: 5px;
        border-radius: 50%;
    }
}

@media(max-width: 991px) {
    .blogsidebarSocial .row .col-md-6 {
        width: 100%
    }

    .authorDet {
        width: 65%;
    }

    .blogDetailsMain h1 {
        font-size: 18px;

    }
}

@media (max-width: 700px) {
    .authorDet {
        width: 90%;
    }
}
