/* CSS variables */
:root {
    color-scheme: light;
    --primary-color: #FF6600;
    /* Vibrant Orange */
    --secondary-color: #1A365D;
    /* Deep Blue */
    --heading-color: #111827;
    /* Dark Black/Grey for text */
    --text-color: #333333;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e65c00;
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: #111827;
    transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
    background-color: #111827;
    color: var(--white);
    padding: 10px 0;
    font-size: 13.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

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

.top-bar a {
    color: var(--white);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.top-bar a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item svg {
    flex-shrink: 0;
    stroke: var(--primary-color);
    transition: transform 0.3s ease;
}

.top-bar-item:hover svg {
    transform: scale(1.15) rotate(-5deg);
}

/* Header */
.site-header {
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Logo */
.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
}

.logo-text:hover {
    transform: scale(1.02);
}

.logo-text span {
    color: var(--primary-color);
    font-weight: 900;
    margin: 0 4px;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation>div>ul,
.main-navigation ul.menu {
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: #111827;
    font-weight: 700;
    font-size: 14.5px;
    text-transform: uppercase;
    position: relative;
    padding: 24px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.main-navigation>div>ul>li>a::before,
.main-navigation ul.menu>li>a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 12px;
    left: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-navigation>div>ul>li>a:hover::before,
.main-navigation ul.menu>li>a:hover::before {
    width: 100%;
}

/* Dropdown arrow indicator */
.main-navigation li.menu-item-has-children>a::after {
    content: '▼';
    font-size: 9px;
    margin-left: 6px;
    color: inherit;
    transition: transform 0.3s ease;
    display: inline-block;
}

.main-navigation li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}

.main-navigation a:hover {
    color: var(--primary-color);
}

/* Dropdown Sub-menu Styles */
.main-navigation ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-navigation li:hover>ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul.sub-menu li {
    width: 100%;
}

.main-navigation ul.sub-menu a {
    padding: 12px 24px;
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: block;
}

.main-navigation ul.sub-menu a::before,
.main-navigation ul.sub-menu a::after {
    display: none !important;
}

.main-navigation ul.sub-menu a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 102, 0, 0.04);
    padding-left: 28px;
}

/* Custom Header Call Button */
.akn-header__btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.akn-header__btn-call:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.35);
}

.akn-header__btn-call svg {
    transition: transform 0.3s ease;
}

.akn-header__btn-call:hover svg {
    transform: rotate(-15deg) scale(1.1);
}

/* Header Contact & Pulse Button */
.btn-pulse {
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.menu-overlay,
.menu-close-btn {
    display: none;
}

.header-contact-mobile {
    display: none;
}

/* ========== BRAND HERO SLIDER STYLES ========== */
.akn-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    background-color: #111827;
}

.akn-hero__track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 80vh;
}

.akn-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.akn-hero__slide--active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.akn-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 8s ease-out;
}

.akn-hero__slide--active .akn-hero__bg {
    transform: scale(1);
}

.akn-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(15, 36, 68, 0.85) 60%, rgba(43, 76, 126, 0.6) 100%);
}

.akn-hero__body {
    position: relative;
    z-index: 3;
    padding: 120px 20px;
    max-width: 850px;
    margin: 0 auto;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.akn-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 102, 0, 0.15);
    border: 1px solid rgba(255, 102, 0, 0.35);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.akn-hero__slide--active .akn-hero__badge {
    transform: translateY(0);
    opacity: 1;
}

.akn-hero__title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -1px;
    transform: translateY(25px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
    text-align: center;
}

.akn-hero__title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.akn-hero__slide--active .akn-hero__title {
    transform: translateY(0);
    opacity: 1;
}

.akn-hero__desc {
    font-size: 19px;
    line-height: 1.65;
    max-width: 720px;
    margin-bottom: 35px;
    color: #e2e8f0;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
    text-align: center;
}

.akn-hero__slide--active .akn-hero__desc {
    transform: translateY(0);
    opacity: 0.95;
}

.akn-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 45px;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
    justify-content: center;
}

.akn-hero__slide--active .akn-hero__actions {
    transform: translateY(0);
    opacity: 1;
}

/* Premium Buttons */
.akn-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.akn-hero__btn svg {
    transition: transform 0.3s ease;
}

.akn-hero__btn--cta {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}

.akn-hero__btn--cta:hover {
    background-color: #e65c00;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px rgba(255, 102, 0, 0.45);
}

.akn-hero__btn--cta:hover svg {
    transform: translateX(3px) rotate(-10deg);
}

