:root {
    --primary-yellow: #ffb606;
    --top-bar-bg: #ffb606;
    --white: #ffffff;
    --black: #000000;
    --menu-font: "Roboto", sans-serif;
    --menu-color: #333333;
    --menu-size: 14px;
    --menu-weight: 400;
    --menu-line-height: 20px;
    --sidebar-bg: #222222;

    --style1: #FE412E;
    --style2: #A6CAFE;
    --style3: #ffb606;
    --style4: #fd9b5c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white);
    min-height: 100vh;
    font-family: var(--menu-font);
    color: var(--menu-color);
    overflow-x: hidden;
}

.heading-span{
    color: var(--style2) !important;
}

/* --- Header Section --- */
.ak-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--white);
    transition: transform 0.7s ease;
}

.ak-header.hide-header {
    transform: translateY(-100%);
}

.top-bar {
    background-color: var(--top-bar-bg);
    padding: 10px 12%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
}

.ak-menu{
    top: 40px !important;
}

.top-info {
    color: var(--black);
    font-weight: 500;
}

.top-info i {
    color: var(--white) !important;
    margin-right: 5px;
}

.top-links {
    display: flex;
    gap: 15px;
}

.top-links a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
}

.main-header-content {
    background: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 0px !important;
    max-width: 1135px !important;
    margin: auto !important;
    position: relative;
}

.logo img {
    height: 140px;
    display: block;
    width: auto;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--menu-color);
    cursor: pointer;
}

/* --- Desktop Navigation --- */
.main-nav {
    display: flex;
    list-style: none;
    gap: 15px;
    position: relative;
    justify-content: center;
    align-items: center;
}

.main-nav>li {
    position: relative;
}

.main-nav>li>a {
    text-decoration: none;
    font-family: "Roboto Slab", serif !important; 
    color: inherit;
    font-size: var(--menu-size);
    font-weight: var(--menu-weight);
    line-height: var(--menu-line-height);
    padding: 15px 0;
    display: inline-block;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}
.main-nav li a{
font-family: "Roboto Slab", serif !important; 
}


.ak-shell .ak-kicker{
    margin-bottom: 8px !important;
}

.ux-submenuu a{
    padding: 8px 12px !important;
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: var(--primary-yellow);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    pointer-events: none;
    left: 0;
    width: 0;
    z-index: 5;
}

.main-nav>li:hover>a {
    border-bottom: 3px solid transparent !important;
    color: var(--primary-yellow);
}

/* --- Dropdown --- */
.dropdown {
    position: absolute !important;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.main-nav li:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    padding: 10px 20px;
    text-decoration: none;
    color: var(--menu-color);
    font-family: inherit;
    font-size: 13px;
    display: block;
}

.dropdown li a:hover {
    color: var(--primary-yellow);
    background-color: var(--white);
}

/* --- Sidebar Mobile --- */
.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--sidebar-bg);
    z-index: 2000;
    transition: 0.4s ease;
    padding: 20px;
}

.sidebar.active {
    left: 0;
}

.close-btn {
    color: #888;
    font-size: 24px;
    cursor: pointer;
    text-align: right;
    margin-bottom: 20px;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    border-bottom: 1px solid #333;
}

.sidebar-nav li a {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    color: var(--white);
    text-decoration: none;
    font-family: inherit;
    font-size: 16px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 1500;
    display: none;
    opacity: 0.5;
}

.overlay.active {
    display: block;
}


/* --- Hero Section --- */
.ak-hero {
    position: relative;
    margin-top: 0px;
    height: 100vh;
    width: 100%;
    margin-top: 100px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ak-hero .bg-image-slot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/images/heroimg.png");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.ak-hero .content-overlay {
    position: relative;
    z-index: 2;
    top: -28px !important;
    padding-left: 20%;
}

.ak-hero .main-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: var(--white);
    margin-bottom: 24px;
}

.ak-hero .sub-text-container {
    font-family: inherit;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    color: var(--black);
}

.ak-hero .sub-text-container p {
    margin-bottom: 8px;
}

.ak-hero .feature-list {
    list-style: none;
}

.ak-hero .feature-list li {
    margin-bottom: 4px;
}

.ak-hero .feature-list li::before {
    content: "– ";
}

/* --- Main Second Section (Content Rows) --- */
.ak-mainsecond {
    max-width: 1170px;
    margin: 65px auto;
    padding: 0 20px;
}

