/* Hide image */
.get-touch-img img {
    display: none !important;
}

/* Accordion Active */
.active,
.accordion2:hover {
    background-color: #fff !important;
}

.active:after {
    display: none;
}

/* Main Blog */
.main-blog {
        background: radial-gradient(circle at 70% 10%, #2e6fb7 0%, #031b39 40%, #041a35 100%);
    margin: 0;
    display: flex;
    width: 100%;
    padding: 60px 0;
}

/* Blog Left */
.blog-left {
    width: 60%;
    float: left;
}

.blog-left ul {
    margin: 30px 0 0;
}

.blog-left ul li {
    float: left;
    padding: 20px 80px 0 0;
    list-style: none;
    text-align: left;
    color: rgb(190, 190, 190);
    font-size: 17px;
}

.blog-left ul li span {
    font-weight: 600;
    font-size: 20px;
    color:#fff;
}

/* Blog Right */
.blog-left-r {
    width: 40%;
    float: left;
}

.blog-left-r img {
    width: 100%;
    border-radius: 20px;
}

/* Blog Title */
.main-blog h1 {
    font-size: 36px;
    line-height: 1.2;
    color: #fff;  
	padding: 0px 20px 0px 0px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-align: left;
    text-transform: capitalize;
}

/* Blog Container */
section#blog-cont {
    width: 100%;
    max-width: 1200px;
    display: flex;
    margin: 0 auto;
    padding: 60px 0;
}

/* Left Sidebar */
.left-side {
    width: 25%;
    position: sticky;
    top: 0;
    padding: 30px 0 0;
    float: left;
}

.left-side h3 {
    font-size: 24px;
    color: #000;
    margin: 0 0 10px;
    font-family: 'Lato', sans-serif;
}


/* Center Content */
.center-side {
    width: 75%;
    float: left;
    padding: 15px 20px;
}
.center-side h2 b {
    font-weight: 600;
}
	.center-side h3 b {
    font-weight: 600;
}
	.center-side h2{
    font-weight: 600;
}
	.center-side h3{
    font-weight: 600;
}
.center-side img {
    border: 2px solid #ccc;
    padding: 2px;
    border-radius: 10px;
}
/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 2px solid #000;
    margin: 10px 0px;
    background-color: transparent;
}
thead tr th {
    border: 2px solid #000;
}
thead th {
    background: #e6e6e6;
    padding: 10px 20px;
    text-align: left;
}
tr {
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit;
}

td {
    border: 2px solid #222;
    padding: 10px 20px;
    text-align: left !important;
    line-height: 22px;
    color: #222;
}

/* Related Article Section */
section#related-article-post h2 {
    text-align: center;
	font-weight:600;
    font-size: 32px;
    padding: 0 0 40px;
}

/* Related Post List */
ul.releted-post {
    display: flex;
    gap: 30px;
}

ul.releted-post li {
    list-style: none;
    max-width: 25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    overflow: hidden;
    padding: 0 0 30px;
    background-color: #fff;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.08);
    transition: 
        transform 0.3s ease, 
        box-shadow 0.3s ease;
}

ul.releted-post li img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.center-side ol li b {
    font-weight: 600;
}
ul.releted-post li h3 {
    font-size: 1.2rem;
	font-weight:600;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 20px 20px 0;
}

ul.releted-post li p {
    padding: 0 20px;
    font-size: 16px;
}

a.my-blog-rd-ct {
    color: #0000ee;
    padding: 20px 0 0 20px;
}
/* Main Blockquote Style */
blockquote {
    border: 2px solid #2e6fb7;
    border-radius: 14px;
    padding: 0px 20px 18px; /* top padding extra for title */
    background: #f9f8ff;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    font-style: normal;
}
blockquote p {
    padding: 30px 0px 0px 9px;
	margin:0!important;
}
/* Shine Animation */
blockquote::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(124,108,255,0.2), transparent);
    opacity: 0;
    pointer-events: none;
}

