/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-blue: #0041c7;
    --primary-blue-rgb: 0, 65, 199;
    --soft-blue: #f3f9fb;
    --text-dark: #20232b;
    --text-muted: #494949;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --accent-gradient: linear-gradient(135deg, #0041c7 0%, #0066ff 100%);
    --mesh-bg: radial-gradient(at 0% 0%, rgba(0, 65, 199, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 102, 255, 0.05) 0px, transparent 50%);
    --grey-1: #F5F6F8;
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

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

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

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1315px;
    }
}

/* Header Styles */
.main-header {
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 5px 0 !important;
}

.header-top {
    background-color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #ebebeb;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info-top a {
    color: #4f4f4f;
    margin-right: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-top a i {
    margin-right: 8px;
}

.contact-info-top a:hover {
    opacity: 0.8;
}

.social-links-top a {
    color: #4f4f4f;
    margin-left: 15px;
    font-size: 15px;
    transition: var(--transition);
}

.social-links-top a:hover {
    transform: translateY(-2px);
    display: inline-block;
}

/* Navigation Bar */
.main-navbar {
    background-color: transparent;
    padding: 7px 0;
    transition: var(--transition);
}

.header-sticky .main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.4s ease-in-out;
    padding: 4px 0;
    box-shadow: var(--shadow-md);
    background: #fff;
    z-index: 999;
}

.header-sticky .navbar-brand img {
    height: 55px;
    width: auto;
    filter: unset;
}

.header-sticky .navbar-nav .nav-link {
    color: #20232b !important;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 15px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: var(--primary-blue);
}





.btn-contact-nav {
    background-color: #1a1a2e;
    color: var(--white) !important;
    border-radius: 50px;
    padding: 10px 25px !important;
    font-weight: 700;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.2);
}

.btn-contact-nav:hover {
    background-color: #2d2d44;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 46, 0.3);
    color: var(--white) !important;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .header-top {
        display: none;
    }

    .main-navbar {
        padding: 0px 16px;
    }

    .navbar-collapse {
        background: var(--white);
        margin-top: 15px;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-color);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 5px;
    }

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

    .navbar-nav .nav-link {
        padding: 15px 0 !important;
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }

    .navbar-nav .nav-link::after {
        display: none;
        /* Hide the underline on mobile for a cleaner look */
    }

    .btn-contact-nav {
        margin-left: 0 !important;
        margin-top: 20px !important;
        padding: 15px 30px !important;
        width: 100%;
        display: block;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0, 65, 199, 0.2);
    }
}

/* About Hero Section */



.btn-hero {
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0;
}

.btn-hero-primary {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
}

.btn-hero-primary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
}

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


.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #94a3b8;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    opacity: 0.4;
    z-index: 1;
}

/* Modern About Section */
.about-section {
    padding: 120px 0;
    background: var(--white);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image:hover img {
    transform: translateY(-10px);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #1a1a2e;
    color: var(--white);
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(26, 26, 46, 0.3);
    z-index: 2;
    min-width: 150px;
}

.experience-badge h2 {
    font-size: 3rem;
    margin-bottom: 0;
    line-height: 1;
}

.experience-badge p {
    font-size: 1rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.about-tagline {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 65, 199, 0.05);
    color: var(--primary-blue);
    font-weight: 700;
    border-radius: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-content h2 span {
    color: var(--primary-blue);
}

.about-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Modern Stats Counter */
.stats-counter {
    padding: 80px 0;
    border-radius: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    color: var(--white);
    background-image: var(--mesh-bg);
}

.counter-item {
    padding: 20px;
}

.counter-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.counter-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Testimonials */
.testimonials-section {
    padding: 120px 0;
    background: #f5f6f8;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--white);
    padding: 50px;
    border-radius: 32px;
    border: 1px solid var(--border-color);
    position: relative;
    margin: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 65, 199, 0.1);
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(0, 65, 199, 0.1);
    margin-bottom: 30px;
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 35px;
}



.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.author-info span {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
}

.testimonial-nav button:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(0, 65, 199, 0.2);
}

/* Modern Clients Section */
.clients {
    padding: 100px 0;
    background: var(--white);
}

.filter-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn-client {
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn-client:hover,
.filter-btn-client.active {
    background: #1a1a2e;
    color: var(--white);
    border-color: #1a1a2e;
    box-shadow: 0 10px 20px rgba(26, 26, 46, 0.15);
}

.client-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}

.client-box {
    background: var(--white);
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
}

.client-box img {
    max-width: 80%;
    max-height: 80%;
    filter: grayscale(1);
    opacity: 0.6;
    transition: var(--transition);
}

.client-box:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.client-box:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.about-features li i {
    width: 24px;
    height: 24px;
    background: rgba(0, 65, 199, 0.1);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Glassmorphism Info Cards */
.core-value {
    padding-top: 80px;
}

.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 65, 199, 0.2);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--soft-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
}

.info-card:hover .icon-circle {
    background: var(--primary-blue);
}

