:root {
    --brand-red: #E31E24;
    --brand-dark-blue: #0A1D37;
    --brand-light-bg: #F8F9FA;
    --text-dark: #212529;
    --text-muted: #6C757D;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.25);
    --card-shadow: 0 10px 30px rgba(10, 29, 55, 0.05);
    --card-shadow-hover: 0 15px 35px rgba(10, 29, 55, 0.12);
     --bs-primary-rgb: 13, 110, 253; 
}

html,
body {
    font-family: 'Prompt', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-red);
    border-radius: 4px;
}
strong {
	 color: var(--brand-dark-blue);
}
/* Utility Styles */
.text-brand-red {
    color: var(--brand-red);
}

.bg-brand-red {
    background-color: var(--brand-red);
}

.bg-brand-dark-blue {
    background-color: var(--brand-dark-blue);
}

.bg-brand-light {
    background-color: var(--brand-light-bg);
}

/* Navigation Bar Styling */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand-logo {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--brand-dark-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-box {
    background-color: var(--brand-red);
    color: #ffffff;
    padding: 2px 12px;
    font-style: italic;
    transform: skewX(-12deg);
    display: inline-block;
    margin-left: 4px;
}

.logo-box span {
    display: inline-block;
    transform: skewX(12deg);
}

.nav-link {
    font-weight: 500;
    color: var(--brand-dark-blue) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-red) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background-color: var(--brand-red);
    border-radius: 2px;
}

/* Offcanvas Mobile Navigation */
.offcanvas {
    background: rgba(10, 29, 55, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #ffffff;
    width: 300px !important;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem;
    padding: 12px 20px !important;
    border-radius: 4px;
    transition: all 0.3s;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
    color: #ffffff !important;
    background-color: rgba(227, 30, 36, 0.15);
    padding-left: 28px !important;
}

.offcanvas-socials {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 15px;
    justify-content: center;
}

.offcanvas-socials a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.offcanvas-socials a:hover {
    background-color: var(--brand-red);
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(10, 29, 55, 0.85), rgba(10, 29, 55, 0.85)),
        url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    padding: 140px 0 120px 0;
    color: #ffffff;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 20px;
}

.btn-brand-solid {
    background: linear-gradient(135deg, var(--brand-red) 0%, #b91c1c 100%);
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.15);
}

.btn-brand-solid:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
}

.btn-brand-outline {
    background-color: #ffffff;
    color: var(--brand-red);
    border: 2px solid #ffffff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-brand-outline:hover {
    background-color: var(--brand-red) !important;
    color: #ffffff !important;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Stats Bar */
.stats-bar {
    background-color: #0E2544;
    color: #ffffff;
    padding: 22px 0;
    border-bottom: 4px solid var(--brand-red);
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stats-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stats-text h6 {
    margin-bottom: 2px;
    font-weight: 600;
    font-size: 0.95rem;
}

.stats-text p {
    margin-bottom: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Section Header Accent */
.section-header-title {
    position: relative;
    padding-left: 12px;
    font-weight: 700;
    color: var(--brand-dark-blue);
    display: inline-block;
}

.section-header-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 5px;
    background-color: var(--brand-red);
    border-radius: 2px;
}

/* Services Cards */
.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-red);
}

.service-card-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img-wrapper img {
    transform: scale(1.08);
}

.service-icon-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.service-card-body {
    padding: 35px 20px 20px 20px;
}

.service-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--brand-dark-blue);
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.service-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* .service-list li::before {
    content: '•';
    color: var(--brand-red);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
} */

.service-link {
    color: #0d6efd;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.service-link:hover {
    color: var(--brand-red);
    text-decoration: underline;
}

.case-study-badge {
    background-color: #000;
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 12px;
}

.case-block {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.case-label {
    font-weight: 600;
    color: var(--brand-dark-blue);
    margin-bottom: 2px;
}

.case-text {
    color: var(--text-muted);
}

.case-result-list {
    padding-left: 15px;
    margin-bottom: 0;
}

.case-result-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* 2-Column Luxury About Section */
.about-modern-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-image-composite {
    position: relative;
    padding: 15px;
}

.about-image-main {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background-color: var(--brand-red);
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.3);
    text-align: center;
    z-index: 2;
}