.akn-hero__btn--ghost {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.akn-hero__btn--ghost:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.akn-hero__btn--ghost:hover svg {
    transform: scale(1.15);
}

/* Stats Counter Grid */
.akn-hero__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1s;
}

.akn-hero__slide--active .akn-hero__stats {
    transform: translateY(0);
    opacity: 1;
}

.akn-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.akn-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.akn-hero__stat sup {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    top: -5px;
    margin-left: 2px;
}

.akn-hero__stat span {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.akn-hero__stat-sep {
    width: 1px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Slide Navigation Arrows */
.akn-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(15, 36, 68, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(5px);
}

.akn-hero__arrow:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.akn-hero__arrow--l {
    left: 30px;
}

.akn-hero__arrow--r {
    right: 30px;
}

/* Dots Navigation */
.akn-hero__dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.akn-hero__dot {
    width: 24px;
    height: 6px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.akn-hero__dot--on {
    width: 45px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

/* Slider progress bar */
.akn-hero__prog {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.akn-hero__prog-bar {
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .akn-hero__title {
        font-size: 40px;
    }

    .akn-hero__arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .akn-hero {
        min-height: 85vh;
    }

    .akn-hero__track,
    .akn-hero__slide {
        min-height: 85vh;
    }

    .akn-hero__body {
        padding: 80px 20px 60px;
    }

    .akn-hero__title {
        font-size: 34px;
    }

    .akn-hero__desc {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .akn-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .akn-hero__btn {
        width: 100%;
        justify-content: center;
    }

    .akn-hero__stats {
        gap: 15px;
    }

    .akn-hero__stat-sep {
        display: none;
    }

    .akn-hero__stat {
        width: 45%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .akn-hero__title {
        font-size: 28px;
    }

    .akn-hero__stats {
        flex-direction: column;
        align-items: center;
    }

    .akn-hero__stat {
        width: 100%;
        text-align: center;
    }
}


/* Services */
.services-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #111827;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.service-icon svg {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-card h3 {
    color: #111827;
    margin-bottom: 10px;
}

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

.features-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.features-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--bg-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

/* Footer */
.site-footer {
    background-color: #111827;
    color: var(--white);
    padding: 60px 0 20px;
}

/* Blog Cards */
.blog-card:hover {
    transform: translateY(-10px) !important;
}

.blog-thumbnail img {
    transition: transform 0.3s ease;
}

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

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--white);
    opacity: 0.8;
}

.footer-column a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Detasoft Logo Styles */
.beratlogo {
    max-height: 40px !important;
    transition: all 0.3s ease;
    opacity: 0.75;
    display: inline-block;
}

.beratlogo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.beratlogo svg,
.beratlogo svg g,
.beratlogo svg path {
    fill: #ffffff !important;
    transition: fill 0.3s ease;
}

.beratlogo:hover svg,
.beratlogo:hover svg g,
.beratlogo:hover svg path {
    fill: var(--primary-color) !important;
}

/* On mobile, center the footer bottom items */
@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column !important;
        text-align: center;
        gap: 15px;
    }
}

.seo-links a {
    transition: all 0.3s ease;
}

.seo-links a:hover {
    color: var(--primary-color) !important;
}

/* Floating Action Buttons */
.floating-action-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 9999;
}

.scroll-to-top {
    width: 45px;
    height: 45px;
    background-color: #111827;
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.floating-whatsapp {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: float-pulse 2s infinite;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1) translateY(-5px);
    animation: none;
}

@keyframes float-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hide-mobile {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }

    .menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(26, 54, 93, 0.4);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .menu-close-btn {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: #111827;
        cursor: pointer;
        padding: 8px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        z-index: 1051;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .menu-close-btn:hover {
        background-color: #f1f5f9;
        color: var(--primary-color);
        transform: rotate(90deg);
    }

    .menu-wrapper {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease, visibility 0.3s ease;
        visibility: hidden;
        z-index: 1050;
        display: flex;
        flex-direction: column;
    }

    .menu-wrapper.active {
        transform: translateX(0);
        visibility: visible;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .main-navigation a {
        display: block;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .main-navigation ul.sub-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0 0 0 15px;
        margin-top: 10px;
        display: none; /* jQuery will toggle this */
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .main-navigation li:hover > ul.sub-menu {
        /* Disable the hover effect on mobile */
        display: none; 
    }
    
    .main-navigation li.dropdown-active > ul.sub-menu {
        display: block;
    }

    .main-navigation li.menu-item-has-children > a::after {
        float: right;
        margin-top: 5px;
        transition: transform 0.3s ease;
    }

    .main-navigation li.dropdown-active > a::after {
        transform: rotate(180deg);
    }

    .header-contact-mobile {
        display: block;
        margin-top: 30px;
        text-align: center;
    }

    .header-contact-mobile .btn-primary {
        display: block;
        width: 100%;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

/* ========== PROCESS SECTION STYLES ========== */
.akn-process {
    background-color: #f8f9fa;
    padding: 90px 0;
    position: relative;
}

.akn-process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.akn-process__card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.akn-process__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.akn-process__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 102, 0, 0.2);
}

.akn-process__card:hover::before {
    height: 100%;
}

.akn-process__num {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 36px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    transition: all 0.3s ease;
}

.akn-process__card:hover .akn-process__num {
    color: rgba(255, 102, 0, 0.12);
    transform: scale(1.1);
}

.akn-process__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(255, 102, 0, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.akn-process__card:hover .akn-process__icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(360deg);
}

.akn-process__title {
    font-size: 19px;
    font-weight: 750;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
}

.akn-process__desc {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ========== FAQ ACCORDION STYLES ========== */
.akn-faq {
    background-color: var(--white);
    padding: 90px 0;
}

.akn-faq__accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.akn-faq__item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    background-color: var(--white);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.akn-faq__item.active {
    border-color: rgba(255, 102, 0, 0.25);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.04);
}

.akn-faq__trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 17.5px;
    font-weight: 700;
    color: #111827;
    transition: all 0.3s ease;
}

.akn-faq__trigger:hover {
    color: var(--primary-color);
}

.akn-faq__icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 102, 0, 0.06);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 15px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.akn-faq__item.active .akn-faq__icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(45deg);
}