.info-card:hover .icon-circle img {
    filter: brightness(0) invert(1);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.card-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Decorative Shapes */
.shape {
    position: absolute;
    opacity: 0.4;
    z-index: 1;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #bae6fd, transparent);
    border-radius: 30%;
    top: -50px;
    left: -50px;
    transform: rotate(15deg);
}

.shape-2 {
    width: 100px;
    height: 100px;
    border: 15px solid #bae6fd;
    border-radius: 50%;
    bottom: -30px;
    right: 5%;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: #bae6fd;
    border-radius: 20px;
    top: 20%;
    right: -20px;
    transform: rotate(45deg);
}


/* Subscribe Section */
.subscribe-section {
    background-color: #1a1a2e;
    color: white;
}

.exclusive-badge {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.subscribe-title {
    font-size: 2.2rem;
    font-weight: 800;
}

.subscribe-text {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
}

.benefit-list li {
    margin-right: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.benefit-list li i {
    color: #ffc107;
}

.subscribe-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe-input {
    flex: 1;
    height: 55px;
    border-radius: 12px;
    border: none;
    padding: 0 20px;
    font-size: 1rem;
}

.btn-subscribe {
    background: #ffc107;
    color: #000;
    font-weight: 700;
    padding: 0 30px;
    height: 55px;
    border-radius: 12px;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: #ffca2c;
    transform: translateY(-2px);
}

.secure-text {
    font-size: 0.85rem;
    opacity: 0.8;
}

.sub-count-text {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===========================
   Main Footer - Light Theme
   =========================== */
.main-footer {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    border-top: 1px solid #e8edf5;
    padding: 80px 0 0;
    position: relative;
}

/* Brand Column */
.footer-brand-section {
    max-width: 300px;
}

.footer-logo-img {
    width: 125px;
    height: auto;
    margin-bottom: 22px;
}

.footer-desc {
    color: #64748b;
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Social Icons */
.social-icons-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eef2fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(0, 65, 199, 0.08);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 65, 199, 0.25);
    text-decoration: none;
}

/* Footer Headings */
.footer-title {
    color: #1a202c;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 10px;
}

/* Footer Links */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-list a {
    color: #64748b;
    font-size: 0.97rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links-list a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: width 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.footer-links-list a:hover {
    color: var(--primary-blue);
    padding-left: 6px;
}

.footer-links-list a:hover::before {
    width: 12px;
}

/* Contact Info */
.contact-info-footer {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: #eef2fb;
    border: 1px solid rgba(0, 65, 199, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-item:hover .contact-icon-box {
    background: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 65, 199, 0.2);
}

.contact-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    padding-top: 10px;
}

.contact-text strong {
    display: block;
    color: #1a202c;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.contact-text a {
    color: #64748b;
    text-decoration: none;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--primary-blue);
}

/* Newsletter strip inside footer */
.footer-newsletter-strip {
    background: linear-gradient(135deg, #eef2fb, #e0e9ff);
    border-radius: 16px;
    padding: 28px 30px;
    margin-top: 10px;
    border: 1px solid rgba(0, 65, 199, 0.1);
}

.footer-newsletter-strip h6 {
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
    font-size: 1rem;
}

.footer-newsletter-strip p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 16px;
}

.footer-input-group {
    display: flex;
    gap: 8px;
}

.footer-input-group input {
    flex: 1;
    height: 44px;
    border: 1px solid rgba(0, 65, 199, 0.15);
    border-radius: 10px;
    padding: 0 15px;
    font-size: 0.9rem;
    background: #fff;
    color: #1a202c;
    outline: none;
    transition: border-color 0.3s;
}

.footer-input-group input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 65, 199, 0.08);
}

.footer-input-group button {
    height: 44px;
    padding: 0 18px;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-input-group button:hover {
    background: #0036ae;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 65, 199, 0.3);
}

/* Divider */
.footer-divider {
    height: 1px;
    background: #e8edf5;
    margin: 60px 0 0;
    border: none;
}

/* Sub Footer */
.sub-footer {
    background: #f1f5fe;
    padding: 22px 0;
    border-top: 1px solid #e8edf5;
}

.copyright-text {
    color: #64748b;
    font-size: 0.88rem;
    margin-bottom: 0;
}

.copyright-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.footer-legal-links {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #64748b;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-blue);
}

.footer-legal-links a:hover::after {
    width: 100%;
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .main-footer {
        padding-top: 60px;
    }

    .footer-brand-section {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .footer-legal-links {
        justify-content: center;
        margin-top: 12px;
    }

    .copyright-text {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .footer-input-group {
        flex-direction: column;
    }

    .footer-input-group button {
        width: 100%;
    }
}

section.hero-container .slick-dotted.slick-slider {
    margin-bottom: 0;
}

p.subTitle {
    color: #5D6B98;
}

button.btn.btn-shop {
    color: #5D6B98;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
}

h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
}


img {
    cursor: pointer;
}

/* Hero Slider (Carousel) */
.hero-carousel {
    height: 100vh;
    min-height: 600px;
    background-color: #000;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.hero-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}


.hero-content p {
    font-size: 1.25rem;
    color: #e1e1e1;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
    line-height: 1.6;
}

.hero-btns {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
}

/* Animate when .animate is added */
.carousel-item.active.animate .hero-content h1,
.carousel-item.active.animate .hero-content p,
.carousel-item.active.animate .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

.btn-hero {
    padding: 9px 19px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 14px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero-primary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    margin-right: 15px;
}

.btn-hero-primary:hover {
    background-color: #0036a5;
    border-color: #0036a5;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 65, 199, 0.4);
}

.btn-hero-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-hero-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Carousel Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel .carousel-control-prev {
    left: 30px;
}

.hero-carousel .carousel-control-next {
    right: 30px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background-color: var(--primary-blue);
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: var(--transition);
}

.carousel-indicators li.active {
    background-color: var(--primary-blue);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-carousel {
        height: 80vh;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-hero-primary {
        margin-right: 0;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        display: none;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f8fbff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 710px;
    margin: 20px auto 0;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 65, 199, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 65, 199, 0.05);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--primary-blue);
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-read-more {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-read-more i {
    margin-left: 8px;
    font-size: 0.8rem;
}

.btn-read-more:hover {
    color: #0036a5;
    text-decoration: none;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* About Section */
.about-section {
    padding: 90px 0;
    background-color: var(--white);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 65, 199, 0.3);
    z-index: 2;
}

.experience-badge h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--white);
}

.experience-badge p {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content h2 span {
    color: #30304e;
}

.about-tagline {
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    display: inline-block;
    margin-bottom: 10px;
}

.about-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.about-features li {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-features li i {
    width: 25px;
    height: 25px;
    background-color: rgba(0, 65, 199, 0.1);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 15px;
}

/* Stats Counter Section */
.stats-counter {
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}

.counter-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.counter-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0;
}

.counter-item span {
    font-size: 33px;
    color: var(--primary-blue);
}

@media (max-width: 991.98px) {
    .about-image {
        margin-bottom: 50px;
    }
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: #fcfdfe;
}

.filter-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 15px;
}

.filter-btn,
.filter-btn-client {
    padding: 12px 30px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-muted);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active,
.filter-btn-client:hover,
.filter-btn-client.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 65, 199, 0.3);
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.product-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 65, 199, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 30px;
}

.product-badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(0, 65, 199, 0.1);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.product-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.product-features-list li {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.product-features-list li i {
    color: var(--primary-blue);
    font-size: 0.7rem;
    margin-right: 10px;
}

.product-card.featured {
    border: 2px solid var(--primary-blue);
}

.product-card.featured::before {
    content: 'BEST SELLER';
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ffc107;
    color: #000;
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 800;
    transform: rotate(45deg);
    z-index: 10;
}

/* Category Filter Animation */
.product-item {
    transition: all 0.4s ease;
}

.product-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}

.client-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}





/* ABout inner page */
.about-hero {
    position: relative;
    min-height: 500px;
    color: #fff;
    z-index: 10;
    background: linear-gradient(135deg, #0041c7 0%, #0037a6 50%, #002f8f 100%);
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/cubes.png");
    opacity: 0.25;
    z-index: 0;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.4rem;
    color: #cfcfcf;
    max-width: 700px;
    margin: auto;
}

.color-blue {
    color: var(--primary-blue);
}



.btn-outline-light {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background-color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-blue);
    transform: scale(1.05);
}

article.info-card {
    box-shadow: 0 0px 6px #cecece;
    border-radius: 15px;
    padding: 30px;
}

.clients {
    background: #fcfcfc;
}


.client-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.client-box img {
    width: 100%;
    object-fit: contain;
}

@media (max-width:1200px) {
    .client-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

/* service */

.service {
    padding: 100px 60px;
}

.service-wrapper {
    background-color: #eef1ff;
    padding: 25px;
    border-radius: 20px;
}

.service-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-title a {
    color: #000;
}

.service-link-box {
    background: var(--primary-blue);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.service-img {
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 250px;
    border-radius: 35px;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-detail img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.tech-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.tech-box img {
    height: 70px;
    width: 70px;
    object-fit: contain;
}


/* contact */
.contact-map iframe {
    width: 100%;
    height: 250px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 110px 0 100px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 50%, #f3f7fd 100%);
    position: relative;
    overflow: hidden;
}

/* Background Gradient Blobs */
.testimonial-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 65, 199, 0.06);
    top: -100px;
    left: -100px;
    animation: blobFloat 8s ease-in-out infinite;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 65, 199, 0.05);
    bottom: -80px;
    right: -60px;
    animation: blobFloat 10s ease-in-out infinite reverse;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: rgba(0, 65, 199, 0.04);
    top: 40%;
    right: 15%;
    animation: blobFloat 12s ease-in-out infinite;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

/* Floating Quote Icons */
.floating-quote {
    position: absolute;
    color: rgba(0, 65, 199, 0.06);
    z-index: 0;
    pointer-events: none;
    animation: floatQuote 6s ease-in-out infinite;
}

.fq-1 {
    font-size: 80px;
    top: 8%;
    right: 10%;
    animation-delay: 0s;
}

.fq-2 {
    font-size: 50px;
    bottom: 12%;
    left: 5%;
    animation-delay: 1.5s;
}

.fq-3 {
    font-size: 65px;
    top: 50%;
    left: 8%;
    animation-delay: 3s;
}

.fq-4 {
    font-size: 45px;
    top: 20%;
    left: 30%;
    animation-delay: 4.5s;
}

@keyframes floatQuote {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 1;
    }
}

/* Section Header */
.testimonial-tagline {
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 12px;
}

.testimonial-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.testimonial-main-title span {
    color: var(--primary-blue);
    position: relative;
}

.testimonial-main-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 65, 199, 0.12);
    border-radius: 4px;
    z-index: -1;
}

.testimonial-main-title::after {
    display: none;
}

/* Testimonial Slider Ã¢â‚¬â€ Slick Overrides */
.testimonials-section .testimonial-slider {
    position: relative;
    z-index: 1;
}

.testimonials-section .slick-list {
    padding: 4px 0 40px !important;
    overflow: visible !important;
}