.experience-badge .num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .txt {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.core-value-card {
    background-color: var(--brand-light-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 6px;
    height: 100%;
    transition: all 0.3s;
}

.core-value-card:hover {
    border-color: var(--brand-red);
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Swiper/Slider Works Gallery Settings */
.worksSwiper {
    padding: 10px 0 30px 0;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
        word-break: break-word;
    }
}

/* Large Works Gallery Section */
.large-gallery-card {
    border: none;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.large-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card-footer {
    background-color: #ffffff;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--brand-dark-blue);
    font-size: 0.95rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Middle Call-to-Action Bar */
.middle-cta-bar {
    background: linear-gradient(135deg, var(--brand-red) 30%, var(--brand-dark-blue) 100%);
    padding: 60px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.middle-cta-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(255 255 255 / 15%) 10%, transparent 11%);
    background-size: 20px 20px;
    opacity: 1;
}

/* Case Studies Accordion (Q&A Premium Style) */
.case-studies-section {
    background-color: var(--brand-light-bg);
    padding: 80px 0;
}

.premium-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.premium-accordion .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--brand-dark-blue);
    padding: 20px;
    background-color: #ffffff;
    border: none;
    box-shadow: none !important;
}

.premium-accordion .accordion-button:not(.collapsed) {
    background-color: var(--brand-red);
    color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-accordion .accordion-button:not(.collapsed) .text-brand-red {
    color: #ffffff !important;
}

.premium-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A1D37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.premium-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.premium-accordion .accordion-body {
    background-color: #ffffff;
    padding: 25px;
   /*  font-size: 0.95rem; */
    line-height: 1.8;
    color: var(--text-muted);
}

/* Authorized Brand Partners Section */
.brand-partners-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.brand-card {
    background-color: var(--brand-light-bg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    padding: 20px 10px;
    text-align: center;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-card img {
    max-width: 80%;
    max-height: 45px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-card:hover {
    background-color: #ffffff;
    border-color: rgba(227, 30, 36, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.brand-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Articles & Contact Section */
.bottom-grid-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Articles List */
.article-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.article-item:last-child {
    border-bottom: none;
}

.article-thumb {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.article-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-dark-blue);
    margin-bottom: 4px;
}

.article-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

/* Contact Panel details */
.contact-info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.contact-info-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info-list li i {
    color: var(--brand-red);
    font-size: 1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.qr-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    background-color: #ffffff;
}

.qr-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 8px;
}

.btn-qr-label {
    background-color: var(--brand-red);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    padding: 5px 12px;
    border-radius: 3px;
    width: 100%;
}

/* Footer styling */
.footer-main {
    background-color: var(--brand-dark-blue);
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 30px 0;
    font-size: 0.88rem;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-main h5 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-main h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--brand-red);
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-red);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--brand-red);
    margin-top: 3px;
}

/* Red copyright bar */
.footer-bottom {
    background-color: var(--brand-red);
    color: #ffffff;
    padding: 12px 0;
    font-size: 0.8rem;
}

/* Map styling */
.map-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
    height: 160px;
}

/* Standard Buttons */
.btn-red-standard {
    background-color: var(--brand-red);
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 500;
    margin-top: auto;
    align-self: flex-start;
    transition: all 0.2s ease;
}

.btn-red-standard:hover {
    background-color: #b91c1c;
    color: white;
    transform: translateY(-1px);
}

/* Floating CTA Button with Glassmorphism & Pulsing Effect */
.floating-cta-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.floating-btn-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    cursor: pointer;
}

.floating-btn-item:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.btn-facebook {
    background-color: #1877F2;
}

.btn-line {
    background-color: #06C755;
}

.btn-phone {
    background-color: #E31E24;
}

.main-pulse-cta {
    position: relative;
    background: rgba(10, 29, 55, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 56px;
    height: 56px;
}

.main-pulse-cta::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--brand-red);
    opacity: 0.4;
    z-index: -1;
    animation: pulse-ring 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    80%,
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.cta-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

@media (hover: hover) {
    .floating-cta-menu:hover .cta-list {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.floating-cta-menu.active .cta-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Reading Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1100;
}

.progress-bar {
    height: 4px;
    background: var(--brand-red);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Article Hero Header */
.article-hero {
    padding: 60px 0;
    background-color: var(--brand-light-bg);
    border-bottom: 1px solid rgba(10, 29, 55, 0.05);
}

.breadcrumb-item a {
    color: var(--brand-dark-blue);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--brand-red);
}

.category-badge {
    background-color: var(--brand-red);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.2);
}

