:root {
    /* Primary Colors */
    --primary-dark: #001b3d;
    --primary-blue: #0a2463;
    --secondary-blue: #1a365d;
    --accent-blue: #2d5aa0;
    --light-blue: #e8f4ff;

    /* Gradient */
    --gradient-primary: linear-gradient(
        135deg,
        var(--primary-dark) 10%,
        var(--primary-blue) 100%
    );
    --gradient-secondary: linear-gradient(
        135deg,
        var(--accent-blue) 0%,
        #4a90e2 100%
    );

    /* Neutral Colors */
    --dark: #2c3e50;
    --gray-dark: #495057;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --light: #f8f9fa;
    --white: #ffffff;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 27, 61, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 27, 61, 0.15);
    --shadow-lg: 0 8px 25px rgba(0, 27, 61, 0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-pill: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ===== Page Header Background ===== */
.page-header {
    position: relative;
    margin-top: 0;
    padding: 35px 0;
    background: linear-gradient(135deg, #020024, #090979);
    overflow: hidden;
}

/* ===== Decorative Shapes ===== */
.page-header::before,
.page-header::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    background: #ffffff;
}

.page-header::before {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -90px;
}

.page-header::after {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -70px;
}

/* ===== Breadcrumb Styling ===== */
.breadcrumb-item a {
    color: #eaf4ff;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.breadcrumb-item.active {
    color: #d1ffe7;
    font-weight: 600;
}

/* ===== Title Text ===== */
.page-header h1 {
    color: #ffffff;
}

.page-header p {
    color: #e9f7f1;
    max-width: 720px;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 16px;
    }

    .page-header p {
        font-size: 14px;
    }
    .page-header {
        margin-top: 40px;
    }
}

/* ================================== BREADCRUMB END ================================ */

/*  ====================================== INDEX START ======================================  */
/*  =======================================HERO-SECTION START=====================================  */
.hero-modern {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    height: 500px;
    max-height: 500px;
    display: flex;
    align-items: center;
    margin-bottom: -51px !important;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    animation: fadeIn 0.8s ease-out forwards;
}

.hero-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 4px;
    border-left: 3px solid #007bff;
    opacity: 0;
    animation: slideInLeft 0.6s ease-out 0.3s forwards;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: slideInUp 0.7s ease-out 0.5s forwards;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 2rem;
    max-width: 500px;
    opacity: 0;
    animation: slideInUp 0.7s ease-out 0.7s forwards;
}

.hero-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #007bff;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.9s forwards;
}

.hero-btn:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-modern {
        min-height: 450px;
        height: 450px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: 450px;
        height: 450px;
        text-align: center;
    }

    .hero-slide::after {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-tag {
        border-left: none;
        border-top: 3px solid #007bff;
    }
}

@media (max-width: 480px) {
    .hero-modern {
        min-height: 450px;
        height: 450px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-content {
        padding: 40px 10px;
    }
}
/*  ================================== HERO SECTION START ==================================  */

/*  ================================== ABOUT SECTION START ==================================  */
/* Brand Intro Section */
.brand-intro {
    padding: 30px 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.brand-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Styles */
.brand-header {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.brand-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

.title-highlight {
    display: block;
    color: var(--light-blue);
    position: relative;
}

.title-highlight::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--light-blue);
    opacity: 0;
    animation: lineExpand 0.8s ease-out 1s forwards;
}

/* Content Styles */
.brand-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.brand-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #dbeafe;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.brand-lead strong {
    color: #ed3237;
    font-weight: 700;
}

/* Features Grid */
.brand-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    padding: 30px;
    background: linear-gradient(
        135deg,
        rgba(232, 244, 255, 0.95),
        rgba(255, 255, 255, 0.9)
    );
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 27, 61, 0.35);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.7s;
}
.feature-item:nth-child(2) {
    animation-delay: 0.9s;
}
.feature-item:nth-child(3) {
    animation-delay: 1.1s;
}
.feature-item:nth-child(4) {
    animation-delay: 1.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 90, 160, 0.45);
}

.brand-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    color: #ffffff;
    font-size: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover .brand-feature-icon {
    transform: translateX(5px);
}