.testimonials-section .slick-track {
    display: flex !important;
    align-items: center;
}

/* All slides: slightly scaled down and blurred */
.testimonials-section .slick-slide {
    padding: 15px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(0.85);
    opacity: 0.45;
    filter: blur(2px);
}

/* Center (active) slide: full size, no blur */
.testimonials-section .slick-slide.slick-center,
.testimonials-section .slick-slide.slick-current.slick-center {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
    z-index: 2;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 25px;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), #4d8cff, var(--primary-blue));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: shimmerBar 3s ease infinite;
}

@keyframes shimmerBar {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Active center card: prominent blue border + glow */
.slick-center .testimonial-card {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(0, 65, 199, 0.15), 0 0 30px rgba(0, 65, 199, 0.08);
    transform: translateY(-6px);
}

.testimonial-card:hover {
    border-color: rgba(0, 65, 199, 0.3);
    box-shadow: 0 20px 50px rgba(0, 65, 199, 0.12), 0 0 20px rgba(0, 65, 199, 0.06);
    transform: translateY(-6px);
}

.slick-center .testimonial-card::before,
.testimonial-card:hover::before {
    opacity: 1;
}

/* Quote Icon */
.quote-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-blue), #3370e0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(0, 65, 199, 0.25);
}

/* Star Rating */
.testimonial-stars {
    margin-bottom: 18px;
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 15px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    min-height: 80px;
}

/* Author Section */
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.author-avatar {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    transition: var(--transition);
}

.slick-center .author-avatar,
.testimonial-card:hover .author-avatar {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 65, 199, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Slider Navigation Arrows */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.test-prev,
.test-next {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.test-prev:hover,
.test-next:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 65, 199, 0.3);
}

/* View More Reviews Button */
.testimonial-cta {
    text-align: center;
    margin-top: 45px;
    position: relative;
    z-index: 2;
}

.btn-view-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 65, 199, 0.3);
    letter-spacing: 0.5px;
}

.btn-view-reviews:hover {
    background: #0036a5;
    color: var(--white);
    text-decoration: none;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 65, 199, 0.4);
}

.btn-view-reviews i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-view-reviews:hover i {
    transform: translateX(5px);
}

/* Slick Dots Override */
.testimonials-section .slick-dots {
    bottom: -10px;
}

.testimonials-section .slick-dots li button:before {
    font-size: 10px;
    color: var(--primary-blue);
    opacity: 0.3;
}

.testimonials-section .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-blue);
}

.footer-brand {
    background: #ffffff;
    display: inline-block;
    padding: 10px;
    border-radius: 9px;
}