.article-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--brand-dark-blue);
    line-height: 1.4;
}

.author-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.author-meta i {
    color: var(--brand-red);
}

/* Large Feature Image */
.feature-img-box {
    position: relative;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-top: -30px;
    margin-bottom: 50px;
    border: 1px solid rgba(10, 29, 55, 0.05);
}

.feature-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Typography Design */
.article-body-wrapper {
    line-height: 1.9;
    font-size: 1.05rem;
    color: #333333;
}

.article-body-wrapper p {
    margin-bottom: 24px;
    text-indent: 2em;
}

.article-quote-block,
.article-body-wrapper blockquote {
    border-left: 5px solid var(--brand-red);
    padding: 20px 30px;
    background-color: var(--brand-light-bg);
    border-radius: 0 12px 12px 0;
    margin: 35px 0;
    font-style: italic;
    color: var(--brand-dark-blue);
    font-weight: 500;
    box-shadow: inset 5px 0 10px rgba(0, 0, 0, 0.01);
}

.article-sub-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark-blue);
    margin-top: 45px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.article-sub-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 5px;
    background-color: var(--brand-red);
    border-radius: 2px;
}

/* Share Area */
.share-box-container {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    margin-top: 50px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-facebook {
    background-color: #1877F2;
}

.btn-line {
    background-color: #06C755;
}

.btn-copy {
    background-color: var(--brand-dark-blue);
}

/* Sidebar Components */
.sticky-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.sidebar-card {
    background-color: #ffffff;
    border: 1px solid rgba(10, 29, 55, 0.06);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
}

.sidebar-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-dark-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(10, 29, 55, 0.05);
}

.sidebar-card-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--brand-red);
}

/* Author widget */
.author-widget {
    text-align: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--brand-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px auto;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.2);
}

/* TOC list */
.toc-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.toc-list a:hover {
    color: var(--brand-red);
    padding-left: 5px;
}

.toc-list i {
    color: var(--brand-red);
    font-size: 0.8rem;
}

/* Related posts widget */
.related-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.related-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-thumb {
    width: 75px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.related-info h6 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
}

.related-info h6 a {
    color: var(--brand-dark-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.related-info h6 a:hover {
    color: var(--brand-red);
}

.related-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* CTA Sidebar Card */
.sidebar-cta-card {
    background: linear-gradient(135deg, var(--brand-dark-blue) 0%, #15335e 100%);
    color: #ffffff;
    border: none;
}

.sidebar-cta-card .sidebar-card-title {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Quote Request Modal */
.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

/* Toast Success Alert */
.toast-copy-success {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: rgba(10, 29, 55, 0.95);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
}

.toast-copy-success.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .feature-img-box {
        height: 320px;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .sticky-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}

/* Inner Page Header */
.page-header {
    background: linear-gradient(rgba(10, 29, 55, 0.9), rgba(10, 29, 55, 0.9)),
        url('') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: #ffffff;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-dark-blue));
}

/* Vision & Mission Cards */
.vision-card {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--brand-red);
    transition: transform 0.3s;
}

.vision-card:hover {
    transform: translateY(-5px);
}

/* Timeline Styling */
.history-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(10, 29, 55, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--brand-red);
    border: 2px solid #fff;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.3);
}

/* Team Section Styling */
.team-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-red);
}

.team-img-wrapper {
    height: 250px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark-blue);
}

/* Vertical Progress Timeline (Left Side) */
.process-timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 25px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background: linear-gradient(to bottom, var(--brand-red) 30%, rgba(10, 29, 55, 0.1) 100%);
}

.process-timeline-step {
    position: relative;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}

.process-timeline-step:last-child {
    margin-bottom: 0;
}

.process-step-num {
    position: absolute;
    left: -50px;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid var(--brand-red);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.process-timeline-step:hover .process-step-num {
    background-color: var(--brand-red);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.5);
    transform: scale(1.15);
}