.ak-mainsecond .ak-flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-bottom: 65px;
}

.ak-mainsecond .ak-col {
    flex: 1;
    min-width: 350px;
}

.ak-mainsecond p,
.ak-mainsecond .ak-list li {
    font-family: inherit;
    font-weight: 400;
    font-size: 16.5px;
    line-height: 27px;
    color: var(--black);
    margin-bottom: 20px;
}

.ak-mainsecond .ak-list {
    list-style: none;
    margin-bottom: 35px;
}

.ak-mainsecond .ak-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 7px;
}

.ak-mainsecond .ak-list li::before {
    content: "•";
    color: var(--black);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 22px;
    line-height: 24px;
}

.ak-mainsecond .ak-btn {
    background-color: var(--primary-yellow);
    color: var(--black);
    font-family: inherit;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    text-transform: uppercase;
    transition: filter 0.3s ease;
}

.ak-mainsecond .ak-btn:hover {
    filter: brightness(90%);
}

/* --- Media Frames & Video --- */
.ak-mainsecond .ak-media-frame {
    width: 100%;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ak-mainsecond .ak-media-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.ak-mainsecond .ak-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--black);
}

.ak-mainsecond .ak-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Full Banner Section --- */
.ak-line .ak-full-banner {
    background-color: var(--primary-yellow);
    padding: 70px 0;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ak-line .ak-full-banner h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 33.6px;
    color: var(--white);
    margin: 0;
    letter-spacing: 0.5px;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1100px) {
    .top-bar {
        display: none;
    }

    .main-header-content {
        padding: 10px 5%;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .logo img {
        height: 80px;
    }

    .header-spacer {
        height: 100px;
    }

    .ak-hero {
        margin-top: 120px !important;
    }

    .ak-hero .bg-image-slot {
        background-position: 33% 0% !important;
    }

    .ak-hero .content-overlay {
        padding-left: 0;
        text-align: center;
        width: 100%;
        top: -138px !important;
        left: 35px !important;
    }
}

@media (max-width: 991px) {
    .ak-mainsecond .ak-flex-row {
        flex-direction: column;
        text-align: left;
        gap: 40px;
    }

    .ak-mainsecond .ak-flex-row.reverse-mobile {
        flex-direction: column-reverse;
    }

    .ak-line .ak-full-banner {
        padding: 50px 20px;
    }

    .ak-line .ak-full-banner h3 {
        font-size: 22px;
        line-height: 28px;
    }
}




@media (min-width: 768px) and (max-width: 1024px){
    .ak-hub-quote strong{
        width: 100% !important;
        max-width: 100% !important;
    }
    .ak-hub-quote p{
        width: 100% !important;
        max-width: 100% !important;
    }
    .ak-hub-quote span{
        width: 100% !important;
        max-width: 100% !important;
    }
    .ak-plan-compact-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
@media (max-width: 768px) {

    .ux-paddingres{
        padding: 0px !important;
    }
    .ak-flexres{
        display: flex !important;
        flex-direction: column !important;
    }
    .ux-secresponsive{
        max-width: 100% !important;
        width: 100% !important;
    }
    .ux-secresponsive h1{
        width: 100% !important;
        max-width: 100% !important;
    }
    .ux-secresponsive p{
        width: 100% !important;
        max-width: 100% !important;
    }
    .ak-learning-art img{
        max-width: 200px !important;
        width: 200px !important;
    }
    .ak-market-showcase{
        display: flex !important;
        flex-direction: column !important;
    }
    .ak-market-showcase .ak-shop-path-panel{
        display: none !important;
    }
    .ak-home-product-grid{
        grid-template-columns: repeat(1, minmax(0px, 1fr)) !important;
        width: 100% !important;
    }
    .ak-plan-compact-grid{
        grid-template-columns: repeat(1, minmax(0px, 1fr)) !important;
    }
    .ak-footer p{
        text-align: center !important;
        margin: auto !important;
    }
    .ak-socials{
        justify-content: center !important;
    }
    .ak-creative-showcase{
        display: flex !important;
        flex-direction: column !important;
    }
    .ak-learning-showcase{
        display: flex !important;
        flex-direction: column !important;
    }
    .ak-hero{
        margin-top: 0px !important;
        padding-top: 100px !important;
    }
    .ak-headings {
        font-size: 28px !important;
        margin-bottom: 12px !important;
    }
    .top-bar{
        display: none !important;
    }
    .pg-hero .main-title {
     font-size: 24px !important;
     line-height: 32px !important;
    }
    .ak-hero .main-title {
        font-size: 32px;
        line-height: 40px;
        text-align: left !important;
    }

    .ak-hero .sub-text-container {
        text-align: left !important;
    }

    .ak-hero .feature-list {
        display: inline-block;
        text-align: left;
    }
}



.ak-sldr {
    --hover-overlay: #02010124;
    --arrow-shadow: rgba(0, 0, 0, 0.15);
    background-color: #fff;
    padding: 65px 0;
    overflow-x: hidden;
    position: relative;
}

.ak-sldr .team-section {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 70px;
}



.ak-sldr .slider-wrapper {
    overflow: hidden;
    width: 100%;
    cursor: default;
    touch-action: pan-y;
}

.ak-sldr .slider-track {
    display: flex;
    width: max-content;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Desktop: 3 Slides */
.ak-sldr .card-container {
    width: 353px;
    flex: 0 0 353px;
    padding: 0 10px;
    user-select: none;
}

.ak-sldr .team-card {
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    text-align: center;
    overflow: hidden;
    height: 100%;
}

.ak-sldr .img-box {
    height: 380px;
    width: 100%;
    position: relative;
    background: #000;
    overflow: hidden;
}

.ak-sldr .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay */
.ak-sldr .img-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease;
    pointer-events: none;
}

.ak-sldr .team-card:hover .img-box::after {
    background-color: var(--hover-overlay);
}

.ak-sldr .info-box {
    padding: 25px 15px;
}

.ak-sldr .info-box h5 {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
}

.ak-sldr .info-box p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #848484;
    margin: 0;
}

/* Arrows */
.ak-sldr .nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px var(--arrow-shadow) !important;
    z-index: 10;
    transition: all 0.3s ease;
}