/* news */
.news-block .inner-box {
    position: relative;
    display: block;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .image-box,
.news-block .image {
    position: relative;
    display: block;
    background: #010101;
    overflow: hidden;
}

.news-block .image-box img {
    position: relative;
    display: block;
    width: 100%;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.news-block .inner-box:hover .image-box img {
    opacity: 0.70;
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.news-block .lower-box {
    position: relative;
    display: block;
    padding: 25px 25px 50px;
    background: #ffffff;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .inner-box:hover {
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.10);
}

.news-block .lower-box:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 2px solid #473080;
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .inner-box:hover .lower-box:before {
    -ms-transform: scale(1);
    transform: scale(1);
}

.news-block .lower-box .category {
    position: relative;
    color: #4a3d8f;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 7px;
}

.news-block .lower-box h3 {
    position: relative;
    color: #222222;
    font-weight: 700;
    margin: 0 0 25px;
}

.news-block h3 a {
    color: #222222;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block h3 a:hover,
.news-block .lower-box .meta-info li a:hover {
    color: var(--primary-blue);
}

.news-block .text {
    position: relative;
    display: block;
    color: #222222;
    margin-bottom: 30px;
}

.news-block .lower-box .meta-info {
    position: relative;
    color: #999999;
}

.news-block .lower-box .meta-info li {
    position: relative;
    float: left;
    margin-right: 31px;
    line-height: 24px;
}

.news-block .lower-box .meta-info li:after {
    content: '';
    position: absolute;
    height: 14px;
    right: -16px;
    border-right: 1px solid #999999;
    top: 50%;
    margin-top: -7px;
}

.news-block .lower-box .meta-info li:last-child:after {
    display: none;
}

.news-block .lower-box .meta-info li a {
    position: relative;
    color: #999999;
}

.news-block .more-link {
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 100%;
    display: block;
    text-align: center;
}

.news-block .more-link a {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #ffffff;
    font-size: 14px;
    color: var(--primary-blue);
    box-shadow: 10px 10px 35px 0px rgba(0, 0, 0, 0.05), 0px 0px 35px 0px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block .inner-box:hover .more-link a {
    color: #ffffff;
    background: var(--primary-blue);
    box-shadow: 10px 10px 35px 0px rgba(0, 0, 0, 0.10), 0px 0px 35px 0px rgba(0, 0, 0, 0.10);
}

.meta-info ul {
    padding-left: 0;
    list-style: none;
}

.news-block-three .meta-info {
    padding-top: 5px;
    padding-bottom: 15px;
    margin-bottom: 35px;
    border-bottom: 1px solid #e2eef2;
}

.news-block-three .lower-box .meta-info li {
    position: relative;
    float: left;
    margin-right: 31px;
    line-height: 24px;
}

.sidebar .recent-posts .post {
    position: relative;
    font-size: 14px;
    color: #777777;
    padding: 0px 0px 25px 100px;
    min-height: 105px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 25px;
}

.sidebar .recent-posts .post:last-child {
    margin-bottom: 0px;
}

.sidebar .recent-posts .post-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 80px;
    height: 80px;
    border-radius: 0;
}

.sidebar .recent-posts .post-thumb img {
    position: relative;
    display: block;
    width: 100%;
}

.sidebar .recent-posts .text {
    font-size: 16px;
    line-height: 1.5em;
    color: #222222;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 7px;
}

.sidebar .recent-posts .text a {
    color: #333333;
}

.sidebar .recent-posts .meta-info {
    position: relative;
    color: #999999;
}

.sidebar .recent-posts .meta-info li {
    position: relative;
    float: left;
    margin-right: 31px;
    line-height: 24px;
}

.sidebar .recent-posts .meta-info li:last-child {
    margin-right: 0;
}

.sidebar .recent-posts .meta-info li:after {
    content: '';
    position: absolute;
    height: 14px;
    right: -16px;
    border-right: 1px solid #999999;
    top: 50%;
    margin-top: -7px;
}

.sidebar .recent-posts .meta-info li:last-child:after {
    display: none;
}

.sidebar .recent-posts .meta-info li a {
    position: relative;
    color: #999999;
}

.sidebar .recent-posts .meta-info li a:hover {
    color: var(--primary-blue);
}


/* Responsive */
@media (max-width: 1200px) {
    .testimonial-main-title {
        font-size: 2.4rem;
    }
}

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

    .testimonial-main-title {
        font-size: 2.2rem;
    }

    .testimonial-slide {
        transform: scale(0.92);
    }

    .floating-quote {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 51px 0;
    }

    .testimonial-main-title {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 30px 22px 28px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        min-height: auto;
    }

    .quote-icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .btn-view-reviews {
        padding: 14px 30px;
        font-size: 0.9rem;
    }

    .testimonial-blob {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonial-main-title {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 25px 18px 22px;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
    }

    .testimonial-nav {
        gap: 10px;
    }

    .test-prev,
    .test-next {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
}

/* Project Detail Page Styles */
.project-hero {
    height: 70vh;
    min-height: 500px;
    background-color: #000;
}

.project-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.project-cat-badge {
    background-color: var(--primary-blue);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.project-hero-desc {
    font-size: 1.25rem;
    max-width: 600px;
}

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

.project-meta-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.meta-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.meta-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-list li i {
    font-size: 1.2rem;
}

.tech-item {
    background-color: white;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.tech-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
}

.gallery-item {
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.cta-inner {
    background: var(--primary-blue);
    z-index: 1;
}

.cta-bg-shape {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 991.98px) {
    .project-title {
        font-size: 2.5rem;
    }
}

/* FAQ Page Styles */
.faq-hero {
    border-bottom: 1px solid var(--border-color);
}

.faq-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.faq-search-wrapper .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
}

.btn-faq-cat {
    padding: 10px 25px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.btn-faq-cat:hover,
.btn-faq-cat.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 65, 199, 0.2);
}

.faq-accordion .card {
    transition: var(--transition);
}

.faq-accordion .card-header .btn-link {
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem 0;
}

.faq-accordion .faq-icon {
    transition: transform 0.3s ease;
}

.faq-accordion .btn-link:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
}

.faq-accordion .card-body {
    font-size: 1rem;
    line-height: 1.6;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 767.98px) {
    .faq-categories-nav {
        gap: 10px;
    }

    .btn-faq-cat {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Blog System Styles */
.blog-section {
    background-color: var(--soft-blue);
}

.blog-card {
    transition: var(--transition);
    border: none;
    background: var(--white);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.blog-img-wrapper {
    overflow: hidden;
    height: 220px;
}

.blog-card.horizontal .blog-img-wrapper {
    height: 100%;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: crop;
    transition: transform 0.5s ease;
}

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

.blog-date-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-cat-text {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-title a {
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary-blue) !important;
}

.btn-read-more {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-read-more:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Blog Sidebar */
.sidebar-widget {
    border: 1px solid var(--border-color);
}

.widget-title {
    font-weight: 800;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-blue);
}

/* Blog Detail */
.post-typography p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.post-typography h3 {
    font-weight: 800;
    color: var(--text-dark);
}

.badge-soft-blue {
    background: #e0e7ff;
    color: var(--primary-blue);
}

.object-fit-cover {
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .blog-card.horizontal .row.no-gutters {
        flex-direction: column;
    }

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

/* Mobile Responsiveness Improvements */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        font-weight: 600;
    }

    .hero-text {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }

    .section-padding {
        padding: 60px 0 !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
    }

    /* Client Grid Optimization */
    .client-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .client-box {
        height: 80px !important;
        padding: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: white !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
    }

    .client-box img {
        max-height: 40px !important;
        width: auto !important;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: 0.3s;
    }

    .client-box:hover img {
        filter: grayscale(0);
        opacity: 1;
    }

    /* Footer Fixes */
    .footer-logo-img {
        max-height: 50px !important;
        width: auto !important;
    }

    .footer-desc {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 575.98px) {
    .btn-hero {
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    .hero-cta {
        flex-direction: column !important;
        align-items: stretch !important;
    }
}

/* Product & Meta Card Mobile Refinements */
@media (max-width: 767.98px) {
    .product-content {
        padding: 30px 20px !important;
    }

    .meta-card {
        padding: 15px !important;
        margin-bottom: 10px !important;
    }

    .meta-card i {
        font-size: 1.2rem !important;
        margin-right: 12px !important;
    }

    .meta-card h6 {
        font-size: 0.8rem !important;
    }

    .meta-card p {
        font-size: 0.9rem !important;
    }

    .tech-stack-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
    }

    .tech-item {
        padding: 15px !important;
    }

    .tech-item img {
        height: 40px !important;
    }
}

/* ============================================= */
/* LOYVERSE-STYLE SOLUTIONS SECTION              */
/* ============================================= */
.loy-solutions-section {
    padding: 100px 0 60px;
    background: #ffffff;
}

.loy-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.loy-feature-row {
    padding: 60px 0;
    border-bottom: 1px solid #e8edf2;
}

.loy-feature-row-last {
    border-bottom: none;
}

.loy-feature-img {
    text-align: center;
    padding: 0 20px;
}

.loy-feature-img img {
    max-width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.loy-feature-img:hover img {
    transform: scale(1.02);
}

.loy-feature-text {
    padding: 0 20px;
}

.loy-feature-text ul{
    padding-left:15px;
}

.loy-feature-text ul li{
    line-height:2.1;
}

.loy-feature-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.loy-feature-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.loy-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.loy-feature-list li {
    position: relative;
    padding-left: 18px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 400;
}

.loy-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #1a1a2e;
}

.loy-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0284c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.loy-explore-link:hover {
    color: #0369a1;
    text-decoration: none;
    gap: 12px;
}

.loy-explore-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.loy-explore-link:hover i {
    transform: translateX(4px);
}

.loy-solutions-section .nav-tabs {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 8px;
}

.loy-solutions-section .nav-tabs::-webkit-scrollbar {
    display: none;
}

.loy-solutions-section .tab {
    flex: 0 0 auto;
    padding: 14px 20px;
    font-size: 15px;
    color: #6b6b6b;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: pre-wrap;
    text-align: center;
    line-height: 1.35;
    min-width: 200px;
    max-width: 300px;
    transition: color 0.15s, border-color 0.15s;
    user-select: none;
}

.loy-solutions-section .tab:hover {
    color: #111;
}

.loy-solutions-section .tab.active {
    color: #111;
    border-bottom: 2px solid #111;
    font-weight: 500;
}


/* Loyverse Section Responsive */
@media (max-width: 991.98px) {
    .loy-section-title {
        font-size: 2rem;
    }

    .loy-feature-row {
        padding: 40px 0;
    }

    .loy-feature-text {
        padding: 20px 0 0;
    }

    .loy-feature-text h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 575.98px) {
    .loy-solutions-section {
        padding: 60px 0 30px;
    }

    .loy-section-title {
        font-size: 1.6rem;
    }

    .loy-feature-row {
        padding: 30px 0;
    }

    .loy-feature-text h3 {
        font-size: 1.4rem;
    }

    .loy-feature-img {
        padding: 0;
    }
}

/* ============================================= */
/* POS HERO BANNER SECTION                       */
/* ============================================= */
.pos-hero-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
}

/* Animated Gradient Blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    animation: blobFloat 12s ease-in-out infinite;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #d1d5db, #e5e7eb);
    top: -120px;
    left: -120px;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #c7d2fe, #e0e7ff);
    bottom: -100px;
    right: -80px;
    animation-delay: -4s;
    animation-duration: 15s;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
    animation-duration: 18s;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -40px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(15px, 30px) scale(1.03);
    }
}

/* Subtle Grid Pattern */
.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

/* Hero Row */
.pos-hero-row {
    position: relative;
    z-index: 2;
}

/* Left Column */
.pos-hero-left {
    padding-right: 30px;
}

/* Badge */
.pos-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 26, 46, 0.06);
    border: 1px solid rgba(26, 26, 46, 0.12);
    color: #1a1a2e;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.pos-hero-badge i {
    font-size: 0.8rem;
    color: #f59e0b;
}

/* Title */
.pos-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.pos-hero-title-highlight {}

/* Description */
.pos-hero-desc {
    font-size: 1.1rem;
    color: #494949;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 480px;
}

/* CTA Buttons */
.pos-hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pos-btn-primary {
    background: #535353;
    color: #fff;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.2);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.pos-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s;
}

.pos-btn-primary:hover::before {
    left: 100%;
}

.pos-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(26, 26, 46, 0.35);
    color: #fff;
    text-decoration: none;
}

.pos-btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.pos-btn-outline {
    background: transparent;
    color: #1a1a2e;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid rgba(26, 26, 46, 0.25);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pos-btn-outline:hover {
    background: rgba(26, 26, 46, 0.06);
    border-color: #1a1a2e;
    transform: translateY(-3px);
    color: #1a1a2e;
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.12);
    text-decoration: none;
}

/* Watch Demo Link */
.pos-hero-watch {
    margin-left: 15px;
}

.pos-watch-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.pos-watch-link:hover {
    text-decoration: none;
    color: var(--primary-blue);
}

.pos-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    box-shadow: 0 6px 20px rgba(26, 26, 46, 0.3);
    transition: all 0.35s ease;
    position: relative;
}

.pos-play-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 65, 199, 0.3);
    animation: playPulse 2s ease-out infinite;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

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

.pos-play-btn i {
    margin-left: 3px;
}