.process-step-title {
    font-weight: 700;
    color: var(--brand-dark-blue);
    margin-bottom: 6px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.process-timeline-step:hover .process-step-title {
    color: var(--brand-red);
}

/* Split Column Layout Settings */
.sticky-sidebar-container {
    position: sticky;
    top: 100px;
    z-index: 10;
}

/* Horizontal Service Cards (Right Side) */
.horizontal-service-card {
    background: #ffffff;
    border: 1px solid rgba(10, 29, 55, 0.06);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.horizontal-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(227, 30, 36, 0.15);
}

.horizontal-service-card .row {
    align-items: stretch;
}

.horizontal-card-img-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.horizontal-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
}

.horizontal-service-card:hover .horizontal-card-img-wrapper img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.horizontal-card-body {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.horizontal-card-badge {
    display: inline-block;
    align-self: start;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

/* Modern Spec Grid */
.spec-grid-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.spec-grid-list li {
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 24px;
    line-height: 1.4;
}

.spec-grid-list li i {
    color: var(--brand-red);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.horizontal-service-card:hover .spec-grid-list li i {
    transform: scale(1.2);
}

/* Portfolio Filter Tabs styling */
.filter-btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.btn-filter {
    background-color: #ffffff;
    color: var(--brand-dark-blue);
    border: 1px solid rgba(10, 29, 55, 0.15);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 0.9rem;
}

.btn-filter:hover,
.btn-filter.active {
    background-color: var(--brand-red);
    color: #ffffff;
    border-color: var(--brand-red);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.2);
    transform: translateY(-2px);
}

/* Grid Portfolio Cards Styling */
.portfolio-card-item {
    display: block;
    transition: all 0.4s ease;
}

.portfolio-card {
    background: #ffffff;
    border: 1px solid rgba(10, 29, 55, 0.06);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-0px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(227, 30, 36, 0.15);
}

.portfolio-card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.portfolio-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-card:hover .portfolio-card-img-wrapper img {
    transform: scale(1.08);
}

.portfolio-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(10, 29, 55, 0.9);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.portfolio-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.portfolio-card-meta i {
    color: var(--brand-red);
}

.portfolio-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-dark-blue);
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.portfolio-card:hover .portfolio-card-title {
    color: var(--brand-red);
}

.portfolio-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Live Search & Filter styling */
.search-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 24px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(10, 29, 55, 0.05);
}

.search-input-group {
    position: relative;
}

.search-input-group i {
    position: absolute;
    right:20px ;
    top: 50%;
    transform: translateY(-50%);

    font-size: 1.1rem;
}

.search-control {
    height: 52px;
    padding-left: 55px;
    border-radius: 8px;
    border: 1px solid rgba(10, 29, 55, 0.12);
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-control:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

/* Featured Article Card Styling */
.featured-card {
    background: #ffffff;
    border: 1px solid rgba(10, 29, 55, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(227, 30, 36, 0.1);
}

.featured-img-wrapper {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.featured-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-card:hover .featured-img-wrapper img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--brand-red);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.featured-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.meta-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-text i {
    color: var(--brand-red);
}

.featured-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brand-dark-blue);
    line-height: 1.4;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.featured-card:hover .featured-title {
    color: var(--brand-red);
}

.featured-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Article Grid Card Styling */
.article-card-item {
    transition: all 0.4s ease;
}

.article-card {
    background: #ffffff;
    border: 1px solid rgba(10, 29, 55, 0.06);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(227, 30, 36, 0.15);
}

.article-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.article-card:hover .article-card-img-wrapper img {
    transform: scale(1.08);
}

.article-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(10, 29, 55, 0.9);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.article-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-dark-blue);
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.article-card:hover .article-card-title {
    color: var(--brand-red);
}

.article-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Dynamic Reading Modal Customization */
.modal-header-banner {
    height: 320px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: .4rem;
    border-top-right-radius: .4rem;
}

.modal-header-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-header-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 29, 55, 0.98), transparent);
}

.modal-header-title-box {
    position: absolute;
    bottom: 24px;
    left: 30px;
    right: 30px;
    z-index: 3;
    color: #ffffff;
}