.brand-feature-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.brand-feature-text p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--secondary-blue);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .brand-intro {
        padding: 60px 0;
    }

    .brand-title {
        font-size: 2.4rem;
    }

    .brand-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 2rem;
    }

    .brand-lead {
        font-size: 1rem;
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .feature-item {
        padding: 10px;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .brand-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .brand-feature-text h3 {
        font-size: 18px;
    }

    .brand-feature-text p {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .brand-intro {
        padding: 40px 0px;
    }

    .brand-title {
        font-size: 1.8rem;
    }

    .brand-header {
        margin-bottom: 20px;
    }

    .brand-feature-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .brand-feature-text h3 {
        font-size: 15px;
    }

    .brand-feature-text p {
        font-size: 13px;
        line-height: 1.4;
    }
}
/*  ================================== ABOUT SECTION END ==================================  */

/*  ===============================  CASESTUDIES AREA START ==================================  */
/* Services Showcase */
.services-showcase {
    padding: 40px 20px;
    background: #f9fafb;
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.services-title a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.services-title a:hover {
    color: #0077cc;
}

.title-arrow {
    font-size: 1.8rem;
    transition: transform 0.3s;
}

.services-title a:hover .title-arrow {
    transform: translateX(5px);
}

.services-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Image */
.card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-car-img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 119, 204, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .image-hover {
    opacity: 1;
}

/* Content */
.card-content-wrapper {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-name {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
}

.service-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.service-name a:hover {
    color: #0077cc;
}

.service-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Read More Link */
.service-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0077cc;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding-top: 2px;
    transition: all 0.3s;
}

.service-read-more:hover {
    gap: 12px;
    color: #005fa3;
}

.service-read-more svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s;
}

.service-read-more:hover svg {
    transform: translateX(3px);
}

/* Footer */
.services-footer {
    text-align: center;
    padding-top: 0;
}

.all-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #0077cc;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.all-services-btn:hover {
    background: #005fa3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 119, 204, 0.2);
    gap: 14px;
}

.all-services-btn svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s;
}

.all-services-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .service-card {
        background: white;
        border-radius: 7px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 220px;
        display: flex;
        flex-direction: column;
    }

    .services-showcase {
        padding: 30px 1px;
    }

    .services-title {
        font-size: 1.8rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        gap: 20px;
        margin-bottom: 40px;
    }

    .card-image-wrapper {
        height: 180px;
    }

    .card-content-wrapper {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.4rem;
    }

    .services-grid {
        gap: 10px;
        margin-bottom: 20px !important;
    }

    .service-name {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .service-excerpt {
        margin-bottom: 0;
        font-size: 13px; /* smaller */
        line-height: 1.2; /* tighter */
        color: #64748b;

        max-height: 1.6em; /* FORCE single line */
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .all-services-btn {
        width: 100%;
        justify-content: center;
    }
}
/*  ===============================  CASE STUDIES AREA END ==================================  */

/*  ===============================  WHY CHOOSE US START ==================================  */
/* Features Section - Reduced Height */
.features-section {
    padding: 0;
    margin: 0;
    background-color: #f9fafb;
}

.features-gradient {
    background: linear-gradient(135deg, #001b3d 0%, #0a2463 100%);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.features-gradient::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -15%;
    width: 50%;
    height: 160%;
    background: radial-gradient(
        circle,
        rgba(0, 119, 204, 0.12) 0%,
        transparent 70%
    );
}

/* Header */
.features-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.features-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.features-title span {
    color: #60a5fa;
}

.features-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid - Compact */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Feature Card - Compact */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.25);
    box-shadow: 0 10px 25px rgba(0, 119, 204, 0.15);
}

.feature-icon-wrapper {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0077cc 0%, #005fa3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 119, 204, 0.3);
}

.feature-icon svg {
    color: white;
    stroke: currentColor;
    stroke-width: 2;
}