.pos-watch-link:hover .pos-play-btn {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 65, 199, 0.5);
}

.pos-watch-text {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

/* Trust Indicators */
.pos-hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 600;
}

.trust-item i {
    color: #10b981;
    font-size: 0.95rem;
}

/* Right Column Ã¢â‚¬â€œ Image Wrapper */
.pos-hero-right {
    position: relative;
}

.pos-hero-image-wrapper {
    position: relative;
    padding: 10px;
}

.pos-hero-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 16px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
    height: 400px;
    object-fit: cover;
}

.hero-circle {
    position: absolute;
    height: 300px;
    width: 300px;
    background: #d3defe;
    border-radius: 50%;
    bottom: -46px;
    right: 40px;
    z-index: -1;
}

.pos-hero-image-wrapper:hover .pos-hero-img {
    transform: translateY(-4px);
}

/* Floating Glassmorphism Cards */
.pos-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 9px 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 5;
    transition: transform 0.3s ease;

    overflow: hidden;
}

/* animated border layer */
.pos-floating-card::before {
    content: "";
    position: absolute;
    inset: -2px; /* slightly outside */
    border-radius: 18px;
    background: linear-gradient(90deg, #007bff, #00c6ff, #007bff);
    background-size: 300% 100%;
    z-index: -1;

    opacity: 0;
    transition: opacity 0.3s ease;
}

/* inner card to preserve glass look */
.pos-floating-card::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: -1;
}



.pos-floating-card:hover::before {
    opacity: 1;
    animation: borderRun 2s linear infinite;
}

@keyframes borderRun {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

.float-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.float-card-icon i {
    font-size: 12px;
}


.float-card-info {
    display: flex;
    flex-direction: column;
}

.float-card-label {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.float-card-value {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Card Positioning + Float Animation */
.pos-float-card-1 {
    top: 26%;
    left: -30px;
    animation: floatCard1 5s ease-in-out infinite;
}

.pos-float-card-2 {
    bottom: 37%;
    left: -30px;
    animation: floatCard2 6s ease-in-out infinite;
    animation-delay: -2s;
}

.pos-float-card-3 {
    bottom: 14%;
    left: -30px;
    animation: floatCard3 7s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes floatCard1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatCard3 {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-8px) translateX(5px);
    }
}

/* Fade-In Animation */
.hero-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: var(--delay, 0s);
}

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

/* ============================================= */
/* POS HERO Ã¢â‚¬â€œ RESPONSIVE                         */
/* ============================================= */
@media (max-width: 1199.98px) {
    .pos-hero-title {
        font-size: 2.1rem;
    }

    .pos-float-card-1 {
        left: -10px;
    }
}

@media (max-width: 991.98px) {
    .pos-hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .pos-hero-row {
        min-height: auto;
    }

    .pos-hero-left {
        padding-right: 15px;
        text-align: center;
        margin-bottom: 50px;
    }

    .pos-hero-title {
        font-size: 1.9rem;
    }

    .pos-hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .pos-hero-cta {
        justify-content: center;
    }

    .pos-hero-watch {
        display: flex;
        justify-content: center;
    }

    .pos-hero-trust {
        justify-content: center;
    }

    .pos-hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .pos-hero-image-wrapper {
        max-width: 550px;
        margin: 0 auto;
    }

    .pos-float-card-1 {
        left: -5px;
        top: 5%;
    }

    .pos-float-card-2 {
        right: -5px;
    }
}

@media (max-width: 767.98px) {
    .pos-hero-section {
        padding: 60px 0 50px;
    }

    .pos-hero-title {
        font-size: 1.6rem;
    }

    .pos-hero-desc {
        font-size: 1rem;
    }

    .pos-btn-primary,
    .pos-btn-outline {
        padding: 14px 28px;
        font-size: 0.92rem;
        width: 100%;
        text-align: center;
        border-radius: 12px;
    }

    .pos-hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .pos-hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .pos-floating-card {
        padding: 10px 14px;
        border-radius: 12px;
    }

    .float-card-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 0.8rem;
    }

    .float-card-label {
        font-size: 0.65rem;
    }

    .float-card-value {
        font-size: 0.95rem;
    }

    .pos-float-card-1 {
        left: 0;
        top: 3%;
    }

    .pos-float-card-2 {
        right: 0;
        bottom: 20%;
    }

    .pos-float-card-3 {
        bottom: 0;
        left: 0;
    }

    .hero-blob-1 {
        width: 250px;
        height: 250px;
    }

    .hero-blob-2 {
        width: 200px;
        height: 200px;
    }

    .hero-blob-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 575.98px) {
    .pos-hero-title {
        font-size: 1.75rem;
    }

    .pos-play-btn {
        width: 44px;
        height: 44px;
    }
}

/* ============================================= */
/* SOLUTIONS SECTION                             */
/* ============================================= */
.solutions-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.solutions-tagline {
    display: block;
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.solutions-tabs-wrapper {
    margin-bottom: 60px;
}

.solutions-tabs-wrapper .nav-pills {
    gap: 15px;
}

.solutions-tabs-wrapper .nav-link {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.solutions-tabs-wrapper .nav-link i {
    font-size: 1.1rem;
}

.solutions-tabs-wrapper .nav-link:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: var(--primary-blue);
}

.solutions-tabs-wrapper .nav-link.active {
    background: linear-gradient(135deg, #0041c7, #0a58ff);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 65, 199, 0.25);
}

/* Solution Image Container */
.solution-image-container {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 65, 199, 0.03), rgba(10, 88, 255, 0.05));
    border-radius: 30px;
    text-align: center;
}

.solution-main-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease;
}

.solution-image-container:hover .solution-main-img {
    transform: translateY(-5px);
}

/* Mini Floating Cards */
.mini-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    z-index: 5;
    font-weight: 700;
    font-size: 0.85rem;
    animation: miniFloat 4s ease-in-out infinite;
}

.float-card-tl {
    top: 10%;
    left: -10px;
}

.float-card-br {
    bottom: 10%;
    right: -10px;
    animation-delay: -2s;
}

@keyframes miniFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Solution Text Content */
.solution-text-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.solution-text-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
}

.solution-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.solution-features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.solution-features-list li:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 38px;
    height: 38px;
    background: rgba(0, 65, 199, 0.08);
    color: var(--primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.explore-solution-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.explore-solution-link i {
    transition: transform 0.3s ease;
}

.explore-solution-link:hover {
    color: #0036a5;
    text-decoration: none;
}

.explore-solution-link:hover i {
    transform: translateX(8px);
}

/* Tab Switcher Animation */
.tab-pane {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-pane.fade:not(.show) {
    transform: translateY(15px);
}

/* Responsive */
@media (max-width: 991.98px) {
    .solution-image-container {
        max-width: 500px;
        margin: 0 auto 50px;
    }

    .solution-text-content {
        text-align: center;
        padding-left: 0 !important;
    }

    .solution-features-list li {
        justify-content: center;
    }

    .solutions-tabs-wrapper .nav-link {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .solutions-tabs-wrapper .nav-pills {
        flex-direction: column;
        align-items: center;
    }

    .solutions-tabs-wrapper .nav-item {
        width: 100%;
        max-width: 250px;
    }

    .solution-text-content h3 {
        font-size: 1.8rem;
    }
}

/* Visibility Restriction & Scroll Button */
.hidden-initially {
    display: none !important;
}

.scroll-down-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-blue);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    animation: hero-bounce 2s infinite;
    background: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 65, 199, 0.2);
    transition: var(--transition);
}

.scroll-down-btn:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 65, 199, 0.3);
    color: #0036a5;
}

@keyframes hero-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Aegis Software Differentiators Section - Extra Compact */
.differentiators-section {
    background-color: #f4f7ff;
    padding: 60px 0;
    position: relative;
}

.diff-left-col {
    display: flex;
    align-items: center;
}

.diff-content-left {
    padding-right: 20px;
}

.diff-badge {
    display: inline-block;
    background: rgba(0, 65, 199, 0.08);
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.diff-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 12px;
}