.modal-read-badge {
    background-color: var(--brand-red);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.modal-meta-row {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
}

.modal-meta-row i {
    color: var(--brand-red);
}

.article-paragraph {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    text-indent: 2em;
}

/* Contact Info Cards */
.contact-info-card {
    background-color: #ffffff;
    border: 1px solid rgba(10, 29, 55, 0.06);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(227, 30, 36, 0.15);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(227, 30, 36, 0.1);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    background-color: var(--brand-red);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

/* Forms Layout & Inputs */
.premium-form-card {
    background-color: #ffffff;
    border: 1px solid rgba(10, 29, 55, 0.06);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.form-label {
    font-weight: 600;
    color: var(--brand-dark-blue);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 1px solid rgba(10, 29, 55, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

/* Direct Connection Panel */
.direct-connect-panel {
    background-color: var(--brand-dark-blue);
    color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    height: 100%;
}

.connect-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.connect-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.connect-list li i {
    color: var(--brand-red);
    font-size: 1.25rem;
    margin-top: 3px;
}

.connect-list li span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* QR Code Element on Contact */
.qr-badge-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.qr-svg {
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 5px;
    flex-shrink: 0;
}

.qr-info h6 {
    font-weight: 700;
    margin-bottom: 4px;
}

.qr-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

/* Google Maps Box */
.map-section {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(10, 29, 55, 0.05);
    height: 450px;
}

/* Dynamic Detail Modal Customization */
.card-header-img {
    height: 260px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

.card-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-header-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 29, 55, 0.95), transparent);
}

.card-header-title-box {
    position: absolute;
    bottom: 20px;
    left: 24px;
    right: 24px;
    z-index: 3;
    color: #ffffff;
}

.card-badge {
    background-color: var(--brand-red);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 8px;
}

.card-info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.card-info-list li {
    font-size: 0.88rem;
    color: var(--text-dark);
    padding: 10px 15px;
    background-color: var(--brand-light-bg);
    border-radius: 6px;
    border-left: 3px solid var(--brand-red);
}

.card-info-list li span {
    display: block;
    font-weight: 700;
    color: var(--brand-dark-blue);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.case-block {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid rgba(10, 29, 55, 0.05);
}

.case-label {
    font-weight: 700;
    color: var(--brand-dark-blue);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.case-label i {
    color: var(--brand-red);
}

.case-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Dynamic Hero Banner */
.service-detail-hero {
    position: relative;
    padding: 100px 0;
    background-color: var(--brand-dark-blue);
    color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(10, 29, 55, 0.9), rgba(10, 29, 55, 0.75));
    z-index: 1;
}

.service-detail-hero .container {
    position: relative;
    z-index: 2;
}

.service-badge {
    background-color: var(--brand-red);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.service-main-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Layout Elements */
.service-body-wrapper {
    line-height: 1.9;
    font-size: 1.05rem;
    color: #333333;
}

.tech-scope-box {
    background-color: var(--brand-light-bg);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(10, 29, 55, 0.05);
    margin: 40px 0;
}

.tech-scope-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand-dark-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-scope-title i {
    color: var(--brand-red);
}

.tech-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.tech-list-grid li {
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.tech-list-grid li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--brand-red);
    position: absolute;
    left: 0;
    top: 2px;
}

.section-sub-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark-blue);
    margin-top: 45px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.section-sub-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 5px;
    background-color: var(--brand-red);
    border-radius: 2px;
}

/* Sidebar Elements */
.sticky-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.sidebar-card {
    background-color: #ffffff;
    border: 1px solid rgba(10, 29, 55, 0.06);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
}

.sidebar-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-dark-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(10, 29, 55, 0.05);
}

.sidebar-card-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--brand-red);
}

/* Sidebar Nav List */
.sidebar-nav-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.sidebar-nav-list li {
    margin-bottom: 10px;
}

.sidebar-nav-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 16px;
    background-color: var(--brand-light-bg);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    font-size: 0.92rem;
    border-left: 3px solid transparent;
}