.ak-sldr .nav-btn i {
    color: #000;
    font-size: 1rem;
}

.ak-sldr .nav-btn:hover {
    background-color: var(--primary-yellow);
}

.ak-sldr .nav-btn.prev {
    left: 0px;
}

.ak-sldr .nav-btn.next {
    right: 0px;
}

/* Dots */
.ak-sldr .dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.ak-sldr .dot {
    width: 9px;
    height: 9px;
    background: #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.ak-sldr .dot.active {
    background: var(--primary-yellow);
    transform: scale(1.2);
}

/* Mobile: 2 Slides (50/50) */
@media (max-width: 768px) {
    
    .ak-sldr .nav-btn {
        display: none !important;
    }

    .ak-sldr .team-section {
        padding: 0;
    }

    .ak-sldr .card-container {
        width: 50vw;
        flex: 0 0 50vw;
        padding: 0 5px;
    }

    .ak-sldr .img-box {
        height: 250px;
    }
}





/* Scoped Wrapper */
.ux-testslider.testimonial-wrapper {
    background-image: url('/images/grnbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0px 280px 0px;
    overflow: hidden;
    position: relative;
}

.ux-testslider .custom-container {
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
    z-index: 1;
}

.ux-testslider .section-title {
    text-align: center;
    font-family: "Roboto Slab", serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 44.8px;
    color: #333333;
    margin-bottom: 60px;
}

.ux-testslider .slider-viewport {
    overflow: hidden;
    width: 100%;
}

.ux-testslider #akSliderTrack {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.ux-testslider .card-container {
    width: calc(1170px / 3);
    padding: 0 15px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.ux-testslider .testimonial-card:hover .quote-icon {
    color: #fdb913 !important;
}

.ux-testslider .quote-box {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 4px;
    position: relative;
    min-height: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ux-testslider .quote-box::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 35px;
    border-width: 20px 20px 0 0;
    border-style: solid;
    border-color: #f2f2f2 transparent transparent transparent;
}

.ux-testslider .quote-box p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    color: #000000;
    margin: 0;
    position: relative;
    z-index: 2;
}

.ux-testslider .quote-icon {
    position: absolute;
    font-size: 90px;
    top: 15px;
    right: 25px;
    line-height: 1;
    font-family: Georgia, serif;
    color: #f2f2f2;
    z-index: 1;
    transition: color 0.3s ease;
}

.ux-testslider .author-meta {
    margin-top: 45px;
    padding-left: 15px;
}

.ux-testslider .author-meta h5 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #000000;
    margin-bottom: 2px;
}

.ux-testslider .author-meta p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    color: #000000;
    margin: 0;
}