.diff-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.diff-cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-blue);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.diff-cta-btn:hover {
    background: #0036ae;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 65, 199, 0.2);
}

/* 3x2 Mini Card Grid - Extra Compact */
.diff-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.diff-mini-card {
    background: #ffffff;
    border: 1px solid #eef2f8;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
    height: 100%;
    border-bottom: 1px solid var(--blue);
}

.diff-mini-card:hover {
    border-color: rgba(0, 65, 199, 0.15);
    box-shadow: 0 5px 20px rgba(0, 65, 199, 0.05);
    transform: translateY(-2px);
}

.diff-mini-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f4ff 0%, #e1e9ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.95rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.diff-mini-card:hover .diff-mini-icon {
    background: var(--primary-blue);
    color: #ffffff;
}

.diff-mini-body h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.2;
}

.diff-mini-body p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0;
}

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

@media (max-width: 991px) {
    .differentiators-section {
        padding: 50px 0;
    }

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

    .diff-content-left {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .diff-cards-grid {
        grid-template-columns: 1fr;
    }

    .diff-mini-card {
        padding: 12px;
    }
}



.diff-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.diff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.diff-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #eef2fb 0%, #dde8ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: 25px;
}

.diff-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.diff-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .differentiators-section {
        padding: 60px 0;
    }

    .diff-title {
        font-size: 2.8rem;
    }

    .diff-content-left {
        padding-right: 0;
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .diff-feature-grid {
        flex-direction: column;
    }

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

/* Revenue Growth Section */
.revenue-section {
    background: radial-gradient(circle at center, #0c69c8 0%, #063d7a 100%);
    padding: 50px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.revenue-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.revenue-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto 60px;
}

.revenue-title span {
    color: rgba(255, 255, 255, 0.7);
}

.revenue-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.revenue-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.revenue-stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.revenue-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.revenue-stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1200px) {
    .revenue-title {
        font-size: 3.2rem;
    }
}

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

    .revenue-title {
        font-size: 2.8rem;
    }
}

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

    .revenue-title {
        font-size: 2rem;
        font-weight: 400;
    }
}

@media (max-width: 480px) {
    .revenue-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   VIDEO HERO BANNER
   ================================================ */
.video-hero-banner {
    position: relative;
    width: 100%;
    height: 113vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    margin-top: -87px;
}

/* Background Video */
.video-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay */
.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* Content */
.video-hero-content {
    position: relative;
    margin-top: 315px;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    animation: heroContentFadeIn 1.2s ease-out forwards;
}

.banner-btn_trans {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
}

.banner-btn_bck {
    background: #3468d4;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-right: 15px;
}



@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title */
.video-hero-title {
    font-size: 4rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

/* Gradient Text - Possibilities (Coral/Red) */
.text-gradient-coral {
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, #ffffff, #e7deda, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient Text - Progress (Green) */
.text-gradient-green {
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, #487aab, #2f57aa, #a8d3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient Text - Prosperity (Gold/Amber) */
.text-gradient-gold {
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, #f39c12, #e67e22, #fdcb6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.video-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Play Button Wrapper */
.video-hero-play-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Play Button */
.video-hero-play-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.video-hero-play-btn i {
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.video-hero-play-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
    transform: scale(1.1);
}

.video-hero-play-btn:hover i {
    transform: scale(1.15);
}

/* Pulse ring animation */
.video-hero-play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: heroPulseRing 2s ease-out infinite;
}

@keyframes heroPulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Scroll Down Arrow */
.video-hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-down-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-down-arrow:hover {
    color: #fff;
    text-decoration: none;
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* ================================================
   VIDEO HERO RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
    .video-hero-title {
        font-size: 3rem;
    }
}

/* Dropdown Hover & Mega Menu Styling */
@media (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu,
    .navbar .dropdown-menu.show {
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) !important;
    }

    .navbar .dropdown-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px) !important;
        transition: all 0.3s ease;
        margin-top: 0;
        border: none;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        padding: 40px 0;
    }
    
        .megamenu-container {
        padding-left: 60px;
        padding-right: 60px;
    }

    /* Prevent the caret from stretching into a line on hover */
    .navbar-nav .nav-link.dropdown-toggle::after {
        width: auto !important;
    }

    .navbar .dropdown-mega {
        position: static !important;
    }

    .mega-menu {
        width: 100%;
        left: 0;
        right: 0;
        padding: 40px 0;
        border-radius: 0 0 12px 12px;
        top: 100%;
        background-color: #fff;
    }
}

.dropdown-item {
    padding: 8px 24px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-item:hover {
    color: var(--primary-blue);
    background-color: var(--soft-blue);
    padding-left: 28px;
}

.mega-menu .dropdown-header {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 700;
    padding: 0 0 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.mega-menu .dropdown-item {
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    background: transparent !important;
}

.mega-menu .dropdown-item:hover {
    color: var(--primary-blue);
    padding-left: 8px;
}

.mega-menu-card {
    background: #f8faff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.mega-menu-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: rgba(0, 65, 199, 0.2);
}

.mega-menu-card h6 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.mega-menu-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Mega Menu Tabs Customization */
.mega-menu-tabs .nav-link {
    color: inherit;
    background-color: transparent;
    padding: 20px !important;
    border-radius:25px;
}

.mega-menu-tabs .nav-link.active {
    background-color: #fff !important;
    border: 1px solid #b4b4b4;
    box-shadow: var(--shadow-md) !important;
}

.mega-menu-tabs .mega-menu-card {
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .video-hero-banner {
        min-height: 500px;
        height: 80vh;
    }

    .video-hero-title {
        font-size: 2.5rem;
    }

    .video-hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .video-hero-banner {
        height: 31vh;
        min-height: unset;
        margin-top: 73px;
    }

    .video-hero-title {
        font-size: 2rem;
    }

    .video-hero-subtitle {
        font-size: 0.9rem;
    }

    .video-hero-subtitle br {
        display: none;
    }

    .video-hero-play-btn {
        width: 54px;
        height: 54px;
        font-size: 16px;
    }

    .banner-btn {
        display: flex;
    }

    .col-lg-3.col-md-6.mb-5.mb-lg-0 {
        margin-bottom: 0 !important;
    }

    section.blog.section-padding .col-lg-4 {
        margin-bottom: 42px;
    }

    .news-block .more-link a {

        width: 40px;
        height: 40px;
        line-height: 40px;

    }

    .section-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .navbar-brand img {

        filter: unset;
    }

    .navbar-nav .nav-link {
        color: black !important;

    }

    .navbar-brand img {
        height: 52px;
        width: auto;
        filter: unset
    }

    .main-navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        animation: slideDown 0.4s ease-in-out;
        padding: 4px 12px ! IMPORTANT;
        box-shadow: var(--shadow-md);
        background: #ffffff;
        z-index: 999;
    }
}

@media (max-width: 480px) {
    .video-hero-title {
        font-size: 1.6rem;
    }

    .video-hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }

    .video-hero-play-btn {
        width: 48px;
        height: 48px;
        font-size: 14px;
    }
}

/* ================================================
   MOBILE SIDEBAR MENU - Only for mobile view
   ================================================ */

/* Custom Hamburger Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 2.5px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Sticky header: dark lines */
.mobile-menu-toggle .hamburger-line {
    background-color: #20232b;
}

/* Hamburger â†’ X animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background-color: #20232b;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background-color: #20232b;
}

@media (max-width: 991.98px) {
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide Bootstrap's default navbar collapse completely on mobile */
    .navbar-collapse {
        display: none !important;
    }
}

/* Sidebar Overlay */
.mobile-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Sidebar Panel */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mobile-sidebar.active {
    right: 0;
}

/* Sidebar Header */
.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.mobile-sidebar-logo img {
    height: 42px;
    width: auto;
}

.mobile-sidebar-close {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mobile-sidebar-close:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #ef4444;
}

/* Sidebar Navigation */
.mobile-sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
    -webkit-overflow-scrolling: touch;
}

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