.sidebar-nav-list a:hover,
.sidebar-nav-list a.active {
    background-color: #ffffff;
    border-color: var(--brand-red);
    color: var(--brand-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    padding-left: 20px;
}

/* Sidebar Form style */
.sidebar-form-card {
    background: linear-gradient(135deg, var(--brand-dark-blue) 0%, #15335e 100%);
    color: #ffffff;
    border: none;
}

.sidebar-form-card .sidebar-card-title {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.form-control-dark {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.9rem;
    border-radius: 6px;
    padding: 11px 15px;
}

.form-control-dark:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--brand-red);
    box-shadow: none;
    color: #ffffff;
}

.form-control-dark::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Premium Buttons */
.btn-brand-solid {
    background: linear-gradient(135deg, var(--brand-red) 0%, #b91c1c 100%);
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.15);
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-brand-solid:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
}

/* Image Display Box */
.image-gallery-showcase {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-top: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 380px;
}

.image-gallery-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Responsive Styles */
@media (max-width: 991.98px) {
    .service-main-title {
        font-size: 2rem;
    }

    .image-gallery-showcase {
        height: 260px;
    }

    .sticky-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}/* Experience Layout 2 Styles */
.experience-layout-2 {
    background-color: #f8fafc; /* Soft modern background */
}
.exp-premium-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    z-index: 1;
}
.exp-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 5px 10px rgba(0, 0, 0, 0.04);
    border-color: rgba(var(--bs-primary-rgb), 0.1);
}
.glow-bg {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.08) 0%, rgba(var(--bs-primary-rgb), 0) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.exp-premium-card:hover .glow-bg {
    opacity: 1;
}
.exp-icon-container {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    box-shadow: 2px 4px 12px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(255,255,255,1);
    color: var(--brand-red);
    transition: all 0.4s ease;
}
.exp-premium-card:hover .exp-icon-container {
    background: var(--brand-red);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(var(--bs-primary-rgb), 0.4);
}
.exp-title {
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}
.exp-premium-card:hover .exp-title {
    color: var(--brand-red) !important;
}
.exp-summary {
    line-height: 1.6;
}
.corner-accent {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, rgba(var(--bs-primary-rgb), 0.05) 50%);
    transition: all 0.4s ease;
}
.exp-premium-card:hover .corner-accent {
    background: linear-gradient(135deg, transparent 50%, rgba(var(--bs-primary-rgb), 0.15) 50%);
}

/* ==========================================================================
   Modern Glowing Timeline (Why Module layout-1)
   ========================================================================== */
.modern-timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* The Line */
.modern-timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px; /* Line position */
    width: 2px;
    background: rgba(227, 34, 34, 0.15); /* Soft Red */
}

@media (max-width: 768px) {
    .modern-timeline-container::before {
        left: 24px;
    }
}

.timeline-step {
    position: relative;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: flex-start;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: #fff;
    border: 2px solid #e32222; /* Fallback brand red */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 6px rgba(227, 34, 34, 0.05);
}

@media (max-width: 768px) {
    .timeline-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        box-shadow: 0 0 0 4px rgba(227, 34, 34, 0.05);
    }
}

.timeline-step:hover .timeline-icon {
    background: #e32222;
    color: #fff;
    box-shadow: 0 0 15px rgba(227, 34, 34, 0.4);
    transform: scale(1.05);
}

.timeline-step:hover .timeline-icon i {
    color: #fff !important;
}


.timeline-content {
    margin-left: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    flex-grow: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

@media (max-width: 768px) {
    .timeline-content {
        margin-left: 1rem;
        padding: 1.5rem;
    }
}

.timeline-step:hover .timeline-content {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.timeline-watermark {
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0,0,0,0.02);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.timeline-step:hover .timeline-watermark {
    color: rgba(227, 34, 34, 0.05);
    transform: scale(1.1) rotate(-5deg);
}

.timeline-content-inner {
    position: relative;
    z-index: 1;
}

/* Custom Module Column */
@media (min-width: 992px) {
    .custom-module-col {
        flex: 0 0 var(--lg-width) !important;
        max-width: var(--lg-width) !important;
    }
}

/* Pagination Theme Styling */
.pagination {
    --bs-pagination-color: var(--brand-dark-blue);
    --bs-pagination-active-bg: var(--brand-red);
    --bs-pagination-active-border-color: var(--brand-red);
    --bs-pagination-hover-color: var(--brand-red);
    --bs-pagination-hover-bg: var(--brand-light-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(227, 30, 36, 0.25);
}

.page-link {
    border-radius: 8px;
    margin: 0 3px;
    border: 1px solid #e9ecef;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-item.active .page-link {
    color: white !important;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.2);
}

.page-item:first-child .page-link, 
.page-item:last-child .page-link {
    border-radius: 8px;
}
.dropdown-item.active, .dropdown-item:active{
    color: var(--brand-red) !important;
}