/* ULTRA UNIQUE BLOG LAYOUT - GLASSMORPHISM & ANIMATED ORBS */

/* Core Layout & Font */
.blog-detail-wrapper { padding: 100px 0; background-color: #f0f4f8; font-family: 'Source Sans Pro', sans-serif; position: relative; overflow: clip; z-index: 1; }
.blog-detail-wrapper .container > .row { display: flex; flex-wrap: wrap; }

/* Animated Floating Orbs in Background */
.blog-detail-wrapper::before, .blog-detail-wrapper::after { content: ''; position: absolute; border-radius: 50%; filter: blur(120px); z-index: -1; animation: floatOrbs 20s infinite alternate ease-in-out; }
.blog-detail-wrapper::before { width: 600px; height: 600px; background: rgba(0, 89, 138, 0.4); top: -100px; left: -100px; }
.blog-detail-wrapper::after { width: 500px; height: 500px; background: rgba(12, 188, 215, 0.3); bottom: -100px; right: -100px; animation-delay: -10s; }

@keyframes floatOrbs {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(150px, 100px) scale(1.2); }
    100% { transform: translate(-100px, 250px) scale(0.9); }
}

.container { position: relative; z-index: 10; }

/* Glassmorphism Main Content */
.blog-main-content { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 50px; border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.6); box-shadow: 0 30px 60px rgba(0,0,0,0.05); }