blockquote:hover::before {
    opacity: 1;
    animation: shine 1.5s linear;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Title (Top Fixed, No Animation) */
/*blockquote::after {
    content: "✍️ Quick Summary";
    position: absolute;
    top: 23px;
    background: #fff;
    left: 23px;
    font-weight: 600;
    border-radius: 25px;
    color: #2e6fb7;
    border: 1px solid #2e6fb7;
    font-size: 18px;
    padding: 3px 16px;
}*/

/* List styling */
blockquote ul {
    padding-left: 18px;
}

blockquote li {
    margin-bottom: 8px;
    transition: transform 0.2s ease;
}

/* Optional hover effect (safe) */
blockquote li:hover {
    transform: translateX(4px);
    color: #4f46e5;
}

/* Paragraph */
blockquote p {
    margin: 0 0 10px;
    color: #333;
}
blockquote ul {    
   padding: 0px 10px 0px 10px;
}
	blockquote h2 {
    padding: 0px 0px 0px 10px !important;
}
/* Left Sidebar List */
.left-side ul {
    padding-left: 0px;         /* required for proper bullet alignment */
    margin: 0;
    list-style: disc;
}

.left-side ul li {
    margin: 0 0 0 20px;
    padding: 5px 0;     
   font-family: 'Lato', sans-serif;
    list-style: disc;           /* ensures bullet appears correctly */
    font-size: 1.1rem;
    color: #222;
    line-height: 28px;
}

.left-side ul li a {
    color: #222;
    text-decoration: none;
    display: block;      /* makes multiline text align properly */
}


/* Center Content Ordered List */
.center-side ol li {
    font-size: 1.1rem;
    color: #222;
    line-height: 1.4;
    padding: 5px 0;
  
}
.center-side ol li strong {
    font-weight: 600;
}
/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Side Form */
.side-form {
    width: 100%;
    background-color: #ccc;
    float: left;
    margin: 0;
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
    border-radius: 10px;
}

.side-form h2 {
    font-size: 24px;
    color: #000;
    text-align: center;
    margin: 0 0 30px;
    font-family: 'Lato', sans-serif;
}

.side-form ul {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}

.side-form ul li {
    width: 100%;
    float: left;
    margin: 0 0 7px;
    padding: 0;
    list-style: none;
}

/* Center-side List */
.center-side ul {
    margin: 0 0 0 20px;
}

.center-side ul li {
    font-size: 1.1rem;
    padding: 5px 0;
    line-height: 26px;
    color: #222;
    font-family: 'Lato', sans-serif;
}
.center-side ul li strong {
    font-weight: 600;
}
/* Download Button */
button.download-blog-btn {
    border-radius: 50px;
    background: #FFF234;
    cursor: pointer;
    color: #222;
    font-family: Unbounded;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.24px;
    padding: 1rem 2rem;
    margin: 1rem 0;
}

button.download-blog-btn a {
    color: #000 !important;
}

button.download-blog-btn:hover {
    background: #FFD700;
}

/* Form Button */
button.side-form-btn {
    padding: 15px 40px;
    border-radius: 25px;
    cursor: pointer;
    background: #000;
    margin: 0 auto;
    text-align: center;
    color: #039b6e;
    font-size: 18px;
    display: block;
}

/* Center-side Typography */
.center-side p {
    margin: 0px 0px 20px;
    font-size: 1.1rem;
    color:#222;
    line-height:28px;
    font-family: 'Lato', sans-serif;
    font-weight: normal;
}

.center-side h2 {
    font-size: 28px;
    margin: 15px 0;
    color: #222;
    font-family: 'Lato', sans-serif;
}
.center-side h2 strong {
    font-weight: 600;
}
.center-side h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 15px 0;
    font-family: 'Lato', sans-serif;
}
	.center-side h3 strong{
		 font-weight: 600;
	}
.center-side h4 {
    font-size: 20px;
    margin: 15px 0;
    color: #000;
    font-family: 'Lato', sans-serif;
}

.center-side h2 span {
    font-weight: 600 !important;
}

.center-side h3 span {
    font-weight: 550 !important;
}

.center-side ol {
    margin: 0 0 0 22px;
}

.center-side ol ul {
    margin: 0;
}

/* Author Details */
.authordetails ul {
    width: 100%;
    height: 45px;
    margin: 0;
    background: #ccc;
    padding: 10px 20px;
}

.authordetails ul li {
    width: 50%;
    float: left;
    margin: 0;
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

/* Post category info */
ul.post-cat-info {
    width: 100%;
    margin: 0;
}

ul.post-cat-info li {
    float: left;
    padding: 10px 20px;
}

.post-cat-info {
    padding: 10px 20px;
}

/* Related article section */
section#related-article-post {
    padding: 0 0 50px;
}

.related-li img {
    border-radius: 20px 20px 0 0;
}

/* Tablet Responsive */
@media only screen and (min-width: 480px) and (max-width: 1024px) {
    .left-side {
        width: 100%;
        padding: 30px 20px 0;
        display: none;
    }
    .center-side {
        width: 100%;
    }
    .right-side {
        width: 100%;
        padding: 30px 20px 0;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 480px) {
    .main-blog {
        height: 250px;
        padding: 60px 0 75px;
    }

    .html-code p {
        font-size: 10px;
    }

    section#blog-cont {
        padding: 0;
    }

    .blog-left-r {
        width: 100%;
    }

    .blog-left-mob ul {
        margin: 0;
    }

    .blog-left-mob ul li {
        font-size: 12px;
        float: left;
        padding: 0 20px 0 0;
        list-style: none;
    }

    .blog-left-mob h1 {
        font-size: 24px;
        padding:0px;
        line-height: 1.25;
    }

    .blog-left {
        max-width: 100%;
        width: 100%;
        padding: 0 20px;
    }

    .authordetails ul li {
        width: 50% !important;
        float: left !important;
    }

    .main-blog h1 {
        font-size: 24px;
        line-height: 26px;
    }

    section#related-article-post {
        padding: 0 0 10px;
    }

    .left-side {
        width: 100%;
        display: none;
        padding: 0 30px;
    }

    .blog-left ul {
        margin: 15px 0 0;
    }

    .center-side {
        width: 100%;
        padding: 0 30px;
        margin: 30px 0;
		display:grid;
    }
	thead {
    border: 2px solid #000;
    }
	table{
	width: 100%;
    height:auto!important;
    display: block;
    white-space: nowrap;  
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    border: 0px solid #000;
    }
    .right-side {
        width: 100%;
        padding: 0 30px;
        margin: 0 0 50px;
    }

    ul.releted-post li {
        width: 100%;
        float: none;
        max-width: 340px;
    }
	
}

/* Extra Tablet Fix */
@media only screen and (max-width: 768px) {
    ul.releted-post {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .blog-left-r img {
        display: none;
    }

    .blog-left ul li {
        font-size: 12px;
        padding: 20px 10px 0 0;
    }

    .blog-left ul li span {
        font-size: 12px;
    }
}