.mobile-nav-item {
    border-bottom: 1px solid #f1f5f9;
}

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    color: #334155;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
}

.mobile-nav-link i:first-child {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary-blue);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.mobile-nav-link:hover {
    color: var(--primary-blue);
    background: #f8faff;
    text-decoration: none;
}

.mobile-nav-link:hover i:first-child {
    background: var(--primary-blue);
    color: #fff;
}

/* Active state */
.mobile-nav-item.active .mobile-nav-link {
    color: var(--primary-blue);
    font-weight: 600;
}

.mobile-nav-item.active .mobile-nav-link i:first-child {
    background: var(--primary-blue);
    color: #fff;
}

.mobile-nav-item.active .mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--primary-blue);
    border-radius: 0 4px 4px 0;
}

/* Dropdown Arrow */
.mobile-arrow {
    margin-left: auto;
    font-size: 0.7rem;
    color: #94a3b8;
    transition: transform 0.3s ease;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    display: inline !important;
}

.mobile-nav-item.open .mobile-arrow {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

/* Submenu */
.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8faff;
}

.mobile-nav-item.open .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li a {
    display: block;
    padding: 11px 24px 11px 74px;
    color: #64748b;
    font-size: 0.92rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-submenu li a::before {
    content: '';
    position: absolute;
    left: 56px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: background 0.2s ease;
}

.mobile-submenu li a:hover {
    color: var(--primary-blue);
    background: #eef2ff;
    text-decoration: none;
}

.mobile-submenu li a:hover::before {
    background: var(--primary-blue);
}

/* Submenu Category Headers */
.mobile-submenu-header {
    padding: 10px 24px 6px 74px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mobile-submenu-header:first-child {
    padding-top: 14px;
}

/* Sidebar Footer */
.mobile-sidebar-footer {
    padding: 20px 24px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
    flex-shrink: 0;
    background: #fafbfd;
}

.mobile-sidebar-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mobile-sidebar-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #eef2fb;
    border: 1px solid rgba(0, 65, 199, 0.08);
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mobile-sidebar-social a:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 65, 199, 0.25);
}

.mobile-sidebar-copyright {
    font-size: 0.78rem;
    color: #94a3b8;
    margin-bottom: 0;
}



* HERO */ .hero {
    min-height: 90vh;
    padding: 80px 0;
    background: linear-gradient(135deg, #fffdf8 0%, #f8f5ee 55%, #fbf4e3 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 55% at 75% 50%, rgba(184, 144, 42, 0.08) 0%, transparent 70%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: linear-gradient(rgba(184, 144, 42, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 144, 42, 1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 144, 42, 0.1);
    border: 1px solid rgba(184, 144, 42, 0.3);
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.3rem, 5vw, 3.9rem);
    font-weight: 900;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 22px;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero p.lead {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 510px;
    margin-bottom: 36px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white) !important;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 30px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(184, 144, 42, 0.28);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(184, 144, 42, 0.38);
}

.btn-outline-gold {
    background: transparent;
    border: 1.5px solid rgba(184, 144, 42, 0.45);
    color: var(--gold) !important;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    text-decoration: none !important;
}

.btn-outline-gold:hover {
    background: rgba(184, 144, 42, 0.08);
    border-color: var(--gold);
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.stat-item {
    border-left: 2px solid rgba(184, 144, 42, 0.4);
    padding-left: 16px;
}

.stat-num {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.74rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.hero-image-wrap img {
    width: 100%;
    display: block;
}

.float-card {
    position: absolute;
    bottom: 24px;
    left: -22px;
    background: var(--white);
    border: 1px solid var(--grey-2);
    border-radius: 14px;
    padding: 15px 22px;
    z-index: 2;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.11);
}

.float-card-title {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.float-card-val {
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--gold);
}

/* SECTIONS */
section {
    padding: 88px 0;
}

.bg-white {
    background: var(--white);
}

.bg-grey {
    background: var(--grey-1);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title em {
    font-style: normal;
    color: var(--gold);
}

.section-lead {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 560px;
}

.divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
    margin: 18px 0 26px;
}

.divider-center {
    margin: 18px auto 26px;
}

/* WHY CARDS */
.why-card {
    background: var(--white);
    border: 1px solid var(--grey-2);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    transition:
        transform 0.3s,
        box-shadow 0.3s,
        border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.09);
    border-color: rgba(184, 144, 42, 0.2);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--gold-pale);
    border: 1px solid rgba(184, 144, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.why-card h5 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* MODULES */
.module-pill {
    background: var(--white);
    border: 1px solid var(--grey-2);
    border-radius: 50px;
    padding: 11px 22px;
    margin: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-body);
    transition: 0.25s;
    cursor: default;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.module-pill:hover {
    background: var(--gold-pale);
    border-color: rgba(184, 144, 42, 0.35);
    color: var(--gold);
}

.module-pill i {
    color: var(--gold);
    font-size: 0.85rem;
}

/* FEATURE TABS */
.feature-tabs .nav-pills {
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tabs .nav-link {
    background: var(--white);
    border: 1px solid var(--grey-2);
    color: var(--text-body) !important;
    border-radius: 50px;
    font-size: 0.85rem;
    padding: 9px 20px;
    font-weight: 500;
    transition: 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.feature-tabs .nav-link:hover {
    border-color: rgba(184, 144, 42, 0.4);
    color: var(--gold) !important;
}

.feature-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--white) !important;
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(184, 144, 42, 0.3);
}

.feature-panel {
    padding: 36px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--grey-2);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.06);
}

.feature-panel h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-panel p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--grey-2);
    color: var(--text-body);
    font-size: 0.88rem;
}

.feature-list li:last-child {
    border: none;
}

.feature-list li i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-img {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--grey-2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.feature-img img {
    width: 100%;
    display: block;
}

/* WORKFLOW */
.workflow-step {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 24px 26px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--grey-2);
    transition: 0.3s;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.workflow-step:hover {
    border-color: rgba(184, 144, 42, 0.25);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.step-num {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0041c7 0%, #0037a6 50%, #002f8f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.step-content h6 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.94rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.6;
    margin: 0;
}

/* CLIENTS */
.client-logo-wrap {
    background: var(--white);
    border: 1px solid var(--grey-2);
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 84px;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.client-logo-wrap:hover {
    border-color: rgba(184, 144, 42, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.client-logo-wrap img {
    max-height: 42px;
    max-width: 110px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.55);
    transition: 0.3s;
}

.client-logo-wrap:hover img {
    filter: none;
}

/* HARDWARE */
.hw-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--grey-2);
    border-radius: 14px;
    margin-bottom: 12px;
    transition: 0.25s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.hw-item:hover {
    border-color: rgba(184, 144, 42, 0.25);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.hw-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--gold-pale);
    border: 1px solid rgba(184, 144, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hw-item strong {
    color: var(--text-dark);
    font-size: 0.92rem;
    display: block;
    margin-bottom: 2px;
}

.hw-item p {
    color: var(--text-muted);
    font-size: 0.84rem;
    margin: 0;
}

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2c3244 100%);
    border-radius: 24px;
    padding: 60px 52px;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 144, 42, 0.14) 0%, transparent 70%);
}

.cta-banner .section-eyebrow {
    color: var(--gold-light);
}

.cta-banner h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 14px;
    color: var(--white);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 34px;
}

.btn-white {
    background: var(--white);
    color: var(--text-dark) !important;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 30px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    text-decoration: none !important;
}

.btn-white:hover {
    background: var(--gold-pale);
}

.btn-outline-white {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    text-decoration: none !important;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}


.module-img img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}