/* Main Image with Asymmetric styling */
.blog-main-image { width: 100%; height: auto; border-radius: 20px; margin-bottom: 40px; transform: rotate(-1deg); box-shadow: 15px 15px 0px rgba(0, 89, 138, 0.1); transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.blog-main-image:hover { transform: rotate(0deg) scale(1.03); box-shadow: 20px 20px 30px rgba(0, 89, 138, 0.2); }

/* Meta Tags - Neumorphic */
.blog-meta { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; padding-bottom: 25px; border-bottom: 2px dashed rgba(0, 89, 138, 0.2); }
.blog-meta span { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #00598a; padding: 10px 20px; border-radius: 12px; font-weight: 700; font-size: 14px; box-shadow: 5px 5px 15px rgba(0,0,0,0.05), -5px -5px 15px rgba(255,255,255,0.8); transition: all 0.3s; }
.blog-meta span:hover { background: #00598a; color: #fff; transform: translateY(-3px); }

/* Gradient Title */
.blog-main-title { font-size: 46px; font-weight: 900; background: linear-gradient(135deg, #00598a, #0cbcd7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 30px; line-height: 1.2; text-align: left; }

/* Drop Cap */
.blog-text > p:first-of-type::first-letter { float: left; font-size: 80px; line-height: 70px; padding: 10px 20px 10px 0; font-weight: 900; font-family: Georgia, serif; background: linear-gradient(135deg, #00598a, #0cbcd7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* General Text */
.blog-text p { font-size: 19px; line-height: 1.9; color: #3a4a5a; margin-bottom: 25px; text-align: justify; letter-spacing: 0.2px; }

/* 3D Headers */
.blog-text h3 { font-size: 32px; font-weight: 800; color: #113475; display: inline-block; position: relative; z-index: 1; }
.blog-text h3::before { content: ''; position: absolute; left: -10px; bottom: 5px; width: calc(100% + 20px); height: 15px; background: rgb(3 169 244 / 14%); z-index: -1; transform: skewX(-15deg); transition: height 0.3s; }
.blog-text h3:hover::before { height: 100%; }

/* Grid Cards for UL */
.blog-text ul { list-style: none; padding: 0; margin: 40px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.blog-text ul li { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.8); border-radius: 20px; padding: 30px 25px 30px 70px; font-size: 18px; color: #3a4a5a; line-height: 1.7; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-align: justify; }
.blog-text ul li:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 40px rgba(0, 89, 138, 0.1); background: #fff; }
.blog-text ul li i { position: absolute; left: 20px; top: 30px; color: #fff; font-size: 16px; background: linear-gradient(135deg, #00598a, #0cbcd7); width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 10px; transform: rotate(15deg); box-shadow: 2px 5px 10px rgba(0,101,1,0.3); }
.blog-text ul li:hover i { transform: rotate(0deg); }

/* Step-by-step Timeline for OL */
.blog-text ol { list-style: none; padding: 0; margin: 50px 0; position: relative; }
.blog-text ol::before { content: ''; position: absolute; left: 35px; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom, #00598a, rgba(0,89,138,0.1)); border-radius: 4px; }
.blog-text ol li { position: relative; padding-left: 90px; margin-bottom: 40px; font-size: 19px; color: #3a4a5a; line-height: 1.8; text-align: justify; }
.blog-text ol li::before { content: counter(item); counter-increment: item; position: absolute; left: 10px; top: 0; width: 54px; height: 54px; background: #fff; color: #00598a; font-size: 24px; font-weight: 900; border-radius: 15px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(0,89,138,0.15); border: 2px solid #00598a; z-index: 2; transform: rotate(-10deg); transition: all 0.3s; }
.blog-text ol li:hover::before { transform: rotate(0deg) scale(1.1); background: #00598a; color: #fff; }
.blog-text ol { counter-reset: item; }
.blog-text ol li strong { color: #113475; font-size: 22px; display: block; margin-bottom: 8px; font-weight: 800; }

/* Callout Box - Cyber/Industrial Glow */
.callout-box { background: rgba(0, 89, 138, 0.03); border: 1px solid rgba(0, 89, 138, 0.1); border-left: 8px solid #00598a; padding: 40px; border-radius: 20px; margin: 50px 0; font-size: 22px; font-style: italic; font-weight: 600; color: #113475; line-height: 1.8; position: relative; box-shadow: inset 0 0 50px rgba(255,255,255,0.5), 0 15px 30px rgba(0,0,0,0.02); overflow: hidden; text-align: justify; }
.callout-box::after { content: '\f10d'; font-family: 'FontAwesome'; position: absolute; bottom: -20px; right: 10px; font-size: 100px; color: #00598a; opacity: 0.05; transform: rotate(15deg); }

/* Sidebar Enhancements - Floating Glass Panels */
.sidebar-sticky { position: sticky; top: 130px; }
.blog-sidebar { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 25px 20px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.6); box-shadow: 0 30px 60px rgba(0,0,0,0.05); margin-bottom: 40px; position: relative; }
.sidebar-title { font-size: 26px; font-weight: 800; color: #113475; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.sidebar-title::after { content: ''; position: absolute; top: 30px; right: 20px; width: 15px; height: 15px; background: #0cbcd7; border-radius: 50%; box-shadow: 0 0 20px #0cbcd7; animation: pulse 2s infinite; }

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(12, 188, 215, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(12, 188, 215, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(12, 188, 215, 0); }
}

.sidebar-links { padding-left: 0; margin-left: 0; }
.sidebar-links li { margin-bottom: 8px; list-style:none; }
.sidebar-links li a { display: flex; flex-direction: column; padding: 15px; background: #fff; border-radius: 15px; color: #444; font-weight: 700; font-size: 16px; transition: all 0.4s; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid transparent; gap: 15px; text-align: center; }
.sidebar-links li a:hover { background: linear-gradient(135deg, #00598a, #007dc5); color: #fff; transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,89,138,0.2); }
.sidebar-blog-img { width: 100%;  border-radius: 10px; object-fit: cover; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.sidebar-cta { position: relative; overflow: hidden; background: linear-gradient(135deg, #113475, #00598a); text-align: center; color: #fff; border-radius: 30px; padding: 50px 35px; box-shadow: 0 20px 40px rgba(17,52,117,0.3); }
.sidebar-cta::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 40%); animation: rotate 10s linear infinite; }

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.sidebar-cta h3 { position: relative; font-size: 28px; font-weight: 900; margin-bottom: 20px; color: #fff; z-index: 1; }
.sidebar-cta p { position: relative; font-size: 17px; margin-bottom: 35px; opacity: 0.9; line-height: 1.7; z-index: 1; }
.sidebar-cta .btn-cta { position: relative; z-index: 1; background: #fff; color: #113475; padding: 15px 35px; border-radius: 40px; font-weight: 800; font-size: 16px; text-transform: uppercase; letter-spacing: 2px; display: inline-block; transition: all 0.4s; box-shadow: 0 10px 25px rgba(0,0,0,0.2); text-decoration: none; }
.sidebar-cta .btn-cta:hover { background: #0cbcd7; color: #fff; transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 30px rgba(12,188,215,0.4); }

/* Custom Scrollbar for this page */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #f0f4f8; }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, #00598a, #006501); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #113475; }
@media (max-width: 991px) {
    #mobile-top-sidebar { order: -1; margin-bottom: 40px; }
}
@media (max-width: 767px) {
    .pageBanner { margin-top: 0 !important; padding: 20px 0 !important; }
    .pageBanner .container { padding-left: 45px !important; padding-right: 45px !important; }
    .pageBanner h1 { padding-top: 20px !important; font-size: 26px !important; line-height: 1.3 !important; text-align: center !important; }
    .inq-btn-home { left: 0 !important; top: 180px !important; }
    .blog-main-content { padding: 25px 25px 25px 35px; border-radius: 20px; }
    .blog-main-title { font-size: 30px; margin-bottom: 20px; }
    .blog-text > p:first-of-type::first-letter { font-size: 60px; line-height: 50px; padding: 5px 15px 5px 0; }
    .blog-text p { font-size: 17px; margin-bottom: 20px; }
    .blog-text h3 { font-size: 24px; }
    .blog-text ul { grid-template-columns: 1fr; }
    .blog-text ul li { padding: 20px 20px 20px 60px; font-size: 16px; }
    .blog-text ol { margin: 30px 0; }
    .blog-text ol::before { left: 20px; }
    .blog-text ol li { padding-left: 60px; margin-bottom: 30px; font-size: 17px; }
    .blog-text ol li::before { width: 40px; height: 40px; font-size: 18px; left: 0; top: 0; }
    .blog-text ol li strong { font-size: 19px; }
    .callout-box { padding: 25px; font-size: 18px; margin: 30px 0; }
}
