/* 
    Final Edge Custom Styles 
    Senior Candidate Grade CSS 
*/
:root {
    --red: #E31414;
    --red-dark: #b00e0e;
    --bg-footer: #0d0000;
    --bg-cta: #1a0000;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.55);
    --border: rgba(255, 255, 255, 0.10);
    --transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

:root {
    --primary-red: #FF0000;
    --primary-red-dark: #b30000;
    --dark-bg: #111111;
    --darker-bg: #0a0a0a;
    --light-bg: #f8f9fa;
    --text-white: #ffffff;
    --text-muted: #6c757d;
    --font-main: 'Satoshi', sans-serif;
    --font-heading: 'Satoshi', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-main);
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    ;
    font-weight: 700;
}

.text-primary-red {
    color: var(--primary-red);
}

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

.py-section {
    padding: 100px 0;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    transition: var(--transition-smooth);
    background-color: transparent;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--darker-bg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
}

.nav-link {
    color: rgb(216 216 216) !important;
    font-size: 13px;
    font-weight: normal;
    margin: 0 12px;
    position: relative;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.nav-link.active {
    color: var(--text-white) !important;
    font-weight: 700;
}

/* 
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition-smooth);
} */

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-primary-red {
    background-color: var(--primary-red);
    color: white;
    border: 2px solid var(--primary-red);
    font-weight: 700;
    border-radius: 0;
    padding: 18px 40px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: normal;
    border-radius: 0;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-primary-red:hover {
    background-color: var(--primary-red-dark);
    border-color: var(--primary-red-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(225, 0, 0, 0.4);
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--dark-bg);
    border-color: white;
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-slider,
.hero-slide {
    height: 100vh;
}

.hero-slide {
    background: url('../images/slider-image.jpg') no-repeat center center/cover;
    position: relative;
    outline: none;
    display: flex !important;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

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

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

.hero-title {
    font-size: 38px;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0px;
    color: #fff;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 700px;
    font-weight: 400;
    color: #FFFFFFE6;
}

/* Slide Content Animation */
.hero-slide .hero-title,
.hero-slide .hero-subtitle,
.hero-slide .hero-btns {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.slick-active .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.hero-slide.slick-active .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.hero-slide.slick-active .hero-btns {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

/* Slick Dots Styling scoped to Hero */
.hero-section .slick-dots {
    bottom: 50px;
    z-index: 10;
}

.hero-section .slick-dots li {
    margin: 0 6px;
    width: auto;
    height: auto;
}

.hero-section .slick-dots li button:before {
    display: none;
}

.hero-section .slick-dots li button {
    width: 45px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0px;
    transition: var(--transition-smooth);
    padding: 0;
}

.hero-section .slick-dots li.slick-active button {
    /* width: 45px; */
    background: var(--text-white);
}

.btn-header-red {
    /* Exact gradient from dark red to vibrant red */
    background: linear-gradient(to right, #760303, #ff0000);
    color: white;
    border: none;
    font-weight: normal;
    border-radius: 0;
    /* Sharp corners as per selection box */

    /* Exact dimensions from the design (132x44) */
    width: auto;
    padding: 11px 20px !important;
    /* Perfect centering of text */
    display: inline-block;
    align-items: center;
    justify-content: center;

    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-header-red:hover {
    background: linear-gradient(to right, #ff0000, #9d0000);
    color: white;
}

/* Header Navbar Border */
.border-bottom-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.partner-logo:hover {
    opacity: 1;
}

.grayscale {
    /* filter: grayscale(100%) brightness(0.6); */
    max-height: 48px;
    transition: var(--transition-smooth);
    margin: 0 auto;

}

.partner-logo:hover .grayscale {
    filter: grayscale(0%);
}

.section-tag {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: normal;
    text-transform: capitalize;
    font-size: 16px;
    letter-spacing: 0px;
    gap: 7px;
    color: #2D2D2D;
}

.tag-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: var(--primary-red);
    position: relative;
    vertical-align: middle;
}

.tag-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 4px;
    right: 4px;
    height: 2px;
    background: white;
    box-shadow: 0 -5px 0 white, 0 5px 0 white;
    transform: translateY(-50%);
}

.text-design-muted {
    color: #464646;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

.section-title {
    font-size: 39px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

/* About Section */
.about-img-wrapper {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}

.about-img-wrapper p:nth-child(2) {

    margin-bottom: 0;
    font-size: 14px;

}

.about-section {
    padding: 60px 0px;
    background-color: #fff;
}

.custom-border-bottom {

    border-bottom: 1px solid #E5E5E5;
}

.stats-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(70.27deg, #737373 0%, #000000 96.55%);

    color: white;
    padding: 25px 22px;
    border-radius: 0;
    min-width: 290px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.stats-top {
    text-align: left;
    align-self: flex-start;
}

.stats-bottom {
    text-align: left;
    align-self: flex-end;
    margin-top: 40px;
}

.stats-number {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stats-text {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 0;
    font-weight: 400;
}

.stats-clients-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stats-clients-text {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 0;
    font-weight: 400;
}

/* Services section */
.service-card {
    background: #fff;
    border: none;
    border-radius: 0px;
    /* Sharp corners like the logo grid */
    transition: var(--transition-smooth);
    text-align: left;
    padding: 47px 34px;
    border: 1px solid #EFEFEF;
}

.service-card:hover {
    background-color: #bb0202;
}


.service-card:hover h4, .service-card:hover p {
    color: #fff;
}

/* .service-card:hover .service-icon-wrap {
    background: #fff;
} */

 

.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(270deg, #FF0000 0%, #990000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: var(--transition-smooth);
}

/* Icon circles only — do not target other images inside .service-card */
.service-card .service-icon-wrap img {
    filter: brightness(0) invert(1);
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.05);
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.service-card-text {
    font-size: 16px;
    color: #464646;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Portfolio Section */
.portfolio-card {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    cursor: pointer;
    transition: var(--transition-smooth);
}


section.portfolio-section {
    padding: 80px 0px 40px;
}

.portfolio-card.style-standard {
    height: 300px;
}

.portfolio-card.style-tall {
    height: 624px;
    /* (300 * 2) + 24px gutter */
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    transition: var(--transition-smooth);
    z-index: 1;
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    transition: all 0.5s ease;
    transform: translateY(10px);
}

.portfolio-title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

/* Hover Animations */
.portfolio-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-card:hover .portfolio-overlay {
    background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 1) 100%);
}

.portfolio-card:hover .portfolio-content {
    transform: translateY(0);
}

/* Base style for scale requires the background-image to be in a pseudo-element if we want to scale background without scaling content, 
but for simplicity we can just use the portfolio-card background and scale the whole card with overflow hidden. 
Actually better to use a pseudo-element for the background for the true zoom effect. */

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 0;
}

.portfolio-card:hover::before {
    transform: scale(1.1);
}

@media (max-width: 991.98px) {
    .portfolio-card.style-tall {
        height: 300px;
    }
}

.border-top-red {
    border-top: 4px solid var(--primary-red);
}

.italic {
    font-style: italic;
}



/* ===== Development Process Section ===== */
.process-section {
    background-color: #ffffff;
    overflow: hidden;
}

.process-vertical-separator {
    width: 3px;
    height: 100%;
    min-height: 450px;
    background-color: #f1f1f1;
    position: relative;
    border-radius: 10px;
}

.process-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #760303, #ff0000);
    border-radius: 10px;
    transition: height 0.4s ease;
}

.process-steps-slider {
    margin: -10px 0;
}

.process-step-item {
    padding: 10px 0;
    outline: none;
}

.process-step-box {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid transparent;
    cursor: pointer;
    margin-right: 15px;
    /* Space for shadow */
}

/* .process-step-box:hover,
.process-step-box.active,
.slick-center .process-step-box {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-left-color: var(--primary-red);
    transform: translateX(10px);
} */

/* 
.process-step-box .step-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    flex-shrink: 0;
} */

/* .process-step-box.active .step-icon,
.slick-center .process-step-box .step-icon {
    background: var(--primary-red);
    color: #ffffff;
    transform: rotate(360deg);
} */

.process-step-box .step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
    transition: color 0.4s ease;
}

.process-step-box.active .step-title,
.slick-center .process-step-box .step-title {
    color: var(--primary-red);
}

.process-step-box .step-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 991px) {

    .process-step-box:hover,
    .process-step-box.active,
    .slick-center .process-step-box {
        transform: translateY(-5px);
    }

    .process-vertical-separator {
        display: none;
    }
}


/* ===== Why Choose Us Section ===== */
/* .why-choose-section {
    background-color: #fcfcfc;
} */

.process-section {

    padding: 50px 0px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

.why-choose-list .check-icon {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    background-color: transparent;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 12px;
    flex-shrink: 0;
}

.why-choose-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.why-choose-img-wrapper:hover img {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .why-choose-img-wrapper {
        margin-top: 50px;
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background-color: #ffffff;
    padding: 30px 0px 0;
}

/* Left sticky content */
.testi-left-content {
    position: sticky;
    top: 100px;
    /* padding-right: 40px; */
}

.testi-left-content .section-tag {
    margin-bottom: 20px;
}

.testi-left-content .section-title {
    font-size: 36px;
    line-height: 1.25;
    color: #111111;
    font-weight: 700;
}

/* Center scroll indicator bar */
.testi-scroll-line-wrapper {
    height: 460px;
    width: 4px;
    background: #E0E0E0;
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    margin-right: 20px;
    flex-shrink: 0;
}

.testi-scroll-line {
    width: 100%;
    height: 90px;
    background: var(--primary-red);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    transition: top 0.25s ease;
}

/* Right scrollable box */
.testi-scroll-box {
    max-height: 460px;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-left: 30px;
    padding-right: 10px;
    scroll-padding-top: 10px;
}

.testi-scroll-box::-webkit-scrollbar {
    width: 0;
    display: none;
}

/* Testimonial card */
.testi-card-new {
    background: #fafafa;
    padding: 23px 35px 25px 35px;
    margin-bottom: 20px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid #fafafa;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.testi-card-new:last-child {
    margin-bottom: 0;
}

.testi-card-new:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
    border-color: #fafafa;
}

/* Large ❝ quote icon — top right corner */
.testi-card-new::before {
    content: '\275D';
    position: absolute;
    top: 10px;
    right: 22px;
    font-size: 80px;
    color: var(--primary-red);
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1;
    opacity: 0.20;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.testi-card-new:hover::before {
    opacity: 0.32;
}

.testi-text {
    font-size: 16px;
    color: #222222;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

/* Client row — right aligned */
.testi-client-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    /* border-top: 1px solid #EBEBEB; */
    padding-top: 0px;
    position: relative;
    z-index: 1;

}

.testi-client-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.testi-client-name {
    font-size: 16px;
    font-weight: 500;
    color:#f50101;
    font-family: var(--font-main);
    letter-spacing: 0.2px;
}

.testi-client-role {
    font-size: 12px;
    color: #000;
    margin-top: 0px;
    font-weight: 400;
}

.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #DDDDDD;
    transition: var(--transition-smooth);
}

.testi-card-new:hover .testi-avatar {
    border-color: var(--primary-red);
    transform: scale(1.06);
}

.testi-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    filter: none;
    -webkit-filter: none;
}

/* Responsive — mobile/tablet; desktop uses base rules above */
@media (max-width: 991.98px) {
    .testimonials-section {
        padding: 70px 0;
    }

    .testi-left-content {
        position: relative;
        top: 0;
        margin-bottom: 40px;
        padding-right: 0;
        text-align: center;
    }

    .testi-left-content .section-tag {
        justify-content: center;
    }

    .testi-scroll-line-wrapper {
        display: none;
    }

    .testi-scroll-box {
        max-height: unset;
        overflow: visible;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    /* Slick carousel (mobile — one testimonial per slide) */
    .testi-scroll-box.slick-initialized {
        padding-bottom: 0.5rem;
    }

    .testi-scroll-box .slick-list {
        margin: 0 -6px;
    }

    .testi-scroll-box .slick-slide {
        padding: 0 6px;
        height: auto;
    }

    /* Let slide height come from card content (100% here collapsed avatars) */
    .testi-scroll-box .slick-slide > div {
        height: auto;
    }

    .testi-scroll-box .slick-dots {
        position: relative;
        bottom: auto;
        margin: 1.1rem 0 0;
        padding: 0;
        line-height: 1;
    }

    .testi-scroll-box .slick-dots li {
        margin: 0 5px;
        width: auto;
        height: auto;
    }

    .testi-scroll-box .slick-dots li button {
        width: 10px;
        height: 10px;
        padding: 0;
    }

    .testi-scroll-box .slick-dots li button:before {
        width: 10px;
        height: 10px;
        font-size: 10px;
        line-height: 10px;
        color: #c8c8c8;
        opacity: 1;
    }

    .testi-scroll-box .slick-dots li.slick-active button:before {
        color: var(--primary-red);
        opacity: 1;
    }

    .testi-card-new {
        margin-bottom: 25px;
    }

    .testi-scroll-box.slick-initialized .testi-card-new {
        margin-bottom: 0;
    }

    /* Carousel cards: easier to read on small screens */
    .testi-scroll-box.slick-initialized .testi-client-row {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .testi-scroll-box.slick-initialized .testi-client-info {
        align-items: flex-start;
        text-align: left;
        flex: 1;
        min-width: 0;
    }

    .testi-scroll-box.slick-initialized .testi-card-new::before {
        font-size: 56px;
        right: 14px;
        top: 8px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        max-width: 140px;
        width: 100%;
        height: auto;
    }

    .about-img-wrapper {
        padding-right: 12px;
        padding-bottom: 20px;
    }

    .stats-card {
        margin-left: 12px;
        width: calc(100% - 12px);
    }

    .blog-card-new {
        height: 320px;
    }

    .tech-stack-section {
        padding: 48px 0;
    }

    .cta-section {
        padding: 56px 16px 28px;
    }

    .exp-badge::before,
    .exp-badge::after {
        width: 18px;
    }

    .exp-badge {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 6px;
        padding: 8px 14px;
        font-size: 10px;
    }

    .cta-heading {
        font-size: 1.45rem;
        line-height: 1.35;
        padding: 0 4px;
    }

    .service-card {
        padding: 32px 22px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testi-left-content .section-title {
        font-size: 28px;
    }

    .testi-text {
        font-size: 14.5px;
    }

    .testi-client-name {
        font-size: 14px;
    }

    .testi-card-new {
        padding: 26px 22px 22px;
        margin-bottom: 20px;
    }

    .testi-scroll-box.slick-initialized .testi-card-new {
        padding: 26px 22px 22px;
    }

    .testi-client-row {
        gap: 10px;
    }

    .testi-avatar {
        width: 44px;
        height: 44px;
        border: 1.5px solid #DDDDDD;
    }
}

/* Uniform primary / outline buttons — mobile & tablet portrait */
@media (max-width: 767.98px) {

    .btn.btn-header-red,
    button.btn.btn-header-red {
        min-height: 44px;
        padding: 11px 22px !important;
        font-size: 12px !important;
        letter-spacing: 0.05em;
        line-height: 1.25;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        width: 100%;
        max-width: 300px;
    }

    .btn.btn-outline-light {
        min-height: 44px;
        padding: 9px 22px !important;
        font-size: 12px !important;
        letter-spacing: 0.05em;
        line-height: 1.25;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        width: 100%;
        max-width: 300px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 0.65rem !important;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.65rem;
        width: 100%;
    }

    .career-cta-card .cta-text-col .btn+.btn {
        margin-left: 0 !important;
        margin-top: 0.65rem;
    }

    .btn-view-works {
        min-height: 44px;
        padding: 11px 22px !important;
        font-size: 12px !important;
        letter-spacing: 0.05em;
        line-height: 1.25;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-section .btn-header-red.px-5 {
        padding: 11px 22px !important;
    }

    .text-center .btn.btn-header-red,
    .text-center .btn.btn-outline-light {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-contact-submit {
        min-height: 44px;
        padding: 11px 22px !important;
        font-size: 12px !important;
        line-height: 1.25;
        display: block;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
}

/* ===== END Testimonials Section ===== */

/* Blog Section */
.blog-section {
    background-color: #ffffff;
}

/* New overlay card style */
.blog-card-new {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 420px;
    cursor: pointer;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-card-new:hover .blog-card-img img {
    transform: scale(1.08);
}

/* Dark gradient overlay */
.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.35) 45%,
            rgba(0, 0, 0, 0.88) 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

.blog-card-new:hover .blog-card-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.45) 40%,
            rgba(0, 0, 0, 0.95) 100%);
}

/* Text content at bottom */
.blog-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px 34px;
    z-index: 2;
    transform: translateY(8px);
    transition: transform 0.4s ease;
}

.blog-card-new:hover .blog-card-content {
    transform: translateY(0);
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.blog-card-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
    .blog-card-new {
        height: 360px;
    }
}

@media (max-width: 575.98px) {
    .blog-card-new {
        height: 300px;
    }

    .blog-card-title {
        font-size: 16px;
    }
}

/* ===== CTA Section New ===== */
.cta-section-new {
    background: linear-gradient(135deg, #460000 0%, #1a0000 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Grid Overlay Effect */
.cta-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Corner Dots for Grid */
.cta-section-new::before,
.cta-section-new::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.cta-section-new::before {
    top: 50px;
    left: 50px;
}

.cta-section-new::after {
    bottom: 50px;
    right: 50px;
}

.cta-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.cta-badge-text {
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.8;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
}

.cta-badge-line {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.cta-badge-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.cta-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 45px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 2;
}

.cta-btns-group {
    position: relative;
    z-index: 2;
}

.cta-btn-solid {
    background: var(--primary-red);
    color: white;
    padding: 15px 35px !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0;
    transition: var(--transition-smooth);
    border: none;
}

.cta-btn-solid:hover {
    background: var(--primary-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.cta-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

/* ===== Footer New ===== */
.footer-new {
    background: linear-gradient(171.77deg, #460000 6.32%, #000000 93.68%);
    padding: 80px 0 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 30px;
}

.footer-contact-item {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  margin-bottom: 15px;
  flex-direction: column;
}

.footer-contact-item i {
    color: var(--primary-red);
    font-size: 18px;
    margin-top: 4px;
}

.footer-contact-item p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-contact-subitem {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer-contact-subitem i {
    color: var(--primary-red);
}

.social-link-circle {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none !important;
    transition: var(--transition-smooth);
}

.social-link-circle:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-nav-list li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-nav-list li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-bottom-bar {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    font-size: 13px;
    opacity: 0.6;
}

.footer-legal-links {
    font-size: 13px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
    color: #ffffff;
}

.footer-legal-links span {
    margin: 0 10px;
    opacity: 0.3;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .cta-title {
        font-size: 38px;
    }

    .footer-title {
        margin-top: 20px;
    }

    .footer-legal-links {
        margin-top: 15px;
    }
}

@media (max-width: 575.98px) {
    .cta-title {
        font-size: 28px;
    }

    .cta-badge-line {
        display: none;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== END CTA + Footer ===== */

/* Footer Section (old - kept for compatibility) */
.footer-section {
    background-color: var(--darker-bg) !important;
}

.border-bottom-red {
    border-bottom: 2px solid var(--primary-red);
    display: inline-block;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2.5;
    transition: var(--transition-smooth);
}

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

.social-icon {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--primary-red);
    transform: rotate(360deg);
}

.about-section .section-tag img {

    width: 20px;
}


.services-section {
    padding: 80px 0px;
    background: #fff2f2;
}


.services-section-1 {

    padding: 60px 0px;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: clamp(1.55rem, 4.2vw + 0.85rem, 2.125rem);
        line-height: 1.3;
    }

    .py-section {
        padding: 60px 0;
    }

    .stats-card {
        position: relative;
        margin-top: -50px;
        margin-left: 50px;
        right: 0;
        bottom: 0;
        min-width: unset;
        width: calc(100% - 50px);
    }

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

    .testimonials-section .col-lg-7.d-flex {
        min-width: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section,
    .hero-slider,
    .hero-slide {
        min-height: 420px;
        height: 72vh;
        max-height: 620px;
    }

    .hero-slide .container {
        padding-top: 4.75rem;
        padding-bottom: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Partners Logo Grid */
.container-logo-grid {
    padding: 0;
}

.border-logo-grid {
    border: none;
}

.logo-cell {
    border-right: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: var(--transition-smooth);
}

/* Remove right border on the last item of each row (5 columns) */
.logo-cell:nth-child(5n) {
    border-right: none;
}

/* Remove bottom border on the last row (items 6-10) */
.logo-cell:nth-child(n+6) {
    border-bottom: none;
}

.logo-cell:hover {
    background-color: #fafafa;
}

.logo-cell .partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* 5 Column Layout for Desktop */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .logo-cell {
        padding: 20px;
        min-height: 100px;
    }

    /* Adjust grid for 3 columns on tablet */
    .logo-cell {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .logo-cell:nth-child(5n) {
        border-right: 1px solid #eee;
    }

    .logo-cell:nth-child(3n) {
        border-right: none;
    }

    .logo-cell:nth-child(n+7) {
        border-bottom: 1px solid #eee;
    }

    .logo-cell:nth-child(n+10) {
        border-bottom: none;
    }
}

@media (max-width: 767.98px) {
    .logo-cell {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .logo-cell:nth-child(3n) {
        border-right: 1px solid #eee;
    }

    .logo-cell:nth-child(2n) {
        border-right: none;
    }

    .logo-cell:nth-child(n+9) {
        border-bottom: none;
    }

    .border-logo-grid {
        border: none;
    }
}

/* ── Industries Section (Redesigned) ── */
.industries-section {
    padding: 50px 0 20px;
    background: #fff;
    position: relative;
    overflow: hidden;
    /* clips the right-bleeding card */
}

/* Slick Wrapper — left space, right bleed */
.slick-industries-wrap {
    width: 100%;
    padding: 14px 0 24px;
}

/* padding-left = left space; overflow visible = right card bleeds */
.slick-industries-wrap .slick-list {
    overflow: visible !important;
    padding-left: 60px !important;
    padding-right: 0 !important;
}

/* Gap between slides */
.slick-industries-wrap .slick-slide {
    padding-right: 20px;
}

/* Hide arrows & dots */
.slick-industries-wrap .slick-prev,
.slick-industries-wrap .slick-next,
.slick-industries-wrap .slick-dots {
    display: none !important;
}

/* ── Card ── */
a.industry-card-new {
    display: block;
    color: inherit;
    text-decoration: none;
}

.industry-card-new {
    background: #ffe1e1;
    /* border-radius: 16px; */
    padding: 32px 22px 80px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    border: 1.5px solid transparent;
    transition:
        border-color 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        background 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateY(40px);
    outline: none;
    min-height: 220px;
}

.industry-card-new.visible {
    animation: cardReveal 0.65s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.industry-card-new:hover {
    border-color: var(--primary-red);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-6px);
    background: #ffe1e1;
}

/* Ghost watermark */
.card-watermark {
    position: absolute;
    bottom: 0px;
    left: 0px;
    opacity: 0.12;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1), transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: rotate(326deg);

}

.industry-card-new:hover .card-watermark {
    opacity: 0.22;
    transform: scale(1.1) rotate(-6deg);
}

/* Icon */
.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.industry-card-new:hover .card-icon {
    transform: scale(1.1) rotate(-4deg);
}

.card-icon svg {
    width: 52px;
    height: 52px;
}

/* Label */
.card-label {
    font-size: 20px;
    font-weight: normal;
    color: #111;
    position: relative;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    /* font-family: var(--font-heading); */
    margin-bottom: 53px;
}

.industry-card-new:hover .card-label {
    color: var(--primary-red);
}

/* Arrow button */
.card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(270deg, #FF0000 0%, #990000 100%);

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    /* box-shadow: 0 4px 16px rgba(255, 0, 0, 0.35); */
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: pulse 2.5s ease-in-out infinite;
}

.card-arrow svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.industry-card-new:hover .card-arrow {
    animation: none;
    transform: translate(3px, -3px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.45);
}

.industry-card-new:hover .card-arrow svg {
    transform: translate(2px, -2px);
}

/* Click ripple */
.card-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.15);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* ── Keyframes ── */
@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(255, 0, 0, 0.35);
    }

    50% {
        box-shadow: 0 4px 28px rgba(255, 0, 0, 0.60);
    }
}

/* Responsive Overrides for industries */
@media (max-width: 767.98px) {
    .slick-industries-wrap .slick-list {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .slick-industries-wrap .slick-slide {
        padding-right: 14px;
    }
}

.industry-card-new:hover .industry-arrow-btn {
    opacity: 1;
    transform: rotate(-45deg) scale(1.1);
}

/* Subtle background pattern for industry cards */
.industry-card::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: url('../images/fav-icon.png') no-repeat center center/contain;
    opacity: 0.06;
    filter: grayscale(1);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.industry-card:hover::before {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.1;
}

/* Tech Stack Section (Modernized) */
.tech-stack-section {
    padding: 90px 0;
    background-color: #fff;
}

.tech-card {
    background-color: #F9F9F9;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid #F1F1F1;
    border-radius: 8px;
    /* Slightly rounded for modern feel */
}

.tech-card:hover {
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
    border-color: var(--primary-red);
}

.tech-card img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    /* filter: grayscale(1) opacity(0.7); */
    transition: all 0.4s ease;
}

.tech-card:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

/* Career Section (Modernized) */
.case-studies-section {
    padding: 0;
    background-color: #FFFFFF;
}

.case-study-item {
    margin-bottom: 32px;
    background: #fff6f6;
    padding: 32px 28px;
    border-radius: 0;
    transition: transform 0.4s ease;
    overflow: hidden;
}

.case-study-item:last-of-type {
    margin-bottom: 0;
}

/* Image Box */
.case-study-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: 16 / 10;
    min-height: 200px;
}

.case-study-img-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.case-study-item:hover .case-study-img-box img {
    transform: scale(1.05);
}

/* Info Side */
.case-study-info {
    padding: 0;
}

.case-study-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: #ee0000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    border-radius: 4px;
    margin-top: 0;
    margin-bottom: 20px;
}

.case-study-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.25;
    color: #000;
    font-family: var(--font-heading);
}

.case-study-info h6 {
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
    color: #000;
}

.case-study-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

.custom-border-bottom {
    border-bottom: 1px solid #e0e0e0;
}

/* Stats */
.case-study-stats {
    padding-top: 16px;
    margin-top: 0;
}

.case-study-stats .stat-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #f10101;
    margin-top: 0;
    margin-bottom: 6px;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.case-study-stats .stat-item p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.45;
    margin-bottom: 0;
}

/* Button Refinement */
.btn-view-works {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-red-gradient);
    color: #fff;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s ease;
}

.btn-view-works:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(70, 0, 0, 0.25);
    color: #fff;
}

/* ═══════════════════════════════════════
       CTA SECTION
    ═══════════════════════════════════════ */
.cta-section {
    position: relative;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, #5a0000 0%, #1a0000 45%, #0d0000 100%);
    padding: 80px 20px 35px;
    text-align: center;
    overflow: hidden;
}

/* Subtle grid lines like in the reference */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 120px 120px;
    pointer-events: none;
}

/* Corner cross markers like the reference */
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 120px 120px;
    background-position: 60px 60px;
    pointer-events: none;
}

/* Experience badge */
.exp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.70);
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards 0.1s;
}

.exp-badge::before,
.exp-badge::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.cta-heading {

    font-size: 32px;
    font-weight: 700;

    line-height: 1.5;
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.7s ease forwards 0.25s;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.7s ease forwards 0.4s;
}

.btn-book {
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    display: inline-block;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-book::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-book:hover::after {
    transform: translateX(0);
}

.btn-book:hover {
    background: var(--red-dark);
    box-shadow: 0 8px 32px rgba(227, 20, 20, 0.45);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-grow {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.55);
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    display: inline-block;
    transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-grow:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════
       FOOTER MAIN
    ═══════════════════════════════════════ */
.footer-main {
    background: #0d0000;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Brand column */
.footer-brand {
    margin-bottom: 28px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    text-decoration: none;
}

/* Logo icon — two-chevron mark */
.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 3px;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
}

.logo-text {
    line-height: 1;
}

.logo-text .logo-name {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.04em;
    display: block;
}

.logo-text .logo-sub {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

.footer-address {
    font-size: 15px;
    color: #FFFFFFBA;
    line-height: 1.7;
    margin-bottom: 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-address svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  margin-bottom: 15px;
  flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #FFFFFFBA;
    text-decoration: none;
    transition: color var(--transition);
}

.contact-item:hover {
    color: var(--white);
}

.contact-item svg {
    flex-shrink: 0;
}

/* Footer nav columns */
.footer-col-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

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

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

.footer-links a {
    font-size: 14px;
    color: #FFFFFFBA;
    text-decoration: none;
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 1px;
    background: var(--red);
    opacity: 0;
    transition: opacity var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Services two-column layout */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

/* ── Social icons row ── */
.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    transition: color var(--transition), transform var(--transition);
}

.social-link:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ── Footer bottom bar ── */
.footer-bottom {

    padding: 20px 0;
    margin-top: 8px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright {
    font-size: 12.5px;
    color: var(--muted);
    text-align: center;
    flex: 1;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal li {
    font-size: 12.5px;
    color: var(--muted);
}

.footer-legal li a {
    color: var(--muted);
    text-decoration: none;
    transition: color var(--transition);
    padding: 0 4px;
}

.footer-legal li a:hover {
    color: var(--white);
}

.footer-legal li.sep {
    padding: 0 4px;
}

/* ── Divider line across footer ── */
.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 40px 0 0;
}

/* ── Scroll-reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Animations ── */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .footer-main .row>[class*="col-"] {
        margin-bottom: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .cta-heading {
        font-size: 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .copyright {
        order: 2;
    }

    .footer-legal {
        order: 1;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .btn-book,
    .btn-grow {
        width: 100%;
        text-align: center;
    }
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .case-study-title {
        font-size: 28px;
    }
}

@media (max-width: 991.98px) {
    .case-studies-section {
        padding: 70px 0;
    }

    .case-study-item {
        margin-bottom: 40px;
        padding: 24px 20px;
    }

    .case-study-info {
        padding-top: 0;
    }

    .case-study-title {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .stat-item {
        margin-bottom: 20px;
    }
}

/* ═══════════════════════════════════════
       CAREERS PAGE STYLES
═══════════════════════════════════════ */

/* Hero Banner */
.career-hero-section {

    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.career-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.career-hero-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.career-hero-subtitle {
    font-size: 16px;
    color: #FFFFFFE5;
    line-height: 1.6;
    max-width: none;
    margin: 0 auto;
    font-weight: normal;
    font-family: 'Satoshi';
}

/* Content Section responsive */
.career-content-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.career-content-title {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
}

.career-content-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.career-image-wrapper {
    position: relative;
    border-radius: 8px;
}

.career-image-wrapper img {
    border-radius: 8px;
    width: 100%;
}

/* About page — leadership team cards */
.leadership-creative-section .leadership-member {
    height: 100%;
    text-align: center;
}

.leadership-creative-section .leadership-photo-wrap {
    border-radius: 22px;
    overflow: hidden;
    background: #f3f4f6;
}

.leadership-creative-section .leadership-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.leadership-creative-section .leadership-member:hover .leadership-photo {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.leadership-creative-section .leadership-name {
    margin: 18px 0 6px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1.3;
}

.leadership-creative-section .leadership-role {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.45;
}

@media (max-width: 991.98px) {
    .leadership-creative-section .leadership-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .leadership-creative-section .leadership-photo {
        aspect-ratio: 1 / 1;
    }

    .leadership-creative-section .leadership-name {
        margin-top: 14px;
        font-size: 1.1rem;
    }

    .leadership-creative-section .leadership-role {
        font-size: 0.92rem;
    }
}

/* About page — office location block */
.about-office-section {
    padding-bottom: 20px;
}

.about-office-shell {
    background: linear-gradient(135deg, #fff 0%, #fff8f8 55%, #fff 100%);
    border: 1px solid rgba(255, 0, 0, 0.12);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
}

.about-office-content {
    height: 100%;
    padding: 36px 32px;
}

.about-office-address {
    color: #555;
    line-height: 1.75;
    margin-bottom: 22px;
}

.about-office-meta li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #333;
    font-size: 0.98rem;
}

.about-office-meta i {
    color: var(--primary-red);
    margin-top: 3px;
    flex-shrink: 0;
}

.about-office-meta a {
    color: inherit;
    text-decoration: none;
}

.about-office-meta a:hover {
    color: var(--primary-red);
}

.about-office-map {
    position: relative;
    min-height: 100%;
    height: 100%;
    min-height: 320px;
    background: #eee;
}

.about-office-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, #990000 100%);
    z-index: 2;
}

.about-office-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

.about-office-photo {
    position: relative;
    margin: 0;
    max-height: 280px;
    overflow: hidden;
}

.about-office-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.45s ease, transform 0.45s ease;
}

.about-office-shell:hover .about-office-photo img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.about-office-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991.98px) {
    .about-office-content {
        padding: 28px 24px 8px;
    }

    .about-office-map {
        min-height: 300px;
    }

    .about-office-map iframe {
        min-height: 300px;
    }
}

@media (max-width: 575.98px) {
    .about-office-shell {
        border-radius: 18px;
    }

    .about-office-content {
        padding: 24px 18px 6px;
    }

    .about-office-map::before {
        width: 100%;
        height: 4px;
        bottom: auto;
    }

    .about-office-map,
    .about-office-map iframe {
        min-height: 260px;
    }

    .about-office-photo,
    .about-office-photo img {
        max-height: 220px;
        height: 220px;
    }

    .about-office-badge {
        left: 16px;
        bottom: 16px;
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}

@media (max-width: 991.98px) {
    .career-hero-section {
        padding: 140px 0 80px;
    }

    .career-content-section {
        padding: 70px 0;
    }

    .career-hero-title {
        font-size: 36px;
    }

    .career-content-title {
        font-size: 32px;
    }
}

/* ═══════════════════════════════════════
       JOBS LISTING & SEARCH STYLES
═══════════════════════════════════════ */

.bg-light-soft {
    background-color: #fafafa;
}

.job-search-input {
    padding-left: 45px;
}

.job-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #5E5E5E;
    z-index: 10;
}

.btn-search-job {
    background-color: var(--red);
    color: #fff;
    font-weight: 700;
    padding: 12px 24px;
    height: 48px;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-search-job:hover {
    background-color: var(--red-dark);
    color: #fff;
}

/* Job Cards */
.job-card {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border-color: #eee !important;
    box-shadow: 0px 0px 4px 0px #00000026;
    padding: 30px;

}

.job-card p {

    color: #484848;
    font-size: 14px;
    font-weight: 400;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
    border-color: transparent !important;
}

/* Pagination */
.custom-pagination .page-link {
    color: #555;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    transition: all 0.2s ease;
}

.custom-pagination .page-item.active .page-link {
    background-color: #FF0000;
    border-color: #FF0000;
    color: #fff;
}

.custom-pagination .page-item:not(.active):not(.disabled) .page-link:hover {
    background-color: #f1f1f1;
    color: #FF0000;
    border-color: #FF0000;
}


p.career-cta-desc {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 43px;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    padding: 0 !important;

}

/* ═══════════════════════════════════════
       CAREERS CTA SECTION
═══════════════════════════════════════ */

.career-cta-card {
    background: radial-gradient(ellipse at center right, #410202 0%, #1a0000 100%);
    /* Ensure image can pop out of the top if needed */
    overflow: visible !important;
}

.career-cta-img {
    position: absolute;
    bottom: 0;
    right: 145px;
    height: 125%;
    /* Pops out of the container gracefully */
    max-width: none;
    z-index: 2;
}


@media (max-width: 991px) {
    .career-cta-img {
        display: none;
    }
}


.job-filters select {

    border: 1px solid #DADADA;
    border-radius: 0;
    width: 100%;
    font-size: 14px;
    color: #898989;
    height: 44px;
}

.job-filters select::placeholder {

    color: #898989;
}

.job-filters label {

    margin-bottom: 17px;
    font-weight: normal;
    font-size: 14px;
    font-family: satoshi;
}

.job-filters input {

    border-radius: 0;
}

.job-search-input {
    padding-left: 41px;
    font-size: 14px;
    color: #898989;
    font-weight: 400;
    height: 44px;
}

h4.job-title {
    font-weight: 500;
    font-size: 18px;
    color: #000;
}

.job-location i {
    color: #FF8888;
}

a.btn-apply-now {
    color: #FF0000;
    font-weight: 500;
}

/* font-size: 16px;
color: #464646;
font-weight: 400;
margin-bottom: 10px;
} */

/* ═══════════════════════════════════════
       CAREER VIEW PAGE STYLES
═══════════════════════════════════════ */

.job-title-main {
    font-size: 32px;
    color: #000;
    line-height: 1.25;
}

.job-details-section {
    overflow-x: clip;
}

@media (min-width: 992px) {
    .job-details-sidebar {
        position: sticky;
        top: 100px;
        z-index: 2;
    }
}

.application-form-wrapper {
    min-width: 0;
}

/* Clickable calendar icon — must sit above input and receive pointer events */
.date-input-calendar-hit {
    z-index: 2;
    min-width: 2.5rem;
    min-height: 2.5rem;
}

/* Hide the browser’s default date-picker icon (duplicate dark system icon) */
.application-form-wrapper input[type="date"].custom-input-field::-webkit-calendar-picker-indicator {
    display: none;
}

.application-form-wrapper input[type="date"].custom-input-field::-moz-calendar-picker-indicator {
    display: none;
}

.text-muted-custom {
    color: #484848;
    font-size: 16px;
    line-height: 1.8;
}

.job-details-list {
    list-style-type: disc;
}

.job-details-list li {
    font-size: 16px;
    color: #484848;
    line-height: 1.8;
}

.form-label-custom {
    margin-bottom: 17px;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Satoshi', sans-serif;
    color: #000;
}

.custom-input-field {
    border: 1px solid #DADADA !important;
    font-size: 14px;
    color: #898989;
    height: 58px;
}


.featured-post-main h3 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 26px;
    max-width: 100%;
    line-height: 1.4;
}

section.recent-posts-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.custom-input-field::placeholder {
    color: #898989;
}

.upload-area {
    border: 1px dashed #D3D3D3;
    background-color: #fff;
    transition: background-color 0.3s ease;
    color: #1F1F1F;
}

.upload-area:hover {
    background-color: #f9f9f9;
}

.pointer-events-none {
    pointer-events: none;
}

.job-details-content h5 {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 24px;
}

.job-details-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

.job-details-content p {

    color: #464646;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
}

/* ═══════════════════════════════════════
       BLOG PAGE STYLES
═══════════════════════════════════════ */

.featured-post-main {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-featured-section {
    overflow-x: hidden;
}

.blog-featured-hero-img {
    height: 500px;
}

.blog-list-thumb {
    width: 100px;
    height: 65px;
    flex-shrink: 0;
}

.blog-list-snippet {
    min-width: 0;
}

.blog-recent-card-img {
    height: 240px;
}

.blog-pagination {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.blog-pagination .pagination {
    flex-wrap: nowrap;
    min-width: min-content;
    margin-bottom: 0;
}

/* Blog single article */
.blog-view-section {
    overflow-x: hidden;
}

.blog-view-hero {
    width: 100%;
    min-height: 200px;
    height: 550px;
    max-height: 70vh;
    object-fit: cover;
}

.blog-view-title {
    font-size: 32px;
    color: #000;
    line-height: 1.3;
    word-wrap: break-word;
}

.blog-view-subhead {
    font-size: 18px;
    font-weight: 400;
}

.blog-view-list li {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.sidebar-categories {
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 30px;
}

.blog-cat-link {
    color: #484848;
    font-size: 15px;
    min-width: 0;
}

.blog-cat-badge {
    color: #ff5a5f;
    font-size: 15px;
    font-weight: 500;
}

.overlay-grad {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}

.custom-pagination .page-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #484848;
    border: 1px solid #DADADA;
    background-color: transparent;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
}

.custom-pagination .page-item.active .page-link {
    background-color: #ff0000;
    border-color: #ff0000;
    color: #fff;
    z-index: 1;
}

.custom-pagination .page-link:hover {
    background-color: #fce8e8;
    color: #ff0000;
    border-color: #ff0000;
}

.custom-pagination .page-item.disabled .page-link {
    background-color: transparent;
    color: #484848;
    border: none;
    pointer-events: none;
    width: auto;
}

.custom-pagination .btn-icon {
    font-size: 18px;
}

p.date-time {
    font-size: 16px;
    font-weight: 400;
    color: #464646;
    text-decoration: none;
}

section.recent-posts-section a {

    text-decoration: none;
}

section.recent-posts-section h5 {

    color: #000000;
    font-size: 22px;
    font-weight: 500;
}

section.recent-posts-section p {

    color: #464646;
    font-size: 14px;
    font-weight: 400;
}

.categories-list li span {
    padding: 7px !important;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991.98px) {
    .blog-featured-hero-img {
        height: 360px;
    }

    .featured-post-main h3 {
        font-size: clamp(1.15rem, 2.5vw + 0.5rem, 1.5rem);
    }

    .blog-view-hero {
        height: 400px;
        max-height: 55vh;
    }

    .blog-view-title {
        font-size: clamp(1.35rem, 3.2vw + 0.4rem, 1.85rem);
    }

    .blog-view-subhead {
        font-size: 17px;
    }
}

@media (max-width: 575.98px) {
    .blog-featured-hero-img {
        height: 220px;
    }

    .featured-post-main h3 {
        font-size: clamp(1rem, 3.2vw + 0.4rem, 1.3rem);
    }

    .blog-view-hero {
        height: 220px;
        max-height: 45vh;
    }

    .blog-view-title {
        font-size: clamp(1.15rem, 4vw + 0.35rem, 1.45rem);
    }

    .blog-view-subhead {
        font-size: 16px;
    }

    .sidebar-categories {
        padding: 20px 16px;
    }

    .custom-pagination .page-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .custom-pagination .btn-icon {
        font-size: 15px;
    }

    .blog-recent-card-img {
        height: 200px;
    }
}

/* Contact Section Styles */
.contact-form-input {
    border: 1px solid #eaeaea;
    border-radius: 0;
    padding: 12px 15px;
    font-size: 14px;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

.contact-form-input:focus {
    border-color: var(--primary-red);
}

.contact-form-input::placeholder {
    color: #b0b0b0;
    font-weight: 400;
}

.contact-form-label {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    margin-bottom: 8px;
}

.contact-info-title {
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #4E4E4E;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.contact-info-text {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    margin-bottom: 0;
}

.contact-icon {
    color: #FF0000;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.btn-contact-submit {
    background-color: #FF0000;
    color: #fff;
    border-radius: 0;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.btn-contact-submit:hover {
    background-color: #b80000;
    color: #fff;
}

.contact-box-shadow {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

/* Mobile / reduced motion: keep content visible (AOS can leave elements opacity:0 before init) */
@media (max-width: 991.98px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Mobile Offcanvas Menu */
@media (max-width: 991.98px) {
    .mobile-offcanvas {
        background-color: #0a0a0a !important;
        width: 320px !important;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .mobile-offcanvas .offcanvas-body {
        padding: 10px 0;
    }

    .mobile-offcanvas .nav-item {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-offcanvas .nav-link {
        padding: 15px 25px !important;
        justify-content: flex-start;
        font-size: 15px;
    }

    .mobile-offcanvas .btn-header-red {
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 44px;
        padding: 11px 22px !important;
        font-size: 12px !important;
        letter-spacing: 0.05em;
        line-height: 1.25;
        width: calc(100% - 50px) !important;
        max-width: 300px;
        margin: 16px 25px !important;
        box-sizing: border-box;
    }
}


/* changed from service-card */
.service-box {
    background: #fff;
    padding: 0px;
    margin-bottom: 60px;
    /* border-radius:12px;
    */
    transition: all .4s ease;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-8px);
    /* box-shadow:0 18px 35px rgba(0,0,0,0.12); */
}

.service-box img {
    width: 100%;
    height: 475px;
    object-fit: cover;
    /* border-radius:10px; */
    transition: .6s;

}

.service-box:last-child {

    margin-bottom: 0;
}

.service-box h2 {


    color: #0F0F0F;
    font-size: 35px;
    font-weight: 700;
}

.service-box h2 span {

    color: var(--primary-red)
}

.service-box:hover img {
    transform: scale(1.05);
}

.service-content {
    /* animation: fadeUp 1s ease; */
    padding-right: 30px;
}


.service-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.service-content ul li {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
}

.service-content ul li::before {
    content: "➜";
    color: #e60000;
    position: absolute;
    left: 0;
}



@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */
@media(max-width:991px) {
    .service-box {
        padding: 30px;
    }

    .service-box img {
        height: 320px;
        margin-bottom: 25px;
    }

    .text-primary-red {
        font-size: 28px;
    }
}

/* Mobile */
@media(max-width:767px) {
    .services-section {
        padding: 40px 0;
    }

    .service-box {
        padding: 20px;
        margin-bottom: 15px;
    }

    .service-box img {
        height: 240px;
    }

    .text-primary-red {
        font-size: 24px;
    }

    .service-content p,
    .service-content ul li {
        font-size: 16px;
    }

    .job-details-section img {

      height: 300px !important;
    }

    .career-cta-card .cta-text-col {
        padding: 1.25rem 1rem !important;
    }
}

section.industry-section {

    padding: 0px 0px 50px;
}

.why-choose-section {

    padding-bottom: 60px;
}

.blog-section {

    padding: 60px 0px;
}

/* ═══════════════════════════════════════════════════════════════
   Mobile / tablet typography & section rhythm (≤991.98px only)
   Desktop ≥992px unchanged. Uses clamp() for smooth scaling.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    html {
        -webkit-text-size-adjust: 100%;
    }

    body {
        font-size: 15px;
        line-height: 1.65;
    }

    .text-design-muted {
        font-size: 15px;
        line-height: 1.65;
    }

    .section-tag {
        font-size: 14px;
    }

    .section-title {
        font-size: clamp(1.6rem, 3.6vw + 0.5rem, 2rem);
        line-height: 1.28;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.65;
    }

    .service-card {
        padding: 36px 24px;
    }

    .service-card-title {
        font-size: clamp(1.1rem, 2vw + 0.65rem, 1.35rem);
        line-height: 1.35;
    }

    .service-card-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .career-hero-title {
        font-size: clamp(1.45rem, 3.8vw + 0.5rem, 1.9rem);
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .career-hero-subtitle {
        font-size: 15px;
        line-height: 1.65;
    }

    .career-content-title {
        font-size: clamp(1.55rem, 3.5vw + 0.5rem, 2rem);
        line-height: 1.3;
    }

    .career-content-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .career-cta-title {
        font-size: clamp(1.3rem, 3.2vw + 0.45rem, 1.65rem);
        line-height: 1.3;
    }

    p.career-cta-desc,
    .career-cta-desc {
        font-size: 15px;
        line-height: 1.65;
    }

    .case-study-title {
        font-size: clamp(1.2rem, 3.2vw + 0.45rem, 1.45rem);
        line-height: 1.25;
    }

    .case-study-info p {
        font-size: 14px;
        line-height: 1.6;
    }

    .case-study-info h6 {
        font-size: 12px;
    }

    .case-study-stats .stat-item h4 {
        font-size: 20px;
    }

    .portfolio-title {
        font-size: clamp(1rem, 2vw + 0.5rem, 1.15rem);
        line-height: 1.35;
    }

    .portfolio-content {
        padding: 22px 18px;
    }

    .card-label {
        font-size: clamp(1rem, 2vw + 0.45rem, 1.15rem);
    }

    .blog-card-title {
        font-size: clamp(1rem, 2vw + 0.45rem, 1.05rem);
    }

    .blog-card-desc {
        font-size: 13px;
        line-height: 1.55;
    }

    .blog-card-content {
        padding: 20px 20px;
    }

    .job-details-content h4 {
        font-size: 18px;
    }

    .job-details-content h5 {
        font-size: 15px;
    }

    .job-details-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .job-title-main {
        font-size: clamp(1.35rem, 3.2vw + 0.4rem, 1.85rem);
    }

    .job-details-list li {
        font-size: 15px;
        line-height: 1.65;
    }

    .stats-number,
    .stats-clients-title {
        font-size: 22px;
    }

    .stats-text,
    .stats-clients-text {
        font-size: 15px;
    }

    .footer-col-title {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .footer-links a {
        font-size: 13px;
        line-height: 2.1;
    }

    .footer-address span,
    .footer-contact .contact-item {
        font-size: 13px;
        line-height: 1.5;
    }

    .about-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .tech-stack-section {
        padding: 56px 0;
    }

    .blog-section {
        padding: 48px 0;
    }

    section.portfolio-section {
        padding: 24px 0 36px;
    }

    .cta-heading {
        font-size: clamp(1.3rem, 3.5vw + 0.45rem, 1.75rem);
        line-height: 1.35;
        margin-bottom: 28px;
    }

    .cta-section {
        padding: 56px 16px 28px;
    }

    .py-section {
        padding: 56px 0;
    }

    .testi-left-content .section-title {
        font-size: clamp(1.55rem, 3.5vw + 0.5rem, 2rem);
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 14px;
    }

    .text-design-muted {
        font-size: 14px;
    }

    .section-title {
        font-size: clamp(1.45rem, 5vw, 1.65rem);
    }

    .hero-title {
        font-size: clamp(1.45rem, 5.2vw, 1.75rem) !important;
        line-height: 1.28;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 14px;
        text-align: center;
    }

    .section-tag {
        font-size: 13px;
    }

    .career-hero-section {
        padding: 120px 0 56px;
    }

    .career-hero-title {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        letter-spacing: 0.5px;
    }

    .career-hero-subtitle {
        font-size: 14px;
    }

    .career-content-title {
        font-size: clamp(1.4rem, 4.5vw, 1.65rem);
    }

    .career-content-desc {
        font-size: 14px;
    }

    .career-cta-title {
        font-size: clamp(1.2rem, 4.2vw, 1.45rem);
    }

    p.career-cta-desc,
    .career-cta-desc {
        font-size: 14px;
    }

    .job-title-main {
        font-size: clamp(1.2rem, 4vw + 0.3rem, 1.5rem);
    }

    .service-card-text {
        font-size: 14px;
    }

    .case-study-info p {
        font-size: 13px;
    }

    .case-study-info h6 {
        font-size: 12px;
    }

    .case-study-item {
        padding: 20px 16px;
    }

    .case-study-stats .stat-item h4 {
        font-size: 18px;
    }

    .case-study-stats .stat-item p {
        font-size: 11px;
    }

    .footer-legal li,
    .copyright {
        font-size: 12px;
    }

    .exp-badge {
        font-size: 9px;
    }
}

.partners-section {

    background: #f3f4fb;
    padding: 50px !important;
}

.partner-logo {

    display: flex !important;
    min-height: 32px;
    align-items: center !important;
    justify-content: center !important;
}

.partner-logo img {

    cursor: pointer;
    filter: brightness(0.7);
    transition: var(--transition-smooth);
}

.partner-logo img:hover {
    filter: brightness(1);
}

/*=============================
    	04. About
===============================*/
.about__area-two::after {
    content: "";
    position: absolute;
    left: -244px;
    top: -87px;
    width: 590px;
    height: 590px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    filter: blur(250px);
    background: #C56FD3;
    z-index: -2;
    opacity: 0.2;
    pointer-events: none;
  }
  .about__area-two::before {
    content: "";
    position: absolute;
    right: -237px;
    top: -188px;
    width: 640px;
    height: 640px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    filter: blur(200px);
    background: #DFA175;
    z-index: -2;
    opacity: 0.2;
    pointer-events: none;
  }
  .about__img {
    position: relative;
    z-index: 1;
    margin-left: -30px;
    padding-right: 40px;
  }
  @media (max-width: 1199.98px) {
    .about__img {
      margin-left: 0;
      padding-right: 0;
    }
  }
  @media (max-width: 991.98px) {
    .about__img {
      margin-bottom: 50px;
    }
  }
  @media (max-width: 767.98px) {
    .about__img {
      margin-bottom: 30px;
    }
  }
  .about__img .main-img {
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -o-border-radius: 24px;
    -ms-border-radius: 24px;
    border-radius: 24px;
    width: 100%;
  }
  .about__img .shape {
    position: absolute;
    right: -79px;
    top: -92px;
    z-index: -1;
    -webkit-animation-duration: 90s;
    animation-duration: 90s;
  }
  @media (max-width: 1500px) {
    .about__img .shape {
      right: -25px;
      top: -74px;
      width: 220px;
    }
  }
  @media (max-width: 991.98px) {
    .about__img .shape {
      right: -78px;
      top: -74px;
    }
  }
  @media (max-width: 767.98px) {
    .about__img .shape {
      right: 17px;
      top: -44px;
      width: 150px;
    }
  }
  .about__img-two {
    text-align: center;
    position: relative;
  }
  @media (max-width: 991.98px) {
    .about__img-two {
      margin-bottom: 50px;
    }
  }
  .about__img-two .shape img {
    position: absolute;
  }
  .about__img-two .shape img:nth-child(1) {
    top: 0;
    right: 0;
  }
  @media (max-width: 1199.98px) {
    .about__img-two .shape img:nth-child(1) {
      width: 130px;
    }
  }
  @media (max-width: 767.98px) {
    .about__img-two .shape img:nth-child(1) {
      width: 100px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .about__img-two .shape img:nth-child(1) {
      width: 130px;
    }
  }
  .about__img-two .shape img:nth-child(2) {
    top: 25%;
    right: 0;
  }
  @media (max-width: 1199.98px) {
    .about__img-two .shape img:nth-child(2) {
      width: 40px;
      top: 31%;
      right: -9%;
    }
  }
  @media (max-width: 767.98px) {
    .about__img-two .shape img:nth-child(2) {
      width: 30px;
      top: 25%;
      right: 0;
    }
  }
  .about__img-three {
    position: relative;
    z-index: 1;
  }
  .about__img-three-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  @media (max-width: 991.98px) {
    .about__img-three-inner {
      margin-bottom: 50px;
    }
  }
  @media (max-width: 767.98px) {
    .about__img-three-inner {
      gap: 10px;
    }
  }
  .about__img-three-inner img {
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -o-border-radius: 25px;
    -ms-border-radius: 25px;
    border-radius: 25px;
    object-fit: cover;
  }
  @media (max-width: 767.98px) {
    .about__img-three-inner img {
      -webkit-border-radius: 16px;
      -moz-border-radius: 16px;
      -o-border-radius: 16px;
      -ms-border-radius: 16px;
      border-radius: 16px;
    }
  }
  .about__img-three-inner img.big-img {
    width: 330px;
    height: 490px;
    flex: 0 0 auto;
  }
  @media (max-width: 1199.98px) {
    .about__img-three-inner img.big-img {
      width: 240px;
      height: 420px;
    }
  }
  @media (max-width: 991.98px) {
    .about__img-three-inner img.big-img {
      width: 290px;
    }
  }
  @media (max-width: 767.98px) {
    .about__img-three-inner img.big-img {
      width: 205px;
      height: 350px;
    }
  }
  .about__img-three-inner .img-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  @media (max-width: 767.98px) {
    .about__img-three-inner .img-right {
      gap: 10px;
    }
  }
  .about__img-three-inner .img-right img:nth-child(1) {
    width: 100%;
    height: 320px;
  }
  @media (max-width: 1199.98px) {
    .about__img-three-inner .img-right img:nth-child(1) {
      height: 260px;
    }
  }
  @media (max-width: 767.98px) {
    .about__img-three-inner .img-right img:nth-child(1) {
      height: 230px;
    }
  }
  .about__img-three-inner .img-right img:nth-child(2) {
    width: 100%;
    height: 205px;
  }
  @media (max-width: 767.98px) {
    .about__img-three-inner .img-right img:nth-child(2) {
      height: 190px;
    }
  }
  .about__img-three .shape {
    width: 133px;
    height: 133px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    right: 36%;
    bottom: 30%;
  }
  @media (max-width: 767.98px) {
    .about__img-three .shape {
      width: 100px;
      height: 100px;
    }
  }
  .about__img-three .shape::before {
    content: "";
    position: absolute;
    width: 181px;
    height: 181px;
    background: transparent;
    border: 15px solid rgba(255, 255, 255, 0.5);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    pointer-events: none;
  }
  @media (max-width: 767.98px) {
    .about__img-three .shape::before {
      width: 145px;
      height: 145px;
    }
  }
  @media (max-width: 767.98px) {
    .about__img-three .shape svg {
      width: 50px;
      height: auto;
    }
  }
  .about__img-four {
    position: relative;
    text-align: right;
    z-index: 1;
  }
  @media (max-width: 991.98px) {
    .about__img-four {
      margin-bottom: 50px;
    }
  }
  @media (max-width: 767.98px) {
    .about__img-four {
      padding-left: 80px;
    }
  }
  .about__img-four .main-img {
    width: 400px;
    height: 554px;
    object-fit: cover;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -o-border-radius: 24px;
    -ms-border-radius: 24px;
    border-radius: 24px;
  }
  @media (max-width: 1199.98px) {
    .about__img-four .main-img {
      width: 280px;
      height: 480px;
    }
  }
  @media (max-width: 991.98px) {
    .about__img-four .main-img {
      width: 335px;
      height: 445px;
    }
  }
  @media (max-width: 767.98px) {
    .about__img-four .main-img {
      width: 100%;
      height: 370px;
    }
  }
  .about__img-four .img-two {
    position: absolute;
    left: 0;
    top: 37px;
    width: 300px;
    height: 304px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -o-border-radius: 16px;
    -ms-border-radius: 16px;
    border-radius: 16px;
    border: 10px solid var(--tg-color-white-default);
    object-fit: cover;
  }
  @media (max-width: 1199.98px) {
    .about__img-four .img-two {
      top: 25px;
      width: 240px;
      height: 240px;
    }
  }
  @media (max-width: 1199.98px) {
    .about__img-four .img-two {
      width: 200px;
      height: 200px;
      border-width: 5px;
    }
  }
  .about__img-four .shape {
    position: absolute;
    left: -24px;
    bottom: -38px;
    z-index: -1;
  }
  .about__img-five {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    position: relative;
    margin-left: -30px;
  }
  @media (max-width: 1199.98px) {
    .about__img-five {
      margin-left: 0;
    }
  }
  @media (max-width: 991.98px) {
    .about__img-five {
      margin-bottom: 50px;
    }
  }
  @media (max-width: 767.98px) {
    .about__img-five {
      flex-wrap: wrap;
      gap: 20px;
    }
  }
  .about__img-five .main-img {
    width: 390px;
    flex: 0 0 auto;
    overflow: hidden;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
  }
  @media (max-width: 1199.98px) {
    .about__img-five .main-img {
      width: 225px;
    }
  }
  @media (max-width: 991.98px) {
    .about__img-five .main-img {
      width: 300px;
    }
  }
  @media (max-width: 767.98px) {
    .about__img-five .main-img {
      width: 100%;
      height: 300px;
    }
  }
  .about__img-five .right-img {
    margin-left: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
  @media (max-width: 767.98px) {
    .about__img-five .right-img {
      margin-left: 0;
      flex-grow: 1;
    }
  }
  .about__img-five .right-img .img-two {
    width: 100%;
    height: 320px;
    object-fit: cover;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -o-border-radius: 16px;
    -ms-border-radius: 16px;
    border-radius: 16px;
  }
  @media (max-width: 767.98px) {
    .about__img-five .right-img .img-two {
      display: none;
    }
  }
  .about__img-five .shape {
    position: absolute;
    right: -40px;
    bottom: -24px;
    z-index: -1;
  }
  .about__img-six img {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    width: 100%;
  }
  .about__content {
    margin-right: 80px;
  }
  @media (max-width: 1199.98px) {
    .about__content {
      margin-right: 0;
    }
  }
  .about__content > p {
    margin-bottom: 40px;
    text-transform: capitalize;
    font-weight: 500;
  }
  @media (max-width: 1199.98px) {
    .about__content > p {
      margin-bottom: 30px;
    }
  }
  .about__content-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
  }
  @media (max-width: 1199.98px) {
    .about__content-inner {
      gap: 20px;
    }
  }
  @media (max-width: 767.98px) {
    .about__content-inner {
      flex-wrap: wrap;
    }
  }
  .about__content-inner-two {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .about__content-inner-two .choose__list-three {
    border-right: 1px solid #CED0DE;
    margin-right: 35px;
    padding-right: 35px;
    flex-grow: 1;
  }
  @media (max-width: 1199.98px) {
    .about__content-inner-two .choose__list-three {
      margin-right: 20px;
      padding-right: 20px;
    }
  }
  @media (max-width: 767.98px) {
    .about__content-inner-two .choose__list-three {
      margin-right: 12px;
      padding-right: 12px;
    }
  }
  .about__content-inner-three {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
  }
  @media (max-width: 767.98px) {
    .about__content-inner-three {
      flex-wrap: wrap;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .about__content-inner-three {
      flex-wrap: nowrap;
    }
  }
  .about__content-video {
    width: 53.5%;
    flex: 0 0 auto;
    position: relative;
  }
  @media (max-width: 1199.98px) {
    .about__content-video {
      width: 45.5%;
    }
  }
  @media (max-width: 767.98px) {
    .about__content-video {
      width: 100%;
    }
  }
  .about__content-video img {
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -o-border-radius: 24px;
    -ms-border-radius: 24px;
    border-radius: 24px;
    height: 250px;
    object-fit: cover;
    width: 100%;
  }
  .about__content-video .video__icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .about__content-video-two {
    width: 43.5%;
    flex: 0 0 auto;
  }
  @media (max-width: 767.98px) {
    .about__content-video-two {
      width: 100%;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .about__content-video-two {
      width: 43.5%;
    }
  }
  .about__content-video-two img {
    height: 142px;
    width: 100%;
    -webkit-border-radius: 16px 30px 21px 30px;
    -moz-border-radius: 16px 30px 21px 30px;
    -o-border-radius: 16px 30px 21px 30px;
    -ms-border-radius: 16px 30px 21px 30px;
    border-radius: 16px 30px 21px 30px;
  }
  .about__content-video-two .video__icon {
    width: 45px;
    height: 45px;
  }
  .about__content-video-two .video__icon svg {
    width: 13px;
    height: auto;
  }
  .about__content-two {
    padding: 0 55px 0 60px;
  }
  @media (max-width: 1199.98px) {
    .about__content-two {
      padding: 0 0 0 35px;
    }
  }
  @media (max-width: 991.98px) {
    .about__content-two {
      padding: 0;
    }
  }
  .about__content-two > p {
    margin-bottom: 25px;
    font-weight: 500;
    width: 90%;
  }
  .about__content-three {
    margin-left: 45px;
  }
  @media (max-width: 1199.98px) {
    .about__content-three {
      margin-left: 0;
    }
  }
  .about__content-three p {
    margin-bottom: 35px;
    font-weight: 500;
    width: 95%;
  }
  @media (max-width: 1199.98px) {
    .about__content-three p {
      margin-bottom: 25px;
      width: 100%;
    }
  }
  .about__content-three .counter__item {
    width: 35%;
    flex: 0 0 auto;
  }
  @media (max-width: 1199.98px) {
    .about__content-three .counter__item {
      width: 40%;
    }
  }
  @media (max-width: 767.98px) {
    .about__content-three .counter__item {
      width: 35%;
    }
  }
  .about__content-four {
    margin-left: 50px;
  }
  @media (max-width: 1199.98px) {
    .about__content-four {
      margin-left: 0;
    }
  }
  .about__content-four p {
    margin-bottom: 25px;
    font-weight: 500;
    width: 95%;
  }
  @media (max-width: 1199.98px) {
    .about__content-four p {
      width: 100%;
    }
  }
  .about__content-five {
    margin-right: 80px;
  }
  @media (max-width: 1199.98px) {
    .about__content-five {
      margin-right: 0;
    }
  }
  .about__content-five p {
    margin-bottom: 30px;
  }
  .about__content-six {
    padding-left: 80px;
  }
  @media (max-width: 1500px) {
    .about__content-six {
      padding-left: 200px;
    }
  }
  @media (max-width: 1199.98px) {
    .about__content-six {
      padding-left: 20px;
    }
  }
  @media (max-width: 991.98px) {
    .about__content-six {
      padding-left: 0;
    }
  }
  .about__content-seven {
    padding-left: 25px;
  }
  @media (max-width: 1199.98px) {
    .about__content-seven {
      padding-left: 0;
    }
  }
  @media (max-width: 991.98px) {
    .about__content-seven {
      padding-top: 50px;
    }
  }
  @media (max-width: 767.98px) {
    .about__content-seven {
      padding-top: 30px;
    }
  }
  .about__content-seven p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.56;
  }
  .about__content-seven .tg-btn {
    margin-top: 20px;
  }
  @media (max-width: 1199.98px) {
    .about__content-seven .tg-btn {
      margin-top: 10px;
    }
  }
  .about__content-bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 15px 35px;
    flex-wrap: wrap;
    margin-top: 50px;
  }
  @media (max-width: 1199.98px) {
    .about__content-bottom {
      margin-top: 30px;
    }
  }
  @media (max-width: 767.98px) {
    .about__content-bottom {
      gap: 15px 15px;
      flex-direction: column-reverse;
      align-items: flex-start;
    }
  }
  .about__content-bottom-two {
    margin-top: 30px;
  }
  .about__list-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: 18px;
  }
  .about__list-item:hover .icon {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
  }
  .about__list-item .icon {
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: #ffe9e9;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -o-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
    font-size: 32px;
    line-height: 0;
    color: var(--tg-theme-primary);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  .about__list-item .content .title {
    margin-bottom: 4px;
    font-size: 20px;
  }
  .about__list-item .content p {
    margin-bottom: 0;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
    padding-right: 13px;
  }

  .about__list-item .icon:hover{
    background: #ffe9e9;
  }
  .about__list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
  .about__tab-wrap .accordion-item {
    margin-bottom: 10px;
    background: var(--tg-color-white-default);
    border: none;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -o-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    border-radius: 10px !important;
    overflow: hidden;
  }
  .about__tab-wrap .accordion-item:last-child {
    margin-bottom: 0;
  }
  .about__tab-wrap .accordion-button {
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--tg-heading-color);
    border: none;
    padding: 18px 30px;
  }
  .about__tab-wrap .accordion-button::after {
    display: none;
  }
  .about__tab-wrap .accordion-button:not(.collapsed) {
    background: var(--tg-color-white-default);
    color: var(--tg-theme-primary);
    box-shadow: none;
  }
  .about__tab-wrap .accordion-button:focus {
    box-shadow: none;
  }
  .about__tab-wrap .accordion-body {
    padding: 0 30px 25px;
  }
  .about__tab-wrap .accordion-body p {
    margin-bottom: 0;
    font-weight: 500;
    text-transform: capitalize;
  }
  .about__rating {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .about__rating .thumb {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .about__rating .thumb img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid var(--tg-color-white-default);
  }
  .about__rating .thumb img:not(:nth-child(1)) {
    margin-left: -20px;
  }
  .about__rating .rating {
    gap: 2.5;
    margin-bottom: 5px;
  }
  .about__rating .content span {
    display: block;
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    color: #444;
  }
  .about__shape img {
    position: absolute;
    right: -148px;
    top: 34%;
    z-index: -1;
  }
  @media (max-width: 1199.98px) {
    .about__shape img {
      right: -194px;
      top: 28%;
      width: 300px;
    }
  }
  @media (max-width: 991.98px) {
    .about__shape img {
      top: 35%;
      right: -180px;
    }
  }
  @media (max-width: 767.98px) {
    .about__shape img {
      top: 35%;
      right: -160px;
      width: 240px;
    }
  }
  
  .video__icon {
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: #fff;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    position: relative;
  }
  .video__icon:hover {
    background: #f80000;
    color: #fff;
  }
  .video__icon::before, .video__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    animation: pulse-border 2200ms ease-out infinite;
  }
  
  .video__icon::after {
    animation-delay: 1100ms;
  }
  
  .experience__wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
    gap: 5px;
    background: #f80000;
    -webkit-border-radius: 0 24px 0 15px;
    -moz-border-radius: 0 24px 0 15px;
    -o-border-radius: 0 24px 0 15px;
    -ms-border-radius: 0 24px 0 15px;
    border-radius: 0 24px 0 15px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    width: 80px;
    transform: rotate(180deg);
    min-height: 230px;
    padding: 23px 0 26px 0;
  }
  .experience__wrap .count {
    margin-bottom: 0;
    color: #fff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    font-size: 50px;
  }
  .experience__wrap .count span {
    font-size: 30px;
  }
  .experience__wrap span {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.1;
  }
  
  .satisfaction__wrap {
    background: var(--tg-theme-primary);
    position: absolute;
    left: 7px;
    bottom: 0;
    -webkit-border-radius: 21px 0 21px 21px;
    -moz-border-radius: 21px 0 21px 21px;
    -o-border-radius: 21px 0 21px 21px;
    -ms-border-radius: 21px 0 21px 21px;
    border-radius: 21px 0 21px 21px;
    text-align: center;
    padding: 44px 37px;
  }
  @media (max-width: 1199.98px) {
    .satisfaction__wrap {
      padding: 25px 20px;
      left: 0;
    }
  }
  @media (max-width: 767.98px) {
    .satisfaction__wrap {
      padding: 18px 15px;
    }
  }
  .satisfaction__wrap .icon {
    margin-bottom: 18px;
  }
  @media (max-width: 767.98px) {
    .satisfaction__wrap .icon {
      margin-bottom: 12px;
    }
  }
  @media (max-width: 767.98px) {
    .satisfaction__wrap .icon img {
      width: 60px;
    }
  }
  .satisfaction__wrap span {
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    text-transform: capitalize;
    color: var(--tg-color-white-default);
  }
  @media (max-width: 1199.98px) {
    .satisfaction__wrap span {
      font-size: 16px;
    }
  }
  @media (max-width: 767.98px) {
    .satisfaction__wrap span {
      font-size: 14px;
    }
  }
  .satisfaction__wrap-two {
    position: initial;
    border-radius: 20px;
    padding: 30px 37px;
  }
  @media (max-width: 767.98px) {
    .satisfaction__wrap-two {
      width: 100%;
    }
  }
  
  .mfp-iframe-holder .mfp-content {
    max-width: 1200px;
  }


  .rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 15s;
    animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  
  @keyframes rotateme {
    from {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-webkit-keyframes rotateme {
    from {
      -webkit-transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
    }
  }
  .rotatemeTwo {
    -webkit-animation-duration: 90s;
    animation-duration: 90s;
  }
  


  .alltuchtopdown {
    -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
  }

  .about__area {

    padding: 110px 0px 80px;
  }

  .blog-post__area-two::before, .blog-post__area-two::after {
    content: "";
    position: absolute;
    left: -35px;
    top: 120px;
    width: 430px;
    height: 430px;
    background: #4856F5;
    pointer-events: none;
    opacity: 0.2;
    filter: blur(300px);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
  }
  .blog-post__area-two::before {
    width: 625px;
    height: 625px;
    background: #4899F5;
    filter: blur(300px);
    top: auto;
    bottom: 76px;
    left: auto;
    right: -180px;
  }
  .blog-post__area-five {
    margin: 0 20px 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
  }
  @media (max-width: 767.98px) {
    .blog-post__area-five {
      margin: 0 10px 10px;
    }
  }
  .blog-post__item {
    position: relative;
    z-index: 1;
    margin-right: -20px;
  }
  @media (max-width: 991.98px) {
    .blog-post__item {
      margin-right: 0;
      margin-bottom: 20px;
    }

    .footer-divider {

      margin: 0;
    }

    .service-content {

      padding-right: 0;
    }

    .service-box h2 {

      font-size: 28px;
       
      margin-bottom: 14px;
    }
  }
  .blog-post__item-two {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }
  @media (max-width: 767.98px) {
    .blog-post__item-two {
      flex-wrap: wrap;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-post__item-two {
      flex-wrap: nowrap;
    }
  }
  .blog-post__item-three {
    background: var(--tg-color-white-default);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
  }
  .blog-post__item-four {
    position: relative;
    z-index: 1;
  }
  .blog-post__item-five {
    margin-bottom: 40px;
  }
  .blog-post__item-five:last-child {
    margin-bottom: 0;
  }
  .blog-post__item-seven {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 0 140px;
    padding: 32px 0;
    border-bottom: 1px solid #E6E8EF;
  }
  @media (max-width: 1500px) {
    .blog-post__item-seven {
      gap: 0 80px;
    }
  }
  @media (max-width: 1199.98px) {
    .blog-post__item-seven {
      flex-wrap: wrap;
      gap: 15px;
    }
  }
  .blog-post__item-seven:nth-child(1) {
    border-top: 1px solid #E6E8EF;
  }
  .blog-post__item-left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    width: 36%;
    flex: 0 0 auto;
    justify-content: space-between;
    gap: 10px;
  }
  @media (max-width: 1500px) {
    .blog-post__item-left {
      width: 45%;
    }
  }
  @media (max-width: 1199.98px) {
    .blog-post__item-left {
      width: 100%;
    }
  }
  @media (max-width: 767.98px) {
    .blog-post__item-left {
      flex-wrap: wrap;
      gap: 25px;
    }
  }
  .blog-post__item-left .date {
    font-weight: 600;
    font-size: 16px;
    display: block;
    color: var(--tg-heading-color);
    border: 1px solid #0a165e;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    line-height: 1;
    padding: 11px 15px;
  }
  .blog-post__item-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
  }
  @media (max-width: 767.98px) {
    .blog-post__item-right {
      flex-wrap: wrap;
      gap: 15px;
    }
  }
  .blog-post__item-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    margin-left: 40px;
    border-left: 1px solid #dedede;
    gap: 30px 0;
  }
  @media (max-width: 1199.98px) {
    .blog-post__item-wrap {
      padding-left: 15px;
      margin-left: 5px;
    }
  }
  @media (max-width: 991.98px) {
    .blog-post__item-wrap {
      padding-left: 0;
      margin-left: 0;
      border-left: none;
    }
  }
  .blog-post__thumb {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .blog-post__thumb::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, #000 100%);
    pointer-events: none;
  }
  .blog-post__thumb img {
    width: 100%;
    object-fit: cover;
    height: 510px;
  }
  @media (max-width: 767.98px) {
    .blog-post__thumb img {
      height: 280px;
    }
  }
  .blog-post__thumb-two {
    width: 200px;
    flex: 0 0 auto;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    overflow: hidden;
  }
  @media (max-width: 767.98px) {
    .blog-post__thumb-two {
      width: 100%;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-post__thumb-two {
      width: 200px;
    }
  }
  .blog-post__thumb-two img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  @media (max-width: 767.98px) {
    .blog-post__thumb-two img {
      height: 260px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-post__thumb-two img {
      height: 150px;
    }
  }
  .blog-post__thumb-three {
    position: relative;
    z-index: 1;
  }
  .blog-post__thumb-three img {
    width: 100%;
    height: 265px;
    object-fit: cover;
  }
  .blog-post__thumb-three .tg-post-tag {
    position: absolute;
    left: 30px;
    bottom: 30px;
  }
  .blog-post__thumb-four {
    position: relative;
    z-index: 1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
  }
  .blog-post__thumb-four::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.1) 0%, #111 100%);
    pointer-events: none;
  }
  .blog-post__thumb-four img {
    width: 100%;
    height: 487px;
    object-fit: cover;
  }
  @media (max-width: 1199.98px) {
    .blog-post__thumb-four img {
      height: 450px;
    }
  }
  @media (max-width: 991.98px) {
    .blog-post__thumb-four img {
      height: 420px;
    }
  }
  .blog-post__thumb-five {
    margin-bottom: 30px;
  }
  .blog-post__thumb-five img {
    width: 100%;
    height: 452px;
    object-fit: cover;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
  }
  @media (max-width: 1199.98px) {
    .blog-post__thumb-five img {
      height: 370px;
    }
  }
  @media (max-width: 767.98px) {
    .blog-post__thumb-five img {
      height: 320px;
    }
  }
  .blog-post__thumb-six {
    margin-bottom: 16px;
  }
  .blog-post__thumb-six img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
  }
  @media (max-width: 1199.98px) {
    .blog-post__thumb-six img {
      height: 270px;
    }
  }
  .blog-post__thumb-seven {
    width: 335px;
    flex: 0 0 auto;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
  }
  @media (max-width: 767.98px) {
    .blog-post__thumb-seven {
      width: 100%;
    }
  }
  .blog-post__thumb-seven img {
    width: 100%;
    height: 190px;
    object-fit: cover;
  }
  .blog-post__thumb-seven:hover img {
    transform: scale(1.1);
  }
  .blog-post__content {
    position: absolute;
    left: 48px;
    right: 48px;
    bottom: 48px;
    z-index: 1;
  }
  @media (max-width: 1199.98px) {
    .blog-post__content {
      left: 30px;
      right: 30px;
      bottom: 35px;
    }
  }
  .blog-post__content .post-title {
    color: var(--tg-color-white-default);
  }
  .blog-post__content .post-title a {
    background-image: linear-gradient(transparent calc(100% - 2px), var(--tg-color-white-default) 1px);
    text-decoration: none;
    color: #fff
}
  .blog-post__content-two .post-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .blog-post__content-two .post-title a {

    text-decoration: none;
    color: #000;
  }
  @media (max-width: 1199.98px) {
    .blog-post__content-two .post-title {
      font-size: 18px;
    }
  }
  @media (max-width: 767.98px) {
    .blog-post__content-two .post-title {
      font-size: 20px;
    }
  }
  .blog-post__content-two .tg-text-btn {
    color: var(--tg-theme-primary);
  }
  .blog-post__content-two .tg-text-btn:hover {
    color: var(--tg-theme-secondary);
  }
  .blog-post__content-three {
    padding: 30px 40px 35px;
  }
  @media (max-width: 1199.98px) {
    .blog-post__content-three {
      padding: 30px 20px 35px;
    }
  }
  .blog-post__content-three .post-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
  }
  @media (max-width: 1199.98px) {
    .blog-post__content-three .post-title {
      font-size: 20px;
    }
  }
  .blog-post__content-three p {
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: capitalize;
  }
  .blog-post__content-four {
    position: absolute;
    left: 40px;
    bottom: 40px;
    right: 40px;
    z-index: 1;
  }
  @media (max-width: 1199.98px) {
    .blog-post__content-four {
      left: 25px;
      bottom: 30px;
      right: 20px;
    }
  }
  .blog-post__content-four .tg-post-tag {
    margin-bottom: 20px;
  }
  .blog-post__content-four .post-title {
    color: var(--tg-color-white-default);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
  }
  .blog-post__content-four .post-title a {
    background-image: linear-gradient(transparent calc(100% - 2px), var(--tg-color-white-default) 1px);
  }
  .blog-post__content-five .blog-post__meta-three {
    margin-bottom: 10px;
  }
  .blog-post__content-five .post-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  @media (max-width: 1199.98px) {
    .blog-post__content-five .post-title {
      font-size: 30px;
    }
  }
  @media (max-width: 767.98px) {
    .blog-post__content-five .post-title {
      font-size: 26px;
    }
  }
  .blog-post__content-five p {
    margin-bottom: 25px;
  }
  .blog-post__content-six .post-title {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.03em;
    text-transform: none;
    line-height: 1.25;
    margin-bottom: 8px;
  }
  @media (max-width: 1199.98px) {
    .blog-post__content-six .post-title {
      font-size: 20px;
    }
  }
  .blog-post__content-six .date {
    display: block;
    font-weight: 400;
    line-height: 1.4;
  }
  .blog-post__content-seven {
    width: 70%;
    flex: 0 0 auto;
  }
  @media (max-width: 767.98px) {
    .blog-post__content-seven {
      width: 100%;
    }
  }
  .blog-post__content-seven .post-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    text-transform: none;
    margin-bottom: 8px;
  }
  @media (max-width: 767.98px) {
    .blog-post__content-seven .post-title {
      font-size: 19px;
    }
  }
  .blog-post__content-seven p {
    margin-bottom: 0;
    font-weight: 400;
  }
  .blog-post__content-seven p a {
    color: var(--tg-body-color);
  }
  .blog-post__content-seven p a:hover {
    color: var(--tg-theme-primary);
  }
  .blog-post__meta {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 10px 33px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .blog-post__meta li {
    position: relative;
    color: var(--tg-color-white-default);
    font-weight: 500;
  }
  .blog-post__meta li::before {
    content: "";
    position: absolute;
    right: -27px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 3px;
    background: var(--tg-color-white-default);
    border-radius: 50px;
  }
  .blog-post__meta li:last-child::before {
    display: none;
  }
  .blog-post__meta li a {
    color: var(--tg-color-white-default);
  }
  .blog-post__meta li a:hover {
    color: var(--tg-theme-primary);
  }
  .blog-post__meta-two li {
    color: var(--tg-body-color);
  }
  .blog-post__meta-two li::before {
    background: var(--tg-theme-primary);
  }
  .blog-post__meta-two li a {
    color: var(--tg-theme-secondary);
  }
  .blog-post__meta-two li a:hover {
    color: var(--tg-theme-primary);
  }
  .blog-post__meta-three {
    margin-bottom: 0;
    gap: 20px;
  }
  .blog-post__meta-three li {
    color: var(--tg-heading-color);
    font-weight: 500;
    font-size: 15px;
  }
  .blog-post__meta-three li::before {
    background: #A8A8A8;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    width: 3px;
    height: 10px;
    right: -12px;
  }
  .blog-post__meta-three li a {
    color: var(--tg-theme-primary);
    text-decoration: underline;
    text-decoration-skip-ink: none;
  }
  .blog-post__meta-three li a:hover {
    color: var(--tg-theme-secondary);
  }
  .blog-post__meta-four li {
    color: var(--tg-color-white-default);
  }
  .blog-post__meta-four li a {
    color: var(--tg-color-white-default);
  }
  .blog-post__meta-four li a:hover {
    color: var(--tg-theme-primary);
  }
  .blog__search {
    position: relative;
  }
  .blog__search input {
    background: var(--tg-color-white-default);
    height: 60px;
    font-size: 15px;
    padding: 15px 70px 15px 16px;
  }
  .blog__search input::placeholder {
    font-size: 15px;
  }
  .blog__search button {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    right: 6px !important;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    position: absolute;
  }
  .blog__search button:hover {
    background: var(--tg-theme-secondary);
    color: var(--tg-color-white-default);
  }
  .blog__sidebar {
    margin-left: 30px;
  }
  @media (max-width: 1199.98px) {
    .blog__sidebar {
      margin-left: 0;
    }
  }
  @media (max-width: 991.98px) {
    .blog__sidebar {
      margin-top: 60px;
    }
  }
  .blog__details-content > p {
    margin-bottom: 15px;
  }
  .blog__details-content .title-two {
    font-size: 28px;
    margin-bottom: 16px;
  }
  @media (max-width: 1199.98px) {
    .blog__details-content .title-two {
      font-size: 25px;
    }
  }
  .blog__details-inner {
    margin: 40px 0 55px;
  }
  @media (max-width: 991.98px) {
    .blog__details-inner {
      margin: 25px 0 30px;
    }
  }
  .blog__details-inner .row .col-46 {
    width: 46%;
    flex: 0 0 auto;
  }
  @media (max-width: 767.98px) {
    .blog__details-inner .row .col-46 {
      width: 100%;
    }
  }
  .blog__details-inner .row .col-54 {
    width: 54%;
    flex: 0 0 auto;
  }
  @media (max-width: 767.98px) {
    .blog__details-inner .row .col-54 {
      width: 100%;
    }
  }
  .blog__details-inner-content .title {
    margin-bottom: 12px;
    font-size: 28px;
  }
  @media (max-width: 1199.98px) {
    .blog__details-inner-content .title {
      font-size: 25px;
    }
  }
  .blog__details-inner-content p {
    margin-bottom: 18px;
    width: 95%;
  }
  @media (max-width: 1199.98px) {
    .blog__details-inner-content p {
      width: 100%;
    }
  }
  .blog__details-inner-thumb {
    position: relative;
  }
  @media (max-width: 767.98px) {
    .blog__details-inner-thumb {
      margin-bottom: 30px;
    }
  }
  .blog__details-inner-thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
  }
  @media (max-width: 767.98px) {
    .blog__details-inner-thumb img {
      height: 250px;
    }
  }
  .blog__details-inner-thumb .play-btn {
    width: 62px;
    height: 62px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-color-white-default);
    color: var(--tg-theme-primary);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .blog__details-inner-thumb .play-btn:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
  }
  .blog__details-bottom {
    margin-top: 50px;
    margin-bottom: 70px;
    padding-top: 20px;
    border-top: 1px solid #D6DCE9;
  }
  @media (max-width: 767.98px) {
    .blog__details-bottom .post-tags {
      margin-bottom: 30px;
    }
  }
  .blog__details-bottom .post-tags .title {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--tg-heading-color);
  }
  .blog__details-bottom .post-tags .list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
  }
  .blog__details-bottom .post-tags .list-wrap li a {
    background: var(--tg-color-white-default);
    padding: 5px 16px;
    display: block;
    border-radius: 4px;
    color: var(--tg-theme-primary);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--tg-color-gray-4);
  }
  .blog__details-bottom .post-tags .list-wrap li a:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
    border-color: var(--tg-theme-primary);
  }
  .blog__details-bottom .post-share .title {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--tg-heading-color);
    text-align: right;
  }
  @media (max-width: 767.98px) {
    .blog__details-bottom .post-share .title {
      text-align: left;
    }
  }
  .blog__details-bottom .post-share .list-wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
  }
  @media (max-width: 767.98px) {
    .blog__details-bottom .post-share .list-wrap {
      justify-content: flex-start;
    }
  }
  .blog__details-bottom .post-share .list-wrap li a {
    font-size: 16px;
    color: var(--tg-theme-primary);
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    background: var(--tg-color-gray-4);
  }
  .blog__details-bottom .post-share .list-wrap li a svg {
    width: 16px;
    height: 16px;
  }
  .blog__details-bottom .post-share .list-wrap li a:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-color-white-default);
  }
  .blog__avatar-wrap {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -o-border-radius: 12px;
    -ms-border-radius: 12px;
    border-radius: 12px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    padding: 42px 40px;
    background: var(--tg-color-gray-2);
    gap: 30px;
  }
  @media (max-width: 1199.98px) {
    .blog__avatar-wrap {
      padding: 35px 25px;
    }
  }
  @media (max-width: 767.98px) {
    .blog__avatar-wrap {
      flex-wrap: wrap;
      gap: 20px;
      padding: 30px 25px;
      margin-bottom: 40px;
    }
  }
  .blog__avatar-img {
    width: 115px;
    flex: 0 0 auto;
  }
  .blog__avatar-img img {
    width: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
  }
  .blog__avatar-info .designation {
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
  }
  .blog__avatar-info .name {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--tg-heading-color);
  }
  .blog__avatar-info p {
    margin-bottom: 0;
  }

  
  .blog-post__area {

    padding: 70px 0px;
  }


  .service-card:hover ul li a {

    color: #fff !important;
  }

  
  .service-card:hover ul li::marker {

    background: #fff !important;
    color: #fff !important;
  }

  .service-card:hover ul li a::after {

    background: #fff !important;
    color: #fff !important;
  }

  .service-card:hover ul li a::before {
    
  }

  .service-card:hover li {

    
    color: #fff !important;
  }

/* ═══════════════════════════════════════════════════════════════
   Site-wide responsive enhancements (all pages)
   ═══════════════════════════════════════════════════════════════ */
.job-details-section .col-lg-8,
.job-details-section .col-lg-4 {
    min-width: 0;
}

.job-details-section .mb-4 > img.img-fluid {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .job-details-section .mb-4 > img.img-fluid,
    .job-details-section img.img-fluid[style*="height"] {
        height: 320px !important;
        max-height: 50vh;
    }

    .service-box h2 {
        font-size: clamp(1.35rem, 2.5vw + 0.75rem, 1.75rem);
        line-height: 1.25;
    }

    .process-step-box {
        margin-right: 0;
    }

    .partners-section {
        padding: 40px 20px !important;
    }
}

@media (max-width: 767.98px) {
    .job-details-section .mb-4 > img.img-fluid,
    .job-details-section img.img-fluid[style*="height"] {
        height: 300px !important;
        max-height: 45vh;
    }

    .job-details-content .d-flex.flex-wrap.gap-3 {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem !important;
    }

    .job-details-content .d-flex.flex-wrap.gap-3 .btn {
        width: 100%;
        max-width: none;
        margin-left: 0 !important;
        margin-right: 0;
    }

    .btn.btn-outline-dark {
        min-height: 44px;
        padding: 9px 22px !important;
        font-size: 12px !important;
        letter-spacing: 0.05em;
        line-height: 1.25;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .career-cta-card .cta-text-col .btn + .btn,
    .career-cta-card .cta-text-col a.btn + a.btn {
        margin-left: 0 !important;
        margin-top: 0.65rem;
    }

    .career-cta-card .cta-text-col {
        text-align: center;
    }

    .career-cta-card .cta-text-col .btn,
    .career-cta-card .cta-text-col a.btn {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand .brand-logo img,
    .footer-brand img[width] {
        max-width: 100%;
        height: auto;
    }

    .blog-recent-card-img {
        height: 200px;
    }

    .contact-box-shadow .btn-header-red {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 575.98px) {
    .job-details-section .mb-4 > img.img-fluid,
    .job-details-section img.img-fluid[style*="height"] {
        height: 240px !important;
        max-height: 42vh;
    }

    .industry-section .row-cols-1 > .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Legal & FAQ pages */
.legal-page-section {
    background-color: #f6f6f6;
}

.legal-content {
    background: #fff;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.legal-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: #444;
    line-height: 1.75;
    font-size: 0.95rem;
}

.legal-content ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.faq-page .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: #111;
}

.faq-page .accordion-button:not(.collapsed) {
    color: var(--primary-red, #e63946);
    background-color: #fff5f5;
}

.faq-page .accordion-body {
    color: #444;
    line-height: 1.75;
    font-size: 0.95rem;
}

/* Responsive fixes — legal pages, service heroes, industries slider */
@media (max-width: 991.98px) {
    .legal-content {
        padding: 2rem 1.25rem;
    }

    .col-lg-8 > img.img-fluid[style*="height: 450"],
    .col-lg-8 img.img-fluid[style*="height: 450"] {
        height: 320px !important;
        max-height: 50vh;
    }
}

@media (max-width: 767.98px) {
    .slick-industries-wrap {
        overflow: hidden;
    }

    .legal-content {
        padding: 1.75rem 1rem;
    }

    .faq-page .accordion-button {
        font-size: 0.95rem;
        padding: 1rem 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .legal-content {
        padding: 1.5rem 0.875rem;
    }

    .col-lg-8 > img.img-fluid[style*="height: 450"],
    .col-lg-8 img.img-fluid[style*="height: 450"] {
        height: 260px !important;
        max-height: 42vh;
    }

    .cta-badge-text {
        white-space: normal;
        text-align: center;
    }
}


.blog-post__content-two p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}