.feature-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    line-height: 1.5;
    color: #cbd5e1;
    margin: 0;
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 30px 16px;
    }

    .features-gradient {
        padding: 20px 0;
        border-radius: 12px;
    }

    .features-title {
        font-size: 1.9rem;
    }

    .features-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        max-width: 100%;
        margin: 0;
    }

    .feature-card {
        padding: 20px;
        min-height: 180px;
    }

    .feature-icon-wrapper {
        margin-bottom: 10px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .features-title {
        font-size: 1.7rem;
    }

    .feature-card {
        padding: 10px;
        min-height: 170px;
    }

    .feature-name {
        font-size: 16px;
    }

    .feature-text {
        font-size: 13px;
    }
}
/*  ===============================  WHY CHOOSE US END ==================================  */

/*  =============================== COUNT CONTAINER START =====================================  */

/* Stats Section - Reduced Height */
.stats-section {
    padding: 0;
    margin: 0;
    background-color: #f9fafb;
}

.stats-gradient {
    background: linear-gradient(
        90deg,
        rgba(2, 0, 36, 1) 0%,
        rgba(9, 9, 121, 1) 100%
    );
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.stats-gradient::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 60%;
    height: 160%;
    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.15) 0%,
        transparent 70%
    );
}

/* Stats Grid - Compact */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    position: relative;
    z-index: 2;
}

/* Stat Card - Compact */
.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(0, 212, 255, 0.25);
    transform: scale(1.05);
}

.stat-icon svg {
    color: #00d4ff;
    stroke: currentColor;
    stroke-width: 2;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    font-family: "Segoe UI", system-ui, sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #e0e0e0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 30px 16px;
    }

    .stats-gradient {
        padding: 25px 20px;
        border-radius: 10px;
    }

    .stats-grid {
        gap: 12px;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .stats-gradient {
        padding: 20px 0;
        border-radius: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        margin: 0;
        gap: 7px;
    }

    .stat-card {
        padding: 10px;
    }

    .stat-number {
        font-size: 25px;
    }

    .stat-label {
        font-size: 15px;
    }
}
/*  =============================== COUNT CONTAINER END =====================================  */

/*  =============================== BLOG AREA START =====================================  */
/* Blog Section */
.new-blog-section {
    padding: 40px 20px;
    background: #f8fafc;
}

/* Header */
.new-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.header-left {
    flex: 1;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 14px;
    font-weight: 600;
    border-radius: 16px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.header-right {
    flex-shrink: 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #0077cc;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #005fa3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 119, 204, 0.2);
    gap: 12px;
}

.view-all-btn svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s;
}

.view-all-btn:hover svg {
    transform: translateX(3px);
}

/* Blog Grid */
.new-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Blog Card */
.new-blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.new-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Image */
.new-blog-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.new-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.new-blog-card:hover .new-blog-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.new-blog-card:hover .image-overlay {
    opacity: 1;
}

/* Content */
.new-blog-content {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.new-blog-title {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
}

.new-blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.new-blog-title a:hover {
    color: #0077cc;
}

.new-blog-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Footer */
.new-blog-footer {
    margin-top: auto;
    padding-top: 18px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0077cc;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.read-more:hover {
    gap: 10px;
    color: #005fa3;
}

.read-more svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s;
}

.read-more:hover svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .new-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .new-blog-section {
        padding: 30px 0;
    }

    .new-blog-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .view-all-btn {
        align-self: flex-start;
        padding: 10px 20px;
    }

    .new-blog-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        margin: 0 auto;
        gap: 7px;
    }

    .new-blog-image {
        height: 200px;
    }

    .new-blog-content {
        padding: 17px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.4rem;
    }

    .section-badge {
        font-size: 13px;
        padding: 5px 16px;
    }

    .view-all-btn {
        width: 100%;
        padding: 7px 14px;
        justify-content: center;
        font-size: 14px;
    }

    .new-blog-card {
        border-radius: 7px;
        height: 240px;
    }

    .new-blog-content {
        padding: 10px;
    }

    .new-blog-title {
        margin-bottom: 9px;
        font-size: 17px;
        font-weight: 600;
        color: #1e293b;
    }

    .new-blog-excerpt {
        margin-bottom: 0;
        font-size: 13px;
        line-height: 1.2;
        color: #64748b;

        max-height: 1.6em; /* force single line */
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}
/*  =============================== BLOG AREA END =====================================  */
/*  ===================================== INDEX-END =====================================  */