.akn-faq__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.akn-faq__body {
    padding: 0 28px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}

.akn-faq__body p {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* ========== DYNAMIC PAGE TEMPLATE STYLES ========== */
.akn-page-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #15294a 100%);
    padding: 70px 0;
    text-align: center;
    color: var(--white);
    border-bottom: 3px solid var(--primary-color);
}

.akn-page-hero__title {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: -0.8px;
    color: var(--white);
}

.akn-page-hero__breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    opacity: 0.85;
}

.akn-page-hero__breadcrumbs a {
    color: var(--white);
    font-weight: 600;
    transition: color 0.3s ease;
}

.akn-page-hero__breadcrumbs a:hover {
    color: #e2e8f0;
}

.akn-page-hero__breadcrumbs svg {
    stroke: rgba(255, 255, 255, 0.7);
}

.akn-page-hero__breadcrumbs span {
    color: #e2e8f0;
}

.akn-page-main {
    background-color: #f8f9fa;
    padding: 70px 0;
}

.akn-page-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    max-width: 900px;
    margin: 0 auto;
}

.akn-page-thumbnail {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.akn-page-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.akn-page-card .entry-content {
    font-size: 16.5px;
    line-height: 1.8;
    color: #334155;
}

.akn-page-card .entry-content h2,
.akn-page-card .entry-content h3,
.akn-page-card .entry-content h4 {
    color: #111827;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 750;
}

.akn-page-card .entry-content p {
    margin-bottom: 20px;
}

.akn-page-card .entry-content ul,
.akn-page-card .entry-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.akn-page-card .entry-content li {
    margin-bottom: 8px;
}

.akn-page-card .entry-content strong {
    color: #111827;
}

@media (max-width: 768px) {
    .akn-page-hero {
        padding: 50px 0;
    }

    .akn-page-hero__title {
        font-size: 30px;
    }

    .akn-page-card {
        padding: 30px 20px;
    }
}

/* ========== DYNAMIC SINGLE BLOG POST STYLES ========== */
.akn-post-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    font-size: 14px;
    flex-wrap: wrap;
}

.akn-post-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.akn-post-meta__item svg {
    stroke: var(--primary-color);
}

.akn-post-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
}

.akn-post-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    color: #111827;
    border: 2px solid var(--secondary-color);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 750;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.akn-post-back-btn:hover {
    background-color: #111827;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 36, 68, 0.15);
}

/* ========== DYNAMIC QUICK SERVICES GRID ========== */
.akn-quick-service-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.akn-quick-service-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(255, 102, 0, 0.2) !important;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.08) !important;
    color: var(--primary-color) !important;
}

.akn-quick-service-card:hover .akn-quick-service-arrow {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    transform: translateX(3px) !important;
}