/* =========================
BLOG PAGE CSS
Responsive + Sticky Form
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#f5f7fb;
color:#222;
line-height:1.7;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

.container{
max-width:1400px;
margin:30px auto;
padding:0 15px;
display:grid;
grid-template-columns:minmax(0,1fr) 350px;
gap:30px;
}

/* =========================
MAIN CONTENT
========================= */

.content{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.hero-image{
width:100%;
border-radius:12px;
margin-bottom:25px;
}

.content h1{
font-size:38px;
margin-bottom:20px;
line-height:1.3;
}

.content h2{
margin:30px 0 15px;
color:#0d47a1;
}

.content p{
margin-bottom:15px;
}

/* =========================
SIDEBAR
========================= */

.sidebar{
display:flex;
flex-direction:column;
gap:20px;
}

/* Search Box */

.search-widget{
background:#fff;
padding:20px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.search-widget h3{
margin-bottom:15px;
}

.search-widget input{
width:100%;
height:50px;
border:1px solid #ddd;
border-radius:8px;
padding:0 15px;
outline:none;
}

/* Sticky Section */

.sticky-form{
position:sticky;
top:20px;
display:flex;
flex-direction:column;
gap:20px;
}

/* Enquiry Form */

.enquiry-box{
background:#fff;
padding:25px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.enquiry-box h3{
margin-bottom:15px;
}

.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea{
width:100%;
margin-bottom:12px;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
font-size:15px;
}

.enquiry-box textarea{
height:120px;
resize:none;
}

.enquiry-box button{
width:100%;
height:50px;
background:#0056ff;
border:none;
color:#fff;
border-radius:8px;
cursor:pointer;
font-size:16px;
font-weight:600;
}

/* Offer Box */

.offer-box{
background:linear-gradient(135deg,#0056ff,#00c6ff);
color:#fff;
padding:25px;
border-radius:15px;
text-align:center;
}

.offer-box h4{
font-size:24px;
margin-bottom:10px;
}

.offer-box p{
margin-bottom:15px;
}

.offer-btn{
display:inline-block;
padding:12px 25px;
background:#fff;
color:#0056ff;
border-radius:8px;
font-weight:600;
}

/* Demo Box */

.demo-box{
background:#fff;
padding:25px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.demo-box h4{
margin-bottom:10px;
}

.demo-box a{
display:inline-block;
margin-top:10px;
color:#0056ff;
font-weight:600;
}

/* =========================
CTA BANNER
========================= */

.cta-banner{
margin:35px 0;
background:linear-gradient(135deg,
#0B63E5 0%,
#2563EB 50%,
#23282f 100%);
border-radius:20px;
padding:30px;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
color:#fff;
}

.cta-banner-content{
flex:1;
}

.cta-banner h3{
font-size:32px;
margin-bottom:10px;
}

.cta-banner p{
margin-bottom:15px;
}

.cta-banner img{
width:280px;
}

.cta-btn{
display:inline-block;
padding:12px 25px;
background:#082f49;
color:#fff;
border-radius:8px;
}

/* =========================
RELATED BLOGS
========================= */

.related{
margin-top:50px;
}

.related h2{
margin-bottom:20px;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.blog-card{
background:#fff;
border-radius:12px;
overflow:hidden;
border:1px solid #eee;
transition:.3s;
}

.blog-card:hover{
transform:translateY(-5px);
}

.blog-card img{
width:100%;
height:220px;
object-fit:cover;
}

.blog-card h4{
padding:15px;
}

.blog-card a{
display:block;
padding:0 15px 15px;
color:#0056ff;
font-weight:600;
}

.hidden{
display:none;
}

#loadMore{
margin-top:25px;
background:#0056ff;
color:#fff;
border:none;
padding:12px 30px;
border-radius:8px;
cursor:pointer;
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

.container{
grid-template-columns:1fr;
}

.sidebar{
order:-1;
}

.sticky-form{
position:relative;
top:auto;
}

.blog-grid{
grid-template-columns:1fr 1fr;
}

.cta-banner{
flex-direction:column;
text-align:center;
}

.cta-banner img{
width:220px;
}

.content h1{
font-size:30px;
}
}

/* =========================
MOBILE
========================= */

@media(max-width:767px){

.container{
display:flex;
flex-direction:column;
gap:20px;
margin:15px auto;
}

.content{
padding:20px;
}

.sidebar{
width:100%;
display:flex;
flex-direction:column;
gap:15px;
}

.search-widget,
.enquiry-box,
.offer-box,
.demo-box{
width:100%;
display:block;
}

.blog-grid{
grid-template-columns:1fr;
}

.content h1{
font-size:26px;
}

.content h2{
font-size:22px;
}

.cta-banner{
padding:20px;
}

.cta-banner h3{
font-size:24px;
}

.cta-banner img{
width:180px;
}
}
.enquiry-box form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:8px;
    padding:12px;
    font-size:15px;
}

.enquiry-box textarea{
    min-height:120px;
}

.enquiry-box button{
    width:100%;
    padding:14px;
    border:none;
    background:#0056ff;
    color:#fff;
    font-weight:600;
    border-radius:8px;
    cursor:pointer;
}

body{
    background:#ffffff;
}

.container{
    max-width:1400px;
    margin:40px auto;
}

.content{
    background:#fff;
    border-radius:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.search-widget,
.enquiry-box,
.offer-box,
.demo-box{
    border-radius:20px;
}

.offer-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.offer-badge {
    display: inline-block;
    background: #ff5722;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.offer-box h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fff;
}

.offer-box p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
    text-align: left;
}

.offer-features li {
    margin-bottom: 8px;
    font-size: 14px;
}

.offer-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s ease;
}

.offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,87,34,0.4);
}

.offer-box {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.offer-image {
    width: 100%;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.offer-image:hover {
    transform: scale(1.03);
}

/* Table of Contents */

.table-of-contents {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.table-of-contents h2 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

.table-of-contents ol {
    padding-left: 20px;
    margin-bottom: 0;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: #0056b3;
    text-decoration: none;
    transition: 0.3s;
}

.table-of-contents a:hover {
    color: #003d80;
    text-decoration: underline;
}

/* Blog Sections */

section {
    margin: 50px 0;
}

section h2 {
    color: #222;
    margin-bottom: 15px;
}

section p {
    line-height: 1.8;
    color: #555;
}

/* Mobile Responsive */

@media (max-width: 768px) {
    .table-of-contents {
        padding: 15px;
    }

    .table-of-contents h2 {
        font-size: 20px;
    }
}

.enquiry-box {
    position: sticky;
    top: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.enquiry-box h3 {
    margin: 0 0 15px;
    text-align: center;
    font-size: 22px;
    color: #003366;
    font-weight: 700;
}

.enquiry-box form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: 0.3s;
}

.enquiry-box input:focus,
.enquiry-box select:focus,
.enquiry-box textarea:focus {
    border-color: #0066cc;
    outline: none;
}

.enquiry-box textarea {
    height: 90px;
    resize: none;
}

.enquiry-box button {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.enquiry-box button:hover {
    background: #004c99;
}

@media (max-width: 768px) {
    .enquiry-box {
        position: static;
        margin-top: 20px;
    }
}

:target {
    scroll-margin-top: 100px;
}
.blog-image {
    margin: 30px 0;
    text-align: center;
}

.blog-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== Sticky Enquiry Form ===== */

.enquiry-box {
    position: sticky;
    top: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

/* Heading */

.enquiry-box h3 {
    margin: 0 0 8px;
    text-align: center;
    color: #003366;
    font-size: 32px;
    font-weight: 700;
}

.form-offer {
    text-align: center;
    margin-bottom: 18px;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg,#ff5f1f,#ff8c00);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.form-offer p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

.form-offer small {
    display: block;
    margin-top: 8px;
    color: #666;
    font-size: 13px;
}

/* Form Fields */

.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    margin-bottom: 12px;
    border: 1px solid #dbe2ea;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
    transition: all .3s ease;
}

.enquiry-box textarea {
    height: 90px;
    padding-top: 12px;
    resize: none;
}

.enquiry-box input:focus,
.enquiry-box select:focus,
.enquiry-box textarea:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,.12);
    outline: none;
}

/* CTA Button */

.enquiry-box button {
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 8px;
    background: linear-gradient(135deg,#ff6b00,#ff9500);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

.enquiry-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,0,.25);
}

/* Trust Line */

.trust-line {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

/* Mobile */

@media (max-width:768px) {
    .enquiry-box {
        position: static;
        padding: 20px;
    }

    .enquiry-box h3 {
        font-size: 26px;
    }
}

.btn {
    background: linear-gradient(45deg, hsl(209 94% 41%));
    color: #fff;
	border-color: aqua;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn:hover {
    background: linear-gradient(45deg, #2563eb, #1e40af);
    color: #fff;
    transform: scale(1.05);
}