/* Hide sidebar elements on desktop */
@media (min-width: 992px) {

    .mobile-sidebar,
    .mobile-sidebar-overlay,
    .mobile-menu-toggle {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .about-hero {
        position: relative;
        min-height: 315px;
        color: #fff;
        z-index: 10;
        background: linear-gradient(135deg, #0041c7 0%, #0037a6 50%, #002f8f 100%);
        margin-top: 73px !important;
    }

}



/* ==========================================
           CROSSOVER PRODUCTS REDESIGN STYLES
        ========================================== */
        .crossover-products-section {
            padding: 100px 0;
            background: #fafcff;
            position: relative;
            overflow: hidden;
            font-family: 'Inter', sans-serif;
        }

        /* Background grid patterns */
        .crossover-products-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background-image: radial-gradient(rgba(0, 82, 204, 0.035) 1.5px, transparent 1.5px);
            background-size: 24px 24px;
            z-index: 1;
            pointer-events: none;
        }

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

        /* Center badges and titles */
        .crossover-section-badge {
            display: inline-block;
            padding: 6px 18px;
            background: rgba(0, 82, 204, 0.08);
            color: #0052cc;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 30px;
            margin-bottom: 20px;
        }

        .crossover-section-title {
            font-size: 42px;
            font-weight: 800;
            color: #0b1a30;
            line-height: 1.25;
            margin-bottom: 16px;
            letter-spacing: -0.8px;
        }

        .crossover-section-subtitle {
            font-size: 17px;
            color: #5a6b82;
            max-width: 760px;
            margin: 0 auto 45px auto;
            line-height: 1.6;
        }

        /* Beautiful Rounded Tab Bar */
             .product-tab-container {
            max-width: 1050px;
            margin: 0 auto 40px auto;
        }

        .product-tab-bar {
            display: flex;
            justify-content: space-between;
            background: #ffffff;
            border: 1px solid rgba(226, 232, 240, 0.9);
            box-shadow: 0 10px 30px rgba(0, 82, 204, 0.03);
            border-radius: 15px;
            padding: 8px;
            width: 100%;
        }

        .product-tab-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 14px 24px;
            background: transparent;
            border: none;
            outline: none !important;
            font-size: 14px;
            font-weight: 600;
            color: #4a5568;
            border-radius: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            white-space: nowrap;
        }

        .product-tab-btn i {
            font-size: 17px;
            transition: transform 0.3s ease;
        }

        .product-tab-btn:hover {
            color: #0052cc;
        }

        .product-tab-btn:hover i {
            transform: translateY(-2px);
        }

        .product-tab-btn.active {
            background: #0052cc;
            color: #ffffff;
            box-shadow: 0 8px 20px rgba(0, 82, 204, 0.25);
        }

        /* Main Content Card */
        .product-content-card {
            background: #f4f8fd;
            border: 1px solid rgba(0, 82, 204, 0.08);
            box-shadow: 0 15px 45px rgba(0, 82, 204, 0.04);
            border-radius: 32px;
            padding: 50px;
            position: relative;
            min-height: 520px;
        }

        .product-tab-panel {
            display: none;
        }

        .product-tab-panel.active {
            display: block;
            animation: fadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Left side styling */
        .product-detail-badge {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(0, 82, 204, 0.06);
            color: #0052cc;
            font-weight: 600;
            font-size: 12px;
            border-radius: 30px;
            margin-bottom: 20px;
        }

        .product-detail-title {
            font-size: 34px;
            font-weight: 800;
            color: #0b1a30;
            line-height: 1.25;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

              .product-detail-desc {
            font-size: 15.5px;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 24px;
        }

        /* Custom Checklist with Circular Checkmarks */
        .product-checklist ul {
            list-style: none;
            padding-left: 30px;
            margin: 0 0 35px 0;
        }

        .product-checklist li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-size: 17.3px;
            color: var(--text-muted);
            margin-bottom: 14px;
            position:relative;
        }

        .product-checklist li:before {
            position: absolute;
            left: -34px;
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900; 
            width: 20px;
            height: 20px;
            background: transparent;
            color: #0052cc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            margin-top: 2px;
            flex-shrink: 0;
            border: 1px solid #0052cc;
        }

        /* Action buttons */
        .product-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 30px;
        }

        .product-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: #0052cc;
            color: #ffffff !important;
            font-weight: 600;
            font-size: 14.5px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0, 82, 204, 0.18);
            transition: all 0.3s ease;
            border: none;
            text-decoration: none !important;
        }

        .product-btn-primary:hover {
            background: #0043a4;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 82, 204, 0.28);
        }

        .product-btn-primary i {
            transition: transform 0.3s ease;
        }

        .product-btn-primary:hover i {
            transform: translateX(4px);
        }

        .product-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 13px 26px;
            background: #ffffff;
            border: 1px solid rgba(0, 82, 204, 0.2);
            color: #0052cc !important;
            font-weight: 600;
            font-size: 14.5px;
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 82, 204, 0.02);
            text-decoration: none !important;
        }

        .product-btn-secondary:hover {
            background: rgba(0, 82, 204, 0.04);
            border-color: #0052cc;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 82, 204, 0.08);
        }

        /* ==========================================
           CSS MOCKUP SYSTEM (Laptop & Phone)
        ========================================== */
        .mockup-wrapper {
            position: relative;
            width: 575px;
            height: 100%;
            display: flex;
            
        }
        
        .mockup-wrapper img{
            height:100%;
            width:100%;
        }

       

        /* ==========================================
           BOTTOM FEATURES FOOTER
        ========================================== */
        .product-features-footer {
            border-top: 1px solid rgba(0, 82, 204, 0.08);
            margin-top: 40px;
            padding-top: 30px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .feat-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .feat-icon-box {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(0, 82, 204, 0.05);
            color: #0052cc;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 82, 204, 0.03);
        }

        .feat-item:hover .feat-icon-box {
            background: #0052cc;
            color: #ffffff;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 15px rgba(0, 82, 204, 0.2);
        }

        .feat-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .feat-name {
            font-size: 13.5px;
            font-weight: 700;
            color: #0b1a30;
        }

        .feat-desc {
            font-size: 11px;
            color: #64748b;
            line-height: 1.35;
        }

        /* ==========================================
           RESPONSIVENESS & MEDIA QUERIES
        ========================================== */
        @media (max-width: 1200px) {
            .product-content-card {
                padding: 40px;
            }
            .product-features-footer {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }
        }

        @media (max-width: 991px) {
            .crossover-section-title {
                font-size: 34px;
            }
            .product-tab-bar {
                flex-wrap: wrap;
                border-radius: 20px;
                padding: 8px;
            }
            .product-tab-btn {
                flex: 0 0 50%;
                border-radius: 12px;
                padding: 10px 15px;
            }
            .product-tab-btn.active {
                border-radius: 12px;
            }
            .product-content-card {
                padding: 30px;
            }
            .mockup-wrapper {
                margin-top: 40px;
                min-height: 320px;
            }
            .mockup-laptop {
                width: 78%;
                transform: translateX(-20px);
            }
            .mockup-phone {
                width: 28%;
            }
            .product-features-footer {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .product-tab-btn {
                flex: 0 0 100%;
            }
            .product-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .product-btn-primary, .product-btn-secondary {
                justify-content: center;
            }
            .product-features-footer {
                grid-template-columns: 1fr;
            }
            .mockup-wrapper {
                min-height: 260px;
            }
        }



    .stats-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap:10px;
        overflow: hidden;
        flex-wrap: nowrap;
        width: 100%;
    }
 
      .stat-items {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px;
        flex: 1;
        background: #fff;
        border-radius: 10px;
        position: relative;
    }

 
    .stat-icon.blue {
      color: #185FA5;
    }
 
    .stat-icon.teal {
      color: #0F6E56;
    }
 
    .stat-icon.green {
      color: #e08107;
    }
 
    .stat-icon.purple {
      color: #534AB7;
    }
 
    .stat-icon i {
      font-size: 20px;
    }
 
    .stat-value {
      font-size: 17px;
      font-weight: 600;
      color: #111827;
      margin: 0 0 2px;
      line-height: 1.2;
    }
 
    .stat-label {
      font-size: 12px;
      color: #6b7280;
      margin: 0;
      line-height: 1.3;
    }
 
    @media (max-width: 480px) {
      .stat-items:not(:last-child)::after {
        display: none;
      }
      .stat-items {
        border-bottom: 1px solid #e5e7eb;
      }
      .stat-items:last-child {
        border-bottom: none;
      }
    }