.ux-testslider .dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.ux-testslider .dot {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.ux-testslider .dot.active {
    background: #fdb913;
}

/* Responsive Logic Scoped */
@media (max-width: 991px) {
    .ux-testslider .card-container {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .ux-testslider .card-container {
        width: 100%;
    }

    .ux-testslider .section-title {
        font-size: 24px;
    }
}



.ak-footer {
    background-color: #ffffff;
    padding-top: 50px;
}

.ak-footer .footer-top {
    padding-bottom: 40px;
}

.ak-footer .footer-logo {
    max-width: 180px;
    height: auto;
}

/* 2nd: Menu Headings CSS */
.ak-footer h4 {
    font-family: "Roboto Slab", serif;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 26px;
    color: #ffb606;
    margin-bottom: 25px;
}

/* 3rd: Menu Items & Contact CSS */
.ak-footer .contact-info p,
.ak-footer .footer-links li a {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
    text-decoration: none !important;
    /* 1st: No underline */
    margin-bottom: 12px;
    display: block;
}

.ak-footer .footer-links {
    list-style: none;
    padding: 0;
}

.ak-footer .footer-links li a:hover {
    color: #ffb606;
}

.hvr-cls:hover {
    color: #ffb606 !important;
    cursor: pointer !important;
}

/* Social Icons Section */
.ak-footer .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.ak-footer .social-icons a {
    text-decoration: none !important;
    /* 1st: No underline for icons */
}

.ak-footer .social-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: white !important;
    font-size: 20px;
    transition: opacity 0.3s;
}

.ak-footer .fb {
    background-color: #3b5998;
}

.ak-footer .ig {
    background-color: #231f20;
}

.ak-footer .yt {
    background-color: #cd201f;
}

.ak-footer .social-btn:hover {
    opacity: 0.8;
}

/* 4th: Footer @2026 Line CSS */
.ak-footer .copyright-bar {
    background-color: #ffb606;
    padding: 15px 0;
    text-align: center;
    color: #ffffff;
    font-family: "Roboto Slab", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .fl-left {
        text-align: left !important;
    }

    .social-icons {
        justify-content: flex-start !important;
    }

    .ak-footer {
        text-align: center;
    }

    .ak-footer .social-icons {
        justify-content: center;
    }

    .ak-footer h4 {
        margin-top: 35px;
    }

    .ak-footer .footer-logo {
        margin-bottom: 20px;
    }
}


.pg-hero {
    position: relative;
    margin-top: 100px;
    height: 35vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0px !important;
}
.ux-allzhero{
        max-width: 1170px !important;
        padding: 0px !important;
}

.pg-hero .bg-image-slot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Pehle gradient (overlay) aur phir image url */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/pghero.png");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.pg-hero .content-overlay {
    position: relative;
    z-index: 2;
    padding-left: 10%;

}

.pg-hero .main-title {
    font-family: "Roboto Slab";
    font-weight: 700;
    font-size: 48px;
    line-height: 62px;
    padding-left: 20px !important;
    color: var(--white);
    margin-bottom: 24px;
    border-left: 4px solid var(--primary-yellow);
}




.pg-hero .breadcrumb-wrapper {
    border-radius: 4px;
    font-size: 14px;
}

.pg-hero .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    padding: 0 10px;
    color: #6c757d;
}

.pg-hero .content-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}




.ux-bcrum {
    max-width: 1170px !important;
   
}

.ux-bcrum .breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px 0px;
    font-family: inherit; 
    font-size: inherit;
    line-height: inherit;
    border-bottom: 1px solid #eee !important;
}

