﻿html[dir="ltr"] body {
    font-family: 'Ubuntu', system-ui, sans-serif !important;
}

html[dir="rtl"] body {
    font-family: 'Tajawal', system-ui, sans-serif !important;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../Fonts/Ubuntu-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../Fonts/Tajawal-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root {
    --asc-purple: #513080;
    --asc-green: #308b4a;
    --asc-white: #ffffff;
    --asc-border: rgba(81, 48, 128, 0.18);
    --asc-text-muted: rgba(0, 0, 0, 0.65);
}

.asc-header {
    position: relative;
    z-index: 1000;
}

.asc-navbar {
    background: var(--asc-white);
    border-bottom: 1px solid transparent;
    transition: border-color 200ms ease, box-shadow 200ms ease;
    padding-top: 18px;
    padding-bottom: 18px;
}

    .asc-navbar.asc-navbar-scrolled {
        border-bottom-color: var(--asc-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

.asc-logo {
    height: 34px;
    width: auto;
    display: block;
}

.asc-link {
    color: var(--asc-purple) !important;
    font-weight: 600;
    padding-left: 14px !important;
    padding-right: 14px !important;
    position: relative;
    transition: color 150ms ease;
}

    .asc-link:hover,
    .asc-link:focus {
        color: var(--asc-green) !important;
    }

    .asc-link::after {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 6px;
        height: 2px;
        background: var(--asc-green);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 160ms ease;
    }

    .asc-link:hover::after,
    .asc-link:focus::after,
    .asc-link.active::after {
        transform: scaleX(1);
    }

.asc-lang-wrap {
    margin-left: 8px;
}

.asc-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(81, 48, 128, 0.22);
    background: var(--asc-white);
    color: var(--asc-purple);
    text-decoration: none;
    font-weight: 700;
    transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

    .asc-lang-btn:hover,
    .asc-lang-btn:focus {
        border-color: rgba(48, 139, 74, 0.35);
        color: var(--asc-green);
        background: rgba(48, 139, 74, 0.06);
    }

.asc-main {
    min-height: 60vh;
}

/* =========================
   Footer – Refined Design
   ========================= */

/* Footer */
.asc-footer {
    background: #15151f; /* UPDATED */
    color: rgba(255, 255, 255, 0.82);
    padding-top: 50px;
    padding-bottom: 28px;
}


    /* Subtle top divider glow */
    .asc-footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 160px;
        height: 3px;
        background: linear-gradient(90deg, #513080, #308b4a);
        border-radius: 6px;
        opacity: 0.8;
    }

/* Logo */
.asc-footer-logo {
    height: 32px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* Text */
.asc-footer-text {
    margin-top: 16px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    font-size: 14px;
}

/* Section titles */
.asc-footer-title {
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 16px;
    font-size: 15px;
    letter-spacing: 0.4px;
}

/* Links */
.asc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .asc-footer-links li {
        margin-bottom: 12px;
    }

    .asc-footer-links a {
        color: rgba(255, 255, 255, 0.68);
        text-decoration: none;
        font-size: 14px;
        position: relative;
        transition: color 150ms ease;
    }

        /* Underline animation */
        .asc-footer-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 0;
            height: 1px;
            background: #308b4a;
            transition: width 180ms ease;
        }

        .asc-footer-links a:hover,
        .asc-footer-links a:focus {
            color: #ffffff;
        }

            .asc-footer-links a:hover::after,
            .asc-footer-links a:focus::after {
                width: 100%;
            }

/* Footer CTA */
.asc-footer-cta {
    display: inline-block;
    background: linear-gradient( 135deg, #308b4a 0%, #256b3a 100% );
    color: #ffffff;
    font-weight: 800;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(48, 139, 74, 0.35);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

    .asc-footer-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 36px rgba(48, 139, 74, 0.45);
        color: #ffffff;
    }

/* Divider */
.asc-footer-hr {
    border-color: rgba(255, 255, 255, 0.10);
    margin-top: 36px;
    margin-bottom: 22px;
}

/* Legal */
.asc-footer-legal {
    font-size: 13px;
}

    .asc-footer-legal a {
        color: rgba(255, 255, 255, 0.68);
        text-decoration: none;
        transition: color 150ms ease;
    }

        .asc-footer-legal a:hover,
        .asc-footer-legal a:focus {
            color: #ffffff;
        }

/* Dot separator */
.asc-dot {
    margin-left: 10px;
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.30);
}

/* Muted text */
.asc-muted {
    color: rgba(255, 255, 255, 0.55);
}

/* Responsive polish */
@media (max-width: 991px) {
    .asc-footer {
        padding-top: 56px;
    }

    .asc-footer-title {
        margin-top: 22px;
    }
}


/* Hero Section with Background Image */

.asc-hero {
    position: relative;
    min-height: 85vh;
    background-image: url("../images/bg2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.asc-hero-overlay {
    min-height: 85vh;
    background: rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 90px;
}

.asc-hero-title {
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.6px;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.asc-hero-desc {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    color: #513080;
    max-width: 560px;
    margin-bottom: 28px;
    text-align: justify;
}

.asc-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

/* Primary */
.asc-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #308b4a 0%, #2a7a41 100%);
    color: #ffffff;
    padding: 18px 42px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.4px;
    border-radius: 14px;
    border: none;
    box-shadow: 0 10px 24px rgba(48, 139, 74, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

    .asc-btn-primary:hover,
    .asc-btn-primary:focus {
        background: linear-gradient(135deg, #2f8a4c 0%, #256b3a 100%);
        transform: translateY(-2px);
        box-shadow: 0 14px 34px rgba(48, 139, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22);
        color: #ffffff;
        text-decoration: none;
    }

    .asc-btn-primary:active {
        transform: translateY(0);
        box-shadow: 0 8px 18px rgba(48, 139, 74, 0.35);
    }

/* Wide primary */
.asc-btn-wide {
    min-width: 260px;
}

/* Secondary */
/* Secondary Hero Button – Improved Contrast */

.asc-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: #513080;
    border: 2px solid #513080;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

    /* Hover */
    .asc-btn-secondary:hover,
    .asc-btn-secondary:focus {
        background: #513080;
        color: #ffffff;
        border-color: #513080;
        transform: translateY(-1px);
        text-decoration: none;
    }

/* Hero Logo */
.asc-hero-logo-wrap {
    margin-top: 10px;
}

.asc-hero-logo {
    max-width: 360px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.22));
}

/* Mini logos */
.asc-hero-mini-logos {
    margin-top: 22px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.asc-mini-logo {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Bigger ZATCA, but sane */
.asc-mini-logo-zatca {
    height: 100px;
}

@media (max-width: 991px) {
    .asc-hero {
        min-height: auto;
    }

    .asc-hero-overlay {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 70px;
        text-align: center;
    }

    .asc-hero-title {
        font-size: 36px;
    }

    .asc-hero-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .asc-hero-actions {
        justify-content: center;
    }

    .asc-btn-wide {
        max-width: 380px;
    }

    .asc-btn-primary,
    .asc-btn-secondary {
        width: 100%;
        max-width: 340px;
    }

    .asc-hero-logo {
        max-width: 280px;
        margin-top: 24px;
    }

    .asc-hero-mini-logos {
        justify-content: center;
    }

    .asc-mini-logo {
        height: 34px;
    }

    .asc-mini-logo-zatca {
        height: 44px;
    }
}

@media (max-width: 991px) {
    .asc-hero-actions {
        flex-direction: column;
        justify-content: center;
    }

    .asc-btn-primary,
    .asc-btn-secondary {
        width: 100%;
        max-width: 340px;
    }
}
/* =========================
   About Us Section
   ========================= */


.asc-about {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    background-image: radial-gradient(rgba(81, 48, 128, 0.08) 0.6px, transparent 0.6px), radial-gradient(rgba(48, 139, 74, 0.06) 0.6px, #ffffff 0.6px);
    background-size: 22px 22px;
    background-position: 0 0, 11px 11px;
}

    .asc-about .container {
        position: relative;
        z-index: 2;
    }

.asc-section-tag {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #308b4a;
}

.asc-about-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    color: #513080;
    margin-bottom: 20px;
}

.asc-about-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(15, 23, 42, 0.78);
    margin-bottom: 18px;
    text-align: justify;
}

/* CTA spacing */
.asc-about .asc-btn-secondary {
    margin-top: 6px;
}

/* Highlights row */
.asc-about-highlights-row {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Highlight cards */
.asc-highlight-box {
    background: #f8f7fb;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(81, 48, 128, 0.12);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

    .asc-highlight-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    }

/* Icons */
.asc-highlight-icon {
    font-size: 28px;
    color: #308b4a;
    margin-bottom: 14px;
    display: inline-block;
}

/* Card titles */
.asc-highlight-box h3 {
    font-size: 18px;
    font-weight: 800;
    color: #513080;
    margin-bottom: 8px;
}

/* Card text */
.asc-highlight-box p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(15, 23, 42, 0.72);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .asc-about {
        padding: 70px 0;
    }

    .asc-about-title {
        font-size: 32px;
    }

    .asc-about-highlights-row {
        grid-template-columns: 1fr;
        margin-top: 26px;
    }
}

.asc-highlight-box {
    text-align: center;
    padding: 34px 24px;
}

    .asc-highlight-box h3 {
        margin-bottom: 0;
    }

/* =========================
   Services Section
   ========================= */


.asc-services {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #f6f5fb;
    background-image: radial-gradient(rgba(81, 48, 128, 0.35) 0.6px, transparent 0.6px), radial-gradient(rgba(48, 139, 74, 0.25) 0.6px, #f6f5fb 0.6px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}


    /* Diagonal decorative lines */
    .asc-services::before {
        content: "";
        position: absolute;
        top: -70px;
        left: -140px;
        width: 120%;
        height: 160px;
        background: linear-gradient( 120deg, transparent 0%, rgba(81, 48, 128, 0.12) 50%, transparent 100% );
        pointer-events: none;
    }

    .asc-services::after {
        content: "";
        position: absolute;
        bottom: -70px;
        right: -140px;
        width: 120%;
        height: 160px;
        background: linear-gradient( 120deg, transparent 0%, rgba(48, 139, 74, 0.12) 50%, transparent 100% );
        pointer-events: none;
    }

    /* Keep content above background lines */
    .asc-services .container,
    .asc-services-grid {
        position: relative;
        z-index: 2;
    }

/* Section title */
.asc-services-title {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
    color: #513080;
    margin-bottom: 52px;
}

/* Services grid */
.asc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Service card */
.asc-service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 28px;
    text-align: center;
    border: 1px solid rgba(81, 48, 128, 0.12);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

    .asc-service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 46px rgba(0, 0, 0, 0.12);
    }

/* Service icon */
.asc-service-icon {
    font-size: 34px;
    color: #308b4a;
    margin-bottom: 18px;
    display: inline-block;
}

/* Service title */
.asc-service-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #513080;
    margin-bottom: 0;
    line-height: 1.4;
}

/* CTA under services */
.asc-services-cta {
    margin-top: 56px;
    text-align: center;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 991px) {
    .asc-services {
        padding: 70px 0;
    }

    .asc-services-title {
        font-size: 30px;
        margin-bottom: 36px;
    }

    .asc-services-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   Products Section
   ========================= */

.asc-products {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    background-image: radial-gradient(rgba(81, 48, 128, 0.08) 0.6px, transparent 0.6px), radial-gradient(rgba(48, 139, 74, 0.06) 0.6px, #ffffff 0.6px);
    background-size: 22px 22px;
    background-position: 0 0, 11px 11px;
}

    .asc-products .container {
        position: relative;
        z-index: 2;
    }

.asc-products-title {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
    color: #513080;
    margin-bottom: 52px;
}

/* Grid */
.asc-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Card */
.asc-product-card {
    text-decoration: none;
    background: #ffffff;
    border-radius: 18px;
    padding: 34px 26px;
    text-align: center;
    border: 1px solid rgba(81, 48, 128, 0.12);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

    .asc-product-card:hover,
    .asc-product-card:focus {
        transform: translateY(-6px);
        box-shadow: 0 22px 46px rgba(0, 0, 0, 0.12);
        border-color: rgba(48, 139, 74, 0.35);
    }

/* Icon */
.asc-product-icon {
    font-size: 34px;
    color: #308b4a;
    margin-bottom: 16px;
    display: inline-block;
}

/* Title */
.asc-product-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #513080;
    margin-bottom: 0;
    line-height: 1.4;
}

.asc-products-cta {
    margin-top: 56px;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .asc-products {
        padding: 70px 0;
    }

    .asc-products-title {
        font-size: 30px;
        margin-bottom: 36px;
    }

    .asc-products-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   Software Features Section
   ========================= */

.asc-features {
    padding: 100px 0;
    position: relative;
    background-color: #f9f9fc;
    background-image: radial-gradient(rgba(81, 48, 128, 0.06) 0.6px, transparent 0.6px), radial-gradient(rgba(48, 139, 74, 0.05) 0.6px, #f9f9fc 0.6px);
    background-size: 22px 22px;
    background-position: 0 0, 11px 11px;
}

    .asc-features .container {
        position: relative;
        z-index: 2;
    }

.asc-features-title {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
    color: #513080;
    margin-bottom: 52px;
}

/* Grid */
.asc-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* Feature card */
.asc-feature-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 34px 24px;
    text-align: center;
    border: 1px solid rgba(81, 48, 128, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

    .asc-feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.10);
    }

/* Icon */
.asc-feature-icon {
    font-size: 30px;
    color: #308b4a;
    margin-bottom: 14px;
    display: inline-block;
}

/* Title */
.asc-feature-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #513080;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .asc-features {
        padding: 70px 0;
    }

    .asc-features-title {
        font-size: 30px;
        margin-bottom: 36px;
    }

    .asc-features-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   Clients Section
   ========================= */

.asc-clients {
    padding: 90px 0;
    background-color: #ffffff;
}

.asc-clients-title {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
    color: #513080;
    margin-bottom: 50px;
}

/* Carousel container */
.asc-clients-carousel {
    max-width: 100%;
}

/* Logos row */
.asc-clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 20px 0;
}

    /* Individual logos */
    .asc-clients-logos img {
        max-height: 60px;
        width: auto;
        opacity: 0.85;
        filter: grayscale(100%);
        transition: opacity 160ms ease, filter 160ms ease, transform 160ms ease;
    }

        .asc-clients-logos img:hover {
            opacity: 1;
            filter: grayscale(0%);
            transform: scale(1.05);
        }

/* Responsive */
@media (max-width: 991px) {
    .asc-clients {
        padding: 70px 0;
    }

    .asc-clients-title {
        font-size: 30px;
        margin-bottom: 36px;
    }

    .asc-clients-logos {
        gap: 28px;
    }

        .asc-clients-logos img {
            max-height: 46px;
        }
}
/* =========================
   Contact Info Section
   ========================= */


.asc-contact-info {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    /* Soft brand-tinted background */
    background-color: #f3f1fa;
    background-image: radial-gradient(rgba(81, 48, 128, 0.10) 0.6px, transparent 0.6px), radial-gradient(rgba(48, 139, 74, 0.08) 0.6px, #f3f1fa 0.6px);
    background-size: 22px 22px;
    background-position: 0 0, 11px 11px;
}


    .asc-contact-info .container {
        position: relative;
        z-index: 2;
    }

.asc-contact-title {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
    color: #513080;
    margin-bottom: 50px;
}

/* Grid */
.asc-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Card */
.asc-contact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 34px 26px;
    text-align: center;
    border: 1px solid rgba(81, 48, 128, 0.12);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

    .asc-contact-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 46px rgba(0, 0, 0, 0.12);
    }

/* Icon */
.asc-contact-icon {
    font-size: 32px;
    color: #308b4a;
    margin-bottom: 14px;
    display: inline-block;
}

/* Title */
.asc-contact-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #513080;
    margin-bottom: 8px;
}

/* Text */
.asc-contact-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(15, 23, 42, 0.72);
}

/* Links */
.asc-contact-link {
    color: rgba(15, 23, 42, 0.78);
    text-decoration: none;
    font-weight: 700;
}

    .asc-contact-link:hover {
        color: #308b4a;
        text-decoration: underline;
    }

/* Responsive */
@media (max-width: 991px) {
    .asc-contact-info {
        padding: 70px 0;
    }

    .asc-contact-title {
        font-size: 30px;
        margin-bottom: 36px;
    }

    .asc-contact-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   Floating Action Buttons – Refined Style
   ========================= */

.asc-float-btn {
    position: fixed;
    width: 48px;
    height: 48px;
    border-radius: 10px; /* NOT circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, opacity 160ms ease;
    z-index: 9999;
}

/* Scroll To Top – Bottom Right */
.asc-scroll-top {
    bottom: 28px;
    right: 28px;
    background: linear-gradient( 135deg, #513080 0%, #3b245f 100% );
    opacity: 0;
    pointer-events: none;
}

/* WhatsApp – Bottom Left */
.asc-whatsapp {
    bottom: 28px;
    left: 28px;
    background: linear-gradient( 135deg, #25D366 0%, #1fb857 100% );
}

/* Hover */
.asc-float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* Show scroll button */
.asc-scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile tuning */
@media (max-width: 767px) {
    .asc-float-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
        border-radius: 12px;
    }

    .asc-scroll-top {
        right: 18px;
        bottom: 18px;
    }

    .asc-whatsapp {
        left: 18px;
        bottom: 18px;
    }
}
/* =========================
   About Us Page Design
   ========================= */

/* Page hero */
.asc-page-hero {
    position: relative;
    min-height: 46vh;
    background-image: url("../images/bg2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.asc-page-hero-overlay {
    min-height: 46vh;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    padding: 120px 0 70px;
}

.asc-page-hero-title {
    font-size: 46px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.asc-page-hero-subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.90);
    margin: 0 auto;
    max-width: 860px;
}

/* About layout section */
.asc-about-layout {
    padding: 90px 0 70px;
    background-color: #ffffff;
    background-image: radial-gradient(rgba(81, 48, 128, 0.07) 0.6px, transparent 0.6px), radial-gradient(rgba(48, 139, 74, 0.05) 0.6px, #ffffff 0.6px);
    background-size: 22px 22px;
    background-position: 0 0, 11px 11px;
}

.asc-about-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(81, 48, 128, 0.12);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.asc-about-card-head {
    padding: 34px 34px 0;
}

.asc-about-h2 {
    font-size: 34px;
    font-weight: 900;
    color: #513080;
    line-height: 1.2;
    margin-bottom: 14px;
}

.asc-about-card-body {
    padding: 0 34px 34px;
}

.asc-about-paragraph {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(15, 23, 42, 0.78);
    margin-bottom: 16px;
    text-align: justify;
}

/* Quick facts */
.asc-facts-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.asc-fact {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(81, 48, 128, 0.10);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    padding: 18px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.asc-fact-icon {
    font-size: 24px;
    color: #308b4a;
}

.asc-fact-title {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(81, 48, 128, 0.70);
}

.asc-fact-value {
    font-size: 15px;
    font-weight: 900;
    color: #513080;
}

/* Vision mission */
.asc-vm {
    padding: 90px 0;
    background-color: #f3f1fa;
}

.asc-vm-title {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 900;
    color: #513080;
    margin-bottom: 52px;
}

.asc-vm-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 32px;
    border: 1px solid rgba(81, 48, 128, 0.12);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.asc-vm-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(48, 139, 74, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

    .asc-vm-icon i {
        font-size: 22px;
        color: #308b4a;
    }

.asc-vm-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: #513080;
    margin-bottom: 10px;
}

.asc-vm-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(15, 23, 42, 0.75);
    margin: 0;
}

/* Values */
.asc-values {
    padding: 90px 0;
    background: #ffffff;
}

.asc-values-title {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 900;
    color: #513080;
    margin-bottom: 52px;
}

.asc-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.asc-value-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(81, 48, 128, 0.12);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    padding: 34px 26px;
    text-align: center;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

    .asc-value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
    }

.asc-value-icon {
    font-size: 32px;
    color: #308b4a;
    margin-bottom: 14px;
    display: inline-block;
}

.asc-value-card h3 {
    font-size: 18px;
    font-weight: 900;
    color: #513080;
    margin-bottom: 8px;
}

.asc-value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(15, 23, 42, 0.70);
    margin: 0;
}

/* CTA strip */
.asc-about-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(81, 48, 128, 0.10), rgba(48, 139, 74, 0.08));
}

    .asc-about-cta h2 {
        font-size: 30px;
        font-weight: 900;
        color: #513080;
        margin-bottom: 10px;
    }

    .asc-about-cta p {
        font-size: 16px;
        line-height: 1.8;
        color: rgba(15, 23, 42, 0.72);
        margin: 0;
    }

.asc-btn-cta {
    padding: 18px 36px;
    border-radius: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .asc-page-hero-overlay {
        padding: 105px 0 60px;
    }

    .asc-page-hero-title {
        font-size: 34px;
    }

    .asc-about-h2 {
        font-size: 28px;
    }

    .asc-about-paragraph {
        text-align: center;
    }

    .asc-facts-grid {
        grid-template-columns: 1fr;
    }

    .asc-values-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   Services Page Design
   ========================= */

.asc-page-hero-services {
    background-image: url("../images/bg2.jpg");
}

/* Main services section */
.asc-services-page {
    padding: 90px 0;
    background-color: #ffffff;
    background-image: radial-gradient(rgba(81, 48, 128, 0.07) 0.6px, transparent 0.6px), radial-gradient(rgba(48, 139, 74, 0.05) 0.6px, #ffffff 0.6px);
    background-size: 22px 22px;
    background-position: 0 0, 11px 11px;
}

.asc-services-page-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(81, 48, 128, 0.12);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.asc-services-page-head {
    padding: 34px 34px 10px;
    text-align: center;
}

.asc-services-page-h2 {
    font-size: 34px;
    font-weight: 900;
    color: #513080;
    line-height: 1.2;
    margin-bottom: 12px;
}

.asc-services-page-lead {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(15, 23, 42, 0.75);
    margin: 0 auto;
    max-width: 860px;
}

/* Services grid with descriptions */
.asc-services-detail-grid {
    padding: 24px 34px 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.asc-service-detail-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(81, 48, 128, 0.12);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    padding: 30px 24px;
    text-align: left;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

    .asc-service-detail-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
    }

/* Icon */
.asc-service-detail-icon {
    font-size: 30px;
    color: #308b4a;
    margin-bottom: 12px;
    display: block; /* key change */
    text-align: center; /* center inside container */
}

/* Title */
.asc-service-detail-card h3 {
    font-size: 18px;
    font-weight: 900;
    color: #513080;
    margin-bottom: 10px;
    text-align: center;
}

/* Description */
.asc-service-detail-card p {
    font-size: 14px;
    text-align: center;
    line-height: 1.75;
    color: rgba(15, 23, 42, 0.72);
    margin: 0;
}

/* CTA buttons row */
.asc-services-page-cta {
    padding: 0 34px 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 991px) {
    .asc-services-page {
        padding: 70px 0;
    }

    .asc-services-page-h2 {
        font-size: 28px;
    }

    .asc-services-detail-grid {
        grid-template-columns: 1fr;
        padding: 18px 22px 28px;
    }

    .asc-services-page-cta {
        padding: 0 22px 28px;
    }

    .asc-service-detail-card {
        text-align: center;
    }
}
/* =========================
   Products Page Design (Services.aspx content)
   ========================= */

.asc-page-hero-products {
    background-image: url("../images/bg2.jpg");
}

.asc-products-page {
    padding: 90px 0;
    background-color: #ffffff;
    background-image: radial-gradient(rgba(81, 48, 128, 0.07) 0.6px, transparent 0.6px), radial-gradient(rgba(48, 139, 74, 0.05) 0.6px, #ffffff 0.6px);
    background-size: 22px 22px;
    background-position: 0 0, 11px 11px;
}

.asc-products-page-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(81, 48, 128, 0.12);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.asc-products-page-head {
    padding: 34px 34px 10px;
    text-align: center;
}

.asc-products-page-h2 {
    font-size: 34px;
    font-weight: 900;
    color: #513080;
    line-height: 1.2;
    margin-bottom: 12px;
}

.asc-products-page-lead {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(15, 23, 42, 0.75);
    margin: 0 auto;
    max-width: 860px;
}

/* Grid with descriptions */
.asc-products-detail-grid {
    padding: 24px 34px 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.asc-product-detail-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(81, 48, 128, 0.12);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    padding: 30px 24px;
    text-align: left;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

    .asc-product-detail-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
    }

/* Icon */
.asc-product-detail-icon {
    font-size: 30px;
    color: #308b4a;
    margin-bottom: 12px;
    display: block; /* key change */
    text-align: center; /* center inside container */
}

/* Title */
.asc-product-detail-card h3 {
    font-size: 18px;
    font-weight: 900;
    color: #513080;
    margin-bottom: 10px;
    text-align:center;
}

/* Description */
.asc-product-detail-card p {
    font-size: 14px;
    text-align: center;
    line-height: 1.75;
    color: rgba(15, 23, 42, 0.72);
    margin: 0;
}

/* CTA buttons row */
.asc-products-page-cta {
    padding: 0 34px 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 991px) {
    .asc-products-page {
        padding: 70px 0;
    }

    .asc-products-page-h2 {
        font-size: 28px;
    }

    .asc-products-detail-grid {
        grid-template-columns: 1fr;
        padding: 18px 22px 28px;
    }

    .asc-products-page-cta {
        padding: 0 22px 28px;
    }

    .asc-product-detail-card {
        text-align: center;
    }
}
/* =========================
   Contact Page Design
   ========================= */

.asc-page-hero-contact {
    background-image: url("../images/bg2.jpg");
}

/* Contact info section */
.asc-contact-page {
    padding: 90px 0;
    background-color: #f3f1fa;
    background-image: radial-gradient(rgba(81, 48, 128, 0.10) 0.6px, transparent 0.6px), radial-gradient(rgba(48, 139, 74, 0.08) 0.6px, #f3f1fa 0.6px);
    background-size: 22px 22px;
    background-position: 0 0, 11px 11px;
}

.asc-contact-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.asc-contact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(81, 48, 128, 0.12);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

    .asc-contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
    }

/* Icon */
.asc-contact-icon {
    font-size: 32px;
    color: #308b4a;
    margin-bottom: 14px;
    display: inline-block;
}

/* Title */
.asc-contact-card h3 {
    font-size: 18px;
    font-weight: 900;
    color: #513080;
    margin-bottom: 8px;
}

/* Text */
.asc-contact-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(15, 23, 42, 0.72);
}

/* Links */
.asc-contact-link {
    color: rgba(15, 23, 42, 0.78);
    text-decoration: none;
    font-weight: 700;
}

    .asc-contact-link:hover {
        color: #308b4a;
        text-decoration: underline;
    }

/* =========================
   Contact Page – Embedded Map
   ========================= */

.asc-contact-map {
    margin-top: 36px;
    width: 100%;
    height: 360px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(81, 48, 128, 0.12);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

    .asc-contact-map iframe {
        width: 100%;
        height: 100%;
        filter: grayscale(15%);
    }

/* Responsive */
@media (max-width: 991px) {
    .asc-contact-map {
        height: 300px;
    }
}


/* Responsive */
@media (max-width: 991px) {
    .asc-contact-page {
        padding: 70px 0;
    }

    .asc-contact-card-wrapper {
        grid-template-columns: 1fr;
    }

    .asc-map-embed {
        height: 340px;
    }
}