.ux-bcrum .crumb-link {
    color: #444444; 
    font-size: 13px;
    line-height: 25px;
    font-family: Roboto;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ux-bcrum .crumb-link:hover {
    text-decoration: underline;
    color: #334e61;
}

.ux-bcrum .crumb-separator {
    display: inline-flex;
    align-items: center;
    color: inherit;
    opacity: 0.7; 
    margin: 0 12px; 
}

.ux-bcrum .crumb-current {
    color: #444444; 
    font-size: 13px;
    line-height: 25px;
    font-family: Roboto;
    font-weight: 400;
}






/* -----------------new ux---------------- */




.ux-headings {
  font-size: 1.15rem;
  font-weight: bold;
  font-family: 'Noto Serif', Georgia, serif;
}

.ux-allbuttons {
  background-color: #FFB703; 
  color: #000000 !important;
  border: none;
  border-radius: 4px;
  padding: 12px 30px !important;
  font-family: Arial, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease-in-out;
  text-decoration: none;
  height: 100%;
}

.ux-allbuttons:hover {
  background-color: #e5a402;
}

.ux-allbuttons .arrow {
  margin-left: 0.5rem;
  font-size: 1.1rem;
}

.ux-allbuttons .btn-arabic {
  font-family: Arial, sans-serif;
  margin-left: 0.25rem;
}



.ux-lhub {
  font-family: 'Noto Serif', Georgia, serif;
  color: #000000;
  background-color: #ffffff;
  padding: 80px 0px !important;
  max-width: 1170px !important;
  margin: 0px auto !important;

}

.ux-lhub .hub-welcome {
  margin-bottom: 2rem;
  font-size: 15px !important;
  line-height: 27px !important;
  color: #000000 !important;
  font-family: Roboto;
}

.ux-lhub .hub-tagline {
  font-size: 15px !important;
  line-height: 27px !important;
  color: #000000 !important;
  font-family: Roboto;
  margin-bottom: 1rem;
}

.ux-lhub .arabic-text {
    font-size: 15px !important;
  line-height: 27px !important;
  color: #000000 !important;
  font-family: Roboto;
  direction: rtl;
  text-align: left;
  margin-bottom: 0.5rem;
}

.ux-lhub .hadith-translation {
  font-size: 15px !important;
  line-height: 27px !important;
  color: #000000 !important;
  font-family: Roboto;
    margin-bottom: 0.25rem;
}

.ux-lhub .hadith-source {
  font-size: 15px !important;
  line-height: 27px !important;
  color: #000000 !important;
  font-family: Roboto;
    margin-bottom: 0.25rem;
}

.ux-lhub .hadith-details {
  font-size: 15px !important;
  line-height: 27px !important;
  color: #000000 !important;
  font-family: Roboto;
    margin-bottom: 2.5rem;
}

.ux-lhub .resource-intro {
  font-size: 15px !important;
  line-height: 27px !important;
  color: #000000 !important;
  font-family: Roboto;
    margin-bottom: 1.5rem;
}

.ux-lhub .resource-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 3rem;
    font-size: 15px !important;
  line-height: 27px !important;
  color: #000000 !important;
  font-family: Roboto;
}

.ux-lhub .resource-list li {
    font-size: 15px !important;
  line-height: 27px !important;
  color: #000000 !important;
  font-family: Roboto;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.ux-lhub .resource-list li .icon {
  margin-right: 0.75rem;
  flex-shrink: 0;
}




.ux-resoucecard {
  padding: 60px 5px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
}

.ux-resoucecard .img-wrapper {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  width: 100%;
}

.ux-resoucecard .img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.ux-resoucecard .img-main img {
  width: 256px !important;
  object-fit: contain;
}

.ux-resoucecard .card-title {
  font-family: "Roboto Slab";
  color: #FBB03B; 
  font-size: 18px;
  line-height:24px;
  margin-top: auto;
  margin-bottom: 0.7rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.ux-resoucecard .card-heading {
  font-family: "Roboto Slab";
  color: #FBB03B; 
  font-size: 25px;
  line-height:25px;
  margin-top: auto;
  margin-bottom: 0.7rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}


.ux-resoucecard .ux-allbuttons {
  padding: 0.4rem 1rem !important;
  font-size: 16px !important;
  width: auto;
  color: white !important;
  font-family: Roboto;
  min-width: 120px;
  height: auto !important;
}





.ux-t9cards {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ux-t9cards .card-header-block {
  background-color: #FFB703;
  padding: 0.75rem 1rem;
  min-height: 54px;
  display: flex;
  align-items: center;
}

.ux-t9cards .card-header-block .ux-headings {
  color: #ffffff;
  margin: 0;
  font-size: 28px !important;
  font-weight: 700;
  line-height: 23px !important;
  font-family: "Roboto Slab";
}

.ux-t9cards .card-links-block {
  padding: 1.25rem 0;
    font-family: "Roboto Slab", serif;
  font-size: 15px;
  line-height: 27px;
  color: #333333;
      gap: 12px;
    display: flex;
    flex-direction: column;
}

.ux-t9cards .card-links-block .link-click {
  color: #0066cc;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.ux-t9cards .card-links-block .link-click:hover {
  color: #004499;
}

.ux-t9cards .card-img-block {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background-color: #fcfcfc;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.ux-t9cards .card-img-block img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}



.ux-specp{
        font-family: "Roboto Slab", serif;
}








.ux-headings {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #FFB606;
}

.ux-formpg {
  background-color: #ffffff;
  color: #000000;
}

.ux-formpg .forum-title {
  font-size: 28px;
  line-height: 33.6px;
}

.ux-formpg .wisdom-title {
  font-size: 24px;
  line-height: 30px;
}

.ux-formpg .rules-title {
  font-size: 24px;
  line-height: 30px;
}

.ux-formpg .tagline-text {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 27px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 1.25rem;
}

.ux-formpg .body-text {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: #333333;
  margin-bottom: 1rem;
}

.ux-formpg .arabic-quote {
  font-family: 'Amiri', serif;
  font-size: 20px;
  line-height: 1.8;
  font-weight: bold;
  direction: rtl;
  text-align: right;
  color: #222222;
  margin-bottom: 0.75rem;
}

.ux-formpg .source-text {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #555555;
  margin-bottom: 0.5rem;
}

.ux-formpg .italic-quote {
  font-style: italic;
  color: #444444;
}

.ux-formpg .rules-list {
  list-style: none;
  padding-left: 0;
}

.ux-formpg .rules-list li {
  margin-bottom: 1.25rem;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.ux-formpg .rules-list li strong {
  display: block;
  font-size: 15px;
  color: #FFB606;
  margin-bottom: 2px;
}

.ux-formpg .rules-list li span {
  display: block;
  color: #444444;
}

.ux-formpg .execution-text {
  font-size: 16px;
}

.ux-formpg .custom-logo {
  max-height: 160px;
  display: inline-block;
}

.ux-formpg .video-wrapper {
  position: relative;
  border-radius: 0px !important;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background-color: #000000;
}

.ux-formpg .video-wrapper iframe {
  border-radius: 0px !important;
  border: none;
}


.ux-ptitle{
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 33.6px;
    color: var(--primary-yellow);
}
.ux-tdes{
 font-family: Roboto !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 27px;
    color: #000000;
}
.ux-tbtn{
 font-size: 18px !important;
    line-height: 18px !important;
    color: #ffffff !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    font-family: Roboto !important;
    background-color: #FFB606 !important;
    padding: 12px 30px !important;
    border-radius: 4px !important;
    border: none !important;
    transition: background-color 0.2s ease-in-out !important;
}

.ux-twrapper{
    display: flex;
    justify-content: center;
    margin-top: 25px !important;
}


.ux-talert{
    font-family: Poppins, sans-serif !important;
    font-weight: 700 !important;
    font-size: 48px !important;
    line-height: 57px !important;
    margin-bottom: 35px !important;
    text-align: center !important;
    color: #F20A0A !important;
}

.ux-labelalert{
    font-family: Roboto !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 27px !important;
    color: #666666 !important;
}


.ux-plancards{
    border: none !important;
}



.ux-pocastname{
    font-family: Poppins, sans-serif !important;
    font-weight: 700 !important;
    font-size: 28px !important;
    line-height: 33.6px !important;
    color: #ffffff !important;
    
}



.ak-headings{
    font-family: "Roboto Slab", serif !important;
    font-weight: 700 !important;
    font-size: 38px ;
    line-height: 45.6px !important;
    color: var(--primary-yellow) !important;
    margin-bottom: 15px ;
}











    .av-tstslides {
      --avt-gap:    24px;
      --avt-radius: 22px;
      --avt-bg:     #ede8e0;
      --avt-font:   'Segoe UI', sans-serif;

      font-family:      inherit, var(--avt-font);
      color:            inherit;
      width:            100%;
      max-width:        1200px;
      margin:           0 auto;
      box-sizing:       border-box;
    }

    .av-tstslides .slider-viewport {
      overflow:            hidden;
      cursor:              grab;
      user-select:         none;
      -webkit-user-select: none;
    }
    .av-tstslides .slider-viewport.grabbing { cursor: grabbing; }

    .av-tstslides .slider-track {
      display:    flex;
      gap:        var(--avt-gap);
      transition: transform 0.75s cubic-bezier(0.45, 0, 0.15, 1);
      will-change: transform;
      align-items: stretch;
    }

    .av-tstslides .testimonial-card {
      flex:          0 0 calc(33.333% - 16px);
      min-width:     0;
      border-radius: var(--avt-radius);
      padding:       28px 28px 36px;
      color:         #fff;
      position:      relative;
      box-sizing:    border-box;
      overflow:      hidden;   
    }

    .av-tstslides .testimonial-card::before,
    .av-tstslides .testimonial-card::after {
      content:       '';
      position:      absolute;
      border-radius: 50%;
      background:    rgba(255,255,255,0.12);
      pointer-events: none;
    }
    .av-tstslides .testimonial-card::before {
      width:  200px;
      height: 200px;
      bottom: -60px;
      right:  -50px;
    }
    .av-tstslides .testimonial-card::after {
      width:  100px;
      height: 100px;
      bottom: 60px;
      right:  60px;
      background: rgba(255,255,255,0.07);
    }

    .av-tstslides .card-teal   { background-color: #3ec9a7; }
    .av-tstslides .card-purple { background-color: #8b5cf6; }
    .av-tstslides .card-orange { background-color: #f97316; }
    .av-tstslides .card-blue   { background-color: #3b82f6; }
    .av-tstslides .card-rose   { background-color: #f43f5e; }
    .av-tstslides .card-green  { background-color: #22c55e; }

    .av-tstslides .card-inner {
      position: relative;
      z-index:  1;
    }

    .av-tstslides .badge-label {
      display:        inline-block;
      background:     rgba(255,255,255,0.22);
      color:          #fff;
      font-size:      10px;
      font-weight:    700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding:        4px 12px;
      border-radius:  20px;
      margin-bottom:  18px;
    }

    .av-tstslides .avatar {
      width:           58px;
      height:          58px;
      border-radius:   50%;
      background:      rgba(255,255,255,0.28);
      display:         flex;
      align-items:     center;
      justify-content: center;
      font-size:       18px;
      font-weight:     800;
      color:           #fff;
      margin-bottom:   16px;
      letter-spacing:  1px;
    }

    .av-tstslides .person-name {
      font-size:     22px;
      font-weight:   800;
      margin-bottom: 14px;
      line-height:   1.2;
    }

    .av-tstslides .quote-text {
      font-size:     14.5px;
      line-height:   1.65;
      margin-bottom: 18px;
      opacity:       0.95;
    }

    .av-tstslides .signature {
      font-size:  13px;
      font-style: italic;
      opacity:    0.88;
    }

    .av-tstslides .slider-nav {
      display:         flex;
      align-items:     center;
      justify-content: center;
      gap:             18px;
      margin-top:      32px;
    }

    .av-tstslides .nav-btn {
      width:           44px;
      height:          44px;
      border-radius:   50%;
      border:          1.5px solid #bbb;
      background:      transparent;
      color:           #888;
      font-size:       24px;
      line-height:     1;
      display:         flex;
      align-items:     center;
      justify-content: center;
      cursor:          pointer;
      transition:      border-color 0.25s, color 0.25s, background 0.25s;
      outline:         none;
      padding:         0;
    }
    .av-tstslides .nav-btn:hover {
      border-color: #666;
      color:        #333;
      background:   rgba(0,0,0,0.05);
    }

    .av-tstslides .nav-counter {
      font-size:   15px;
      color:       #999;
      min-width:   48px;
      text-align:  center;
      font-weight: 500;
    }

    @media (max-width: 991px) {
      .av-tstslides .testimonial-card {
        flex: 0 0 calc(50% - 12px);
      }
    }
    @media (max-width: 600px) {
      .av-tstslides {
        padding: 24px 12px 32px;
      }
      .av-tstslides .testimonial-card {
        flex:      0 0 calc(100% - 0px);
        padding:   24px 22px 30px;
      }
      .av-tstslides .slider-track {
        gap: 16px;
      }
      .av-tstslides .person-name {
        font-size: 20px;
      }
    }




    .ak-resource-feature-grid .ak-resource-feature{
        display: flex !important;
        align-items: center !important;
    }














.ak-resources-wrapper {
    position: relative !important;
}

.ak-resources-submenu {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    display: none !important;
    margin-top: -5px !important; 
    width: 200px; 
}

.ak-resources-wrapper:hover > .ak-resources-submenu {
    display: block !important;
}











.ak-has-menu > a i, 
.ak-resources-wrapper > a i {
    font-size: 0.75em !important;
    margin-left: 8px !important;
    transition: transform 0.3s ease !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.ak-has-menu:hover > a i {
    transform: rotate(-90deg) !important;
}