/**
* Template Name: ZenBlog
* Template URL: https://bootstrapmade.com/zenblog-bootstrap-blog-template/
* Updated: Aug 08 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: 'Asap', sans-serif;
    --heading-font: 'Asap', sans-serif;
    --nav-font: 'Asap', sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #0a0e1a;
    /* Background color for the entire website, including individual sections */
    --default-color: #e0e6f0;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #ffffff;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #6366f1;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #1a1d29;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #e0e6f0;
    /* The default color of the main navmenu links */
    --nav-hover-color: #6366f1;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #1a1d29;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #1a1d29;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #e0e6f0;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #6366f1;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #1a1d29;
    --surface-color: #252836;
}

.dark-background {
    --background-color: #0a0e1a;
    --default-color: #e0e6f0;
    --heading-color: #ffffff;
    --surface-color: #1a1d29;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

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

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: '';
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
:root {
    --color-bg: #121620;
    --color-primary: #7ee5e5;
    --color-accent: #a3ffce;
    --color-text: #e0e6f0;
    --color-text-muted: #8a95a7;
    --font-heading: 'Asap', sans-serif;
    --font-body: 'Asap', sans-serif;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #0f1117;
    color: var(--default-color);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.header-top-bar {
    background-color: #0f1117;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
}

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

.header-contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.header-contact-link {
    color: var(--contrast-color);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.header-contact-link:hover {
    color: var(--accent-color);
}

.header-contact-link i {
    font-size: 16px;
}

.header-social-links {
    display: flex;
    gap: 12px;
}

.header-social-links .social-link {
    color: var(--contrast-color);
    font-size: 16px;
    transition: color 0.3s ease;
}

.header-social-links .social-link:hover {
    color: var(--accent-color);
}

.header-main {
    background-color: #0f1117;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--default-font);
    gap: 30px;
}

.logo {
    text-decoration: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 32px;
    color: var(--accent-color);
}

.sitename {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-size: 12px;
    color: #a0aec0;
    margin: 0;
    font-weight: 400;
    opacity: 0.9;
}

.logo:hover .sitename {
    color: var(--accent-color);
}

.logo:hover .logo-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-cta {
    padding: 10px 24px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-cta:hover {
    background-color: var(--heading-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navmenu ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.navmenu ul li a {
    color: #e0e6f0;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
    user-select: none;
}

.navmenu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
    color: var(--accent-color);
}

.navmenu ul li a:hover::after,
.navmenu ul li a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background-color: var(--accent-color);
}

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

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

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

@media (max-width: 992px) {
    .header-top-bar {
        display: none;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .logo {
        flex: 1;
    }

    .logo-tagline {
        display: none;
    }


    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        text-align: center;
    }

    .header-contact-info {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-branding {
        max-width: 100%;
    }

    .footer-contact-info .contact-item {
        justify-content: center;
    }

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


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 14px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

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

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
}

.mobile-menu-content {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: #1a1d29;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    text-decoration: none;
}

.mobile-menu-logo .logo-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-logo .logo-icon {
    font-size: 1.8rem;
    color: #6366f1;
}

.mobile-menu-logo .sitename {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
    color: #818cf8;
}

.mobile-menu-nav {
    flex: 1;
    padding: 20px 0;
}

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

.mobile-menu-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-nav ul li a {
    display: block;
    padding: 18px 25px;
    color: #a0aec0;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-nav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-menu-nav ul li a:hover,
.mobile-menu-nav ul li a.active {
    color: #ffffff;
    background-color: rgba(99, 102, 241, 0.1);
    padding-left: 30px;
}

.mobile-menu-nav ul li a:hover::before,
.mobile-menu-nav ul li a.active::before {
    transform: scaleY(1);
}

.mobile-menu-footer {
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-footer .btn,
.btn-block {
    width: 100%;
    margin-bottom: 20px;
    justify-content: center;
}

.mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.mobile-contact-link:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    color: #ffffff;
}

.mobile-contact-link i {
    font-size: 1.2rem;
    color: #6366f1;
}

@media (max-width: 992px) {
    .navmenu {
        display: none;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    background-color: #0f1117;
    color: var(--contrast-color);
    font-family: var(--default-font);
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    padding: 60px 20px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-branding {
    max-width: 350px;
}

.footer-logo {
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo .logo-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    font-size: 36px;
    color: var(--accent-color);
}

.footer-logo .sitename {
    font-size: 28px;
    color: var(--contrast-color);
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-info .contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-info .contact-item i {
    font-size: 20px;
    color: var(--accent-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-info .contact-item strong {
    display: block;
    color: var(--contrast-color);
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-contact-info .contact-item p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-contact-info .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info .contact-item a:hover {
    color: var(--accent-color);
}

.footer-navigation,
.footer-services,
.footer-legal {
    min-width: 180px;
}

.footer-navigation h4,
.footer-services h4,
.footer-legal h4 {
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--contrast-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-navigation ul,
.footer-services ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-navigation ul li,
.footer-services ul li,
.footer-legal ul li {
    margin-bottom: 12px;
}

.footer-navigation ul li a,
.footer-services ul li a,
.footer-legal ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-navigation ul li a:hover,
.footer-services ul li a:hover,
.footer-legal ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-social {
    margin-top: 25px;
}

.footer-social h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--contrast-color);
}

.footer-social .social-icons {
    display: flex;
    gap: 12px;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--contrast-color);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social .social-link:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

.footer-social .social-link.facebook:hover {
    background-color: #1877f2;
}

.footer-social .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social .social-link.linkedin:hover {
    background-color: #0077b5;
}

.footer-social .social-link.youtube:hover {
    background-color: #ff0000;
}

.footer-navigation ul li a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-navigation ul li a:hover {
    color: var(--color-accent);
}

.footer-social {
    flex: 1 1 180px;
}

.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-bg);
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.social-link:hover {
    background-color: var(--color-accent);
    color: var(--color-text);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #0a0e1a;
    padding: 25px 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-content p {
    margin: 0;
}

.footer-bottom .credits {
    font-style: italic;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-branding,
    .footer-navigation,
    .footer-social {
        max-width: 100%;
        flex: unset;
        text-align: center;
    }

    .footer-navigation ul {
        display: inline-block;
        padding: 0;
    }

    .footer-navigation ul li {
        display: inline-block;
        margin: 0 10px 0 0;
    }

    .social-icons {
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: '';
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title h1 {
    font-size: 24px;
    font-weight: 700;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: '/';
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 40px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-title .section-title-container {
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.section-title h2 {
    font-size: 40px;
    font-weight: 0;
}

.section-title p {
    margin-bottom: 0;
}

.section-title p a {
    color: var(--default-color);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-bottom: 1.5px solid var(--default-color);
    font-family: var(--nav-font);
    font-weight: 500;
    padding-bottom: 2px;
}

/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1d29 50%, #0f1117 100%);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50px;
  color: #818cf8;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge i {
  font-size: 16px;
}

.hero-title {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #a0aec0;
  margin-bottom: 32px;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-hero-primary:hover {
  background-color: #818cf8;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6);
  color: var(--contrast-color);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #818cf8;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #a0aec0;
  opacity: 0.9;
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-features {
  position: absolute;
  bottom: -30px;
  left: 30px;
  right: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  min-width: 150px;
  padding: 16px 20px;
  background-color: #1a1d29;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.feature-card i {
  font-size: 20px;
  color: #818cf8;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(99, 102, 241, 0.1);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: rgba(129, 140, 248, 0.08);
  bottom: 20%;
  left: 5%;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: rgba(99, 102, 241, 0.1);
  top: 50%;
  right: 20%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-image-wrapper img {
    height: 400px;
  }

  .hero-features {
    position: static;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
    min-height: auto;
  }

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

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

.slider {
  position: relative;
  padding: 80px 0;
  background-color: var(--color-bg-dark);
  font-family: var(--font-body);
  color: var(--color-light);
}

.slider .swiper-wrapper {
  min-height: 480px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.slider .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  min-height: 480px;
}

.slider .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  border-radius: 16px;
}

.slider .slide-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 40px 30px;
  text-align: center;
  color: var(--color-light);
  font-weight: 400;
  user-select: none;
}

.slider .slide-content h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.slider .slide-content h2 a {
  color: var(--color-light);
  text-decoration: none;
}

.slider .slide-content h2 a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.slider .slide-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-light-muted);
  max-width: 600px;
  margin: 0 auto;
  user-select: text;
}

.slider .swiper-button-prev,
.slider .swiper-button-next {
  color: var(--color-light);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  top: 50%;
  transform: translateY(-50%);
}

.slider .swiper-button-prev:hover,
.slider .swiper-button-next:hover {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  box-shadow: 0 0 20px var(--color-accent);
}

.slider .swiper-button-prev {
  left: 20px;
}

.slider .swiper-button-next {
  right: 20px;
}

.slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255 255 255 / 0.5);
  opacity: 1;
  transition: background-color 0.3s ease;
  margin: 0 6px !important;
  border-radius: 50%;
}

.slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-accent);
  width: 16px;
  height: 16px;
}

@media (max-width: 767px) {
  .slider .swiper-wrapper,
  .slider .swiper-slide {
    min-height: 320px;
  }

  .slider .slide-content h2 {
    font-size: 1.9rem;
  }

  .slider .slide-content p {
    font-size: 1rem;
    max-width: 100%;
  }

  .slider .swiper-button-prev,
  .slider .swiper-button-next {
    width: 36px;
    height: 36px;
  }
}

/*--------------------------------------------------------------
# Programs Section
--------------------------------------------------------------*/
.programs-section {
    padding: 100px 20px;
    background-color: #0f1117;
    position: relative;
}

.section-header-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background-color: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #818cf8;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 16px;
}

.section-title {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #a0aec0;
    opacity: 0.9;
    line-height: 1.6;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.program-card {
    background-color: #1a1d29;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.program-card.featured {
    grid-column: span 2;
}

.program-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.program-card.featured .program-image {
    height: 350px;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.program-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.program-link {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    font-size: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.program-link:hover {
    transform: scale(1.1);
    background-color: var(--heading-color);
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.program-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    color: #818cf8;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    width: fit-content;
}

.program-category i {
    font-size: 14px;
}

.program-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.program-card.featured .program-title {
    font-size: 1.8rem;
}

.program-description {
    font-size: 15px;
    line-height: 1.7;
    color: #a0aec0;
    opacity: 0.95;
    margin-bottom: 20px;
    flex: 1;
}

.program-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.program-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #a0aec0;
    opacity: 0.9;
}

.program-info i {
    font-size: 16px;
    color: #818cf8;
}

.program-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: transparent;
    color: #818cf8;
    border: 2px solid #6366f1;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.program-btn:hover {
    background-color: #6366f1;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.programs-cta {
    background: linear-gradient(135deg, #1a1d29 0%, #252836 50%, #1a1d29 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: var(--contrast-color);
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-content h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--contrast-color);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: var(--contrast-color);
    color: var(--heading-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    color: var(--heading-color);
}

@media (max-width: 992px) {
    .program-card.featured {
        grid-column: span 1;
    }

    .program-card.featured .program-image {
        height: 250px;
    }

    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .programs-section {
        padding: 60px 20px;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

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

    .programs-cta {
        padding: 40px 20px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Trending Category Section (Legacy - kept for compatibility)
--------------------------------------------------------------*/
.trending-category {
    padding: 60px 20px;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
}

.section-header {
    max-width: 600px;
    margin: 0 auto 50px auto;
    text-align: center;
    color: var(--color-primary);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.8rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-header p {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--color-accent);
}

.trending-grid {
    display: grid;
    grid-template-columns: 2.5fr 3fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-post {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-post-img img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.main-post h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    margin: 0;
    color: var(--color-primary);
}

.main-post h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.main-post h3 a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.main-post p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 1rem;
}

.author-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.side-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 30px;
}

.post {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.post-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.post-img img:hover {
    transform: scale(1.04);
}

.post-meta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
    color: var(--color-muted);
}

.post h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.post h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.post h4 a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.trending-topics {
    border: 1px solid var(--color-muted-light);
    border-radius: 12px;
    padding: 20px;
    background: var(--color-bg-alt);
}

.trending-topics h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-primary);
    text-align: center;
}

.trending-topics ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trending-topics ul li {
    margin-bottom: 16px;
}

.trending-topics ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-text);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.trending-topics ul li a:hover {
    color: var(--color-accent);
}

.rank {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--color-muted-light);
    width: 40px;
    flex-shrink: 0;
    user-select: none;
}

.trending-topics small {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-left: auto;
}

@media (max-width: 992px) {
    .trending-grid {
        grid-template-columns: 1fr;
    }

    .side-posts {
        grid-template-columns: 1fr;
    }

    .trending-topics {
        margin-top: 40px;
    }
}


/*--------------------------------------------------------------
# Culture Category Section
--------------------------------------------------------------*/
.culture-category {
    background-color: var(--color-bg);
    color: var(--color-text);
    padding: 60px 20px;
    font-family: var(--font-body);
}

.section-header {
    max-width: 600px;
    margin: 0 auto 50px auto;
    text-align: center;
    color: var(--color-primary);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-accent);
}

.culture-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-card.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1 1 400px;
}

.feature-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.feature-text {
    flex: 1 1 400px;
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-text h3 i {
    color: var(--color-accent);
    font-size: 1.8rem;
    line-height: 1;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {

    .feature-card,
    .feature-card.reverse {
        flex-direction: column;
    }

    .feature-text,
    .feature-image {
        flex: 1 1 100%;
    }
}


/*--------------------------------------------------------------
# Services Section (Business Category)
--------------------------------------------------------------*/
.services-section {
  padding: 100px 20px;
  background-color: var(--background-color);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #1a1d29;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(99, 102, 241, 0.25);
  border-color: rgba(99, 102, 241, 0.3);
}

.service-card.featured {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2);
}

.service-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.service-icon i {
  font-size: 28px;
  color: #ffffff;
}

.service-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 0.8;
}

.service-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 20px;
  color: #818cf8;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  width: fit-content;
}

.service-category i {
  font-size: 14px;
}

.service-title {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-description {
  font-size: 15px;
  line-height: 1.7;
  color: #a0aec0;
  margin-bottom: 20px;
  flex: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #e0e6f0;
}

.service-features li i {
  color: #818cf8;
  font-size: 16px;
  flex-shrink: 0;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: transparent;
  color: #818cf8;
  border: 2px solid #6366f1;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

.service-btn:hover {
  background-color: #6366f1;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.service-btn i {
  transition: transform 0.3s ease;
}

.service-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;
  }

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

  .service-image {
    height: 220px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing-section {
    padding: 100px 20px;
    background-color: #0f1117;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.pricing-card {
    background-color: #1a1d29;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.3);
}

.pricing-card.featured {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #818cf8;
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: #a0aec0;
}

.pricing-savings {
    margin-top: 10px;
    padding: 6px 12px;
    background-color: rgba(99, 102, 241, 0.15);
    border-radius: 15px;
    color: #818cf8;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.pricing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #e0e6f0;
    line-height: 1.6;
}

.pricing-features li i {
    color: #818cf8;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-note {
    background-color: rgba(99, 102, 241, 0.1);
    border-left: 3px solid #6366f1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.pricing-note p {
    margin: 0;
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.6;
}

.pricing-note strong {
    color: #ffffff;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: transparent;
    color: #818cf8;
    border: 2px solid #6366f1;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.pricing-btn:hover {
    background-color: #6366f1;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.pricing-card.featured .pricing-btn {
    background-color: #6366f1;
    color: #ffffff;
}

.pricing-card.featured .pricing-btn:hover {
    background-color: #818cf8;
}

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

.cta-box {
    background: linear-gradient(135deg, #1a1d29 0%, #252836 50%, #1a1d29 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-box h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a0aec0;
    margin-bottom: 30px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    color: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6);
    color: #ffffff;
}

.pricing-info {
    margin-top: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    text-align: center;
    padding: 30px 20px;
}

.info-item i {
    font-size: 48px;
    color: #818cf8;
    margin-bottom: 20px;
}

.info-item h4 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.info-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #a0aec0;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 20px;
    }

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

    .cta-box {
        padding: 40px 25px;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

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

/*--------------------------------------------------------------
# Company Info Section
--------------------------------------------------------------*/
.info-box {
    background-color: #1a1d29;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
}

.info-box h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-box h3 i {
    color: #818cf8;
    font-size: 1.8rem;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.company-table tr:last-child {
    border-bottom: none;
}

.company-table td {
    padding: 12px 0;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.6;
}

.company-table td:first-child {
    width: 40%;
    color: #a0aec0;
    padding-right: 20px;
}

.company-table td:last-child {
    color: #e0e6f0;
}

.company-table strong {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .info-box {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .company-table td:first-child {
        width: 35%;
        padding-right: 15px;
    }
}

/*--------------------------------------------------------------
# Business Category Section (Legacy - kept for compatibility)
--------------------------------------------------------------*/
.offers-contact {
  padding: 80px 0;
  font-family: var(--font-body);
  color: var(--default-color);
  background-color: var(--background-color);
}

.offers-contact .section-title-container h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 60px;
}

.offer-item img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
  object-fit: cover;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.offer-item img:hover {
  transform: scale(1.03);
}

.offer-item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.offer-item .subtitle {
  font-weight: 600;
  font-size: 0.9rem;
  color: #818cf8;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.offer-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #a0aec0;
}

.contact-intro h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.contact-intro p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #a0aec0;
  margin-bottom: 40px;
}

.php-email-form {
  width: 100%;
}

.php-email-form .form-control {
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 1rem;
  background-color: #1a1d29;
  color: #ffffff;
  transition: border-color 0.3s ease;
}

.php-email-form .form-control:focus {
  border-color: #6366f1;
  outline: none;
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.3);
  background-color: #1a1d29;
  color: #ffffff;
}

.php-email-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  background-color: #6366f1;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 14px 40px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.btn-submit:hover {
  background-color: #818cf8;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.contact-email {
  margin-top: 60px;
  color: #818cf8;
}

.contact-icon {
  font-size: 2.2rem;
  color: #818cf8;
}

.contact-email h4 {
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-email p {
  font-size: 1rem;
  color: #a0aec0;
  margin: 0;
}

@media (max-width: 991px) {
  .offers-contact .section-title-container h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .offer-item h3 {
    font-size: 1.5rem;
  }

  .contact-intro h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .offers-contact {
    padding: 60px 15px;
  }

  .offer-item {
    margin-bottom: 50px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
:root {
    --color-bg: #121620;
    --color-primary: #7ee5e5;
    --color-accent: #a3ffce;
    --color-text: #e0e6f0;
    --color-text-muted: #8a95a7;
    --font-heading: 'Ubuntu', sans-serif;
    --font-body: 'Ubuntu', sans-serif;
}

.about {
    background-color: var(--background-color);
    color: var(--default-color);
    font-family: var(--font-body);
    padding: 60px 20px;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 50px auto;
    text-align: center;
    color: var(--color-primary);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-accent);
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}

.text-block {
    flex: 1 1 400px;
    min-width: 320px;
}

.text-block h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--color-text-muted);
}

.text-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-block ul li {
    font-size: 1.05rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    color: var(--color-text);
}

.text-block ul li i {
    font-size: 1.4rem;
    margin-right: 12px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.images-block {
    flex: 1 1 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-radius: 12px;
}

.images-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .images-block {
        grid-template-columns: 1fr;
    }
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
  padding: 80px 0;
  font-family: var(--font-body);
  color: #e0e6f0;
  background-color: #0f1117; 
}

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

.team .section-title h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.2rem;
  letter-spacing: 2px;
  color: #ffffff; 
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
}

.team-card {
  background-color: #1a1d29;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 24px;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 16px 30px rgba(99, 102, 241, 0.4);
  border-color: rgba(99, 102, 241, 0.3);
}

.team-photo {
  width: 160px;
  height: 160px;
  margin-bottom: 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #6366f1;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
  transition: box-shadow 0.3s ease;
}

.team-card:hover .team-photo {
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.8);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.team-card:hover .team-photo img {
  filter: brightness(1);
}

.team-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 8px;
  color: #ffffff; 
}

.team-content .role {
  font-weight: 600;
  color: #818cf8; 
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.team-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #a0aec0;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 480px) {
  .team .section-title h2 {
    font-size: 2.4rem;
  }

  .team-card {
    padding: 24px 18px;
  }

  .team-photo {
    width: 130px;
    height: 130px;
    margin-bottom: 18px;
  }

  .team-content h3 {
    font-size: 1.6rem;
  }

  .team-content .role {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }

  .team-content p {
    max-width: 100%;
  }
}



/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
}

.blog-details .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog-details .title {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-details .content {
    margin-top: 20px;
}

.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog-details .content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog-details .content blockquote:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-details .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-details .meta-top ul li+li {
    padding-left: 20px;
}

.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline;
}

.blog-details .meta-bottom a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
    color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog-details .meta-bottom .cats li {
    display: inline-block;
}

.blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog-details .meta-bottom .tags li {
    display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: var(--default-color);
    content: ',';
}

.blog-details .meta-bottom .share {
    font-size: 16px;
}

.blog-details .meta-bottom .share i {
    padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
    padding: 10px 0;
}

.blog-comments .comments-count {
    font-weight: bold;
}

.blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog-comments .comment .comment-img img {
    width: 60px;
}

.blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog-comments .comment h5 a {
    font-weight: bold;
    color: var(--default-color);
    transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
    color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
    padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
    padding-top: 10px;
}

.comment-form form {
    background-color: var(--surface-color);
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
    font-weight: bold;
    font-size: 22px;
}

.comment-form form p {
    font-size: 14px;
}

.comment-form form input {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 10px;
}

.comment-form form input:focus {
    color: var(--default-color);
    background-color: var(--surface-color);
    box-shadow: none;
    border-color: var(--accent-color);
}

.comment-form form input::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
    height: 120px;
}

.comment-form form textarea:focus {
    color: var(--default-color);
    box-shadow: none;
    border-color: var(--accent-color);
    background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
    margin-bottom: 25px;
}

.comment-form form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.blog-posts .post-img img {
    transition: 0.5s;
}

.blog-posts .post-date {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    position: absolute;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.blog-posts .post-content {
    padding: 30px;
}

.blog-posts .post-title {
    font-size: 20px;
    color: var(--heading-color);
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}

.blog-posts .meta i {
    font-size: 16px;
    color: var(--accent-color);
}

.blog-posts .meta span {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
    margin-top: 20px;
}

.blog-posts hr {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-bottom: 15px;
}

.blog-posts .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
    color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog-pagination li a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
    margin-top: 40px;
}

.contact .info-item i {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    height: 100%;
}

.contact .php-email-form input[type='text'],
.contact .php-email-form input[type='email'],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb,
            var(--background-color),
            transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type='text']:focus,
.contact .php-email-form input[type='email']:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type='text']::placeholder,
.contact .php-email-form input[type='email']::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type='submit'] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type='submit']:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    margin: 40px 0 30px 0;
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 600;
    padding: 0 0 0 10px;
    margin: 0 0 20px 0;
    border-left: 4px solid var(--accent-color);
}

.widget-item {
    margin-bottom: 30px;
    background-color: color-mix(in srgb, var(--default-color), transparent 98%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 30px;
    border-radius: 5px;
}

.widget-item:last-child {
    margin-bottom: 0;
}

.blog-author-widget img {
    max-width: 120px;
    margin-right: 20px;
}

.blog-author-widget h4 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 0px;
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
    margin: 5px 0;
}

.blog-author-widget .social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-right: 5px;
    font-size: 18px;
}

.blog-author-widget .social-links a:hover {
    color: var(--accent-color);
}

.blog-author-widget p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 10px 0 0 0;
}

.search-widget form {
    background: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
    padding: 3px 10px;
    position: relative;
    border-radius: 50px;
    transition: 0.3s;
}

.search-widget form input[type='text'] {
    border: 0;
    padding: 4px 10px;
    border-radius: 4px;
    width: calc(100% - 40px);
    background-color: var(--background-color);
    color: var(--default-color);
}

.search-widget form input[type='text']:focus {
    outline: none;
}

.search-widget form button {
    background: none;
    color: var(--default-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 16px;
    transition: 0.3s;
    line-height: 0;
}

.search-widget form button i {
    line-height: 0;
}

.search-widget form button:hover {
    color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
    border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
    margin-bottom: 0;
}

.recent-posts-widget .post-item img {
    width: 80px;
    margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
    color: var(--default-color);
    transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
    color: var(--accent-color);
}

.recent-posts-widget .post-item time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-widget ul li {
    display: inline-block;
}

.tags-widget ul a {
    background-color: color-mix(in srgb, var(--default-color), transparent 94%);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    border-radius: 50px;
    font-size: 14px;
    padding: 5px 15px;
    margin: 0 6px 8px 0;
    display: inline-block;
    transition: 0.3s;
}

.tags-widget ul a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.tags-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 14px;
}

.blog-author-widget-2 img {
    max-width: 160px;
}

.blog-author-widget-2 h4 {
    font-weight: 600;
    font-size: 24px;
    margin: 15px 0 0 0;
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget-2 .social-links {
    margin: 5px 0;
}

.blog-author-widget-2 .social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin: 0 3px;
    font-size: 18px;
}

.blog-author-widget-2 .social-links a:hover {
    color: var(--accent-color);
}

.blog-author-widget-2 p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 10px 0 0 0;
}

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;600&display=swap');

/*--------------------------------------------------------------
# Cookie Banner
--------------------------------------------------------------*/
/* Modern Cookie Banner */
.cookie-banner-modern {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.cookie-banner-modern.show {
    transform: translateY(0);
    pointer-events: all;
}

.cookie-banner-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-banner-modern.show .cookie-banner-backdrop {
    opacity: 1;
}

.cookie-banner-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1d29 0%, #252836 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(99, 102, 241, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
    animation: slideUpBounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUpBounce {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    60% {
        transform: translateY(-5%);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-main {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 30px;
    position: relative;
}

.cookie-banner-icon {
    flex-shrink: 0;
}

.cookie-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
}

.cookie-icon-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    opacity: 0.5;
    animation: ripple 2s ease-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.cookie-icon-circle i {
    font-size: 28px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.cookie-banner-text {
    flex: 1;
    padding-right: 40px;
}

.cookie-banner-title {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.cookie-banner-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #a0aec0;
    margin: 0;
}

.cookie-policy-link {
    color: #818cf8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 5px;
    border-bottom: 1px solid transparent;
}

.cookie-policy-link:hover {
    color: #6366f1;
    border-bottom-color: #6366f1;
}

.cookie-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #a0aec0;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cookie-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
    transform: rotate(90deg);
}

.cookie-banner-footer {
    display: flex;
    gap: 15px;
    padding: 0 30px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.cookie-btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: var(--default-font);
    flex: 1;
    position: relative;
    overflow: hidden;
}

.cookie-btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cookie-btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.cookie-btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.6);
}

.cookie-btn-accept i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.05);
    color: #a0aec0;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.cookie-btn-decline i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.cookie-btn-modern span {
    position: relative;
    z-index: 1;
}

/* Legacy support */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1d29 0%, #0f1117 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    min-width: 300px;
}

.cookie-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.cookie-icon-wrapper i {
    font-size: 24px;
    color: #ffffff;
}

.cookie-text {
    flex: 1;
}

.cookie-title {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.cookie-description {
    font-size: 14px;
    line-height: 1.6;
    color: #a0aec0;
    margin: 0;
}

.cookie-link {
    color: #818cf8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-left: 4px;
}

.cookie-link:hover {
    color: #6366f1;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--default-font);
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.cookie-btn-secondary {
    background-color: transparent;
    color: #a0aec0;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.cookie-btn i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .cookie-banner-wrapper {
        margin: 0 10px 10px;
        border-radius: 15px 15px 0 0;
    }

    .cookie-banner-main {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .cookie-banner-text {
        padding-right: 0;
    }

    .cookie-close-btn {
        top: 15px;
        right: 15px;
    }

    .cookie-banner-footer {
        flex-direction: column;
        padding: 0 20px 20px;
        gap: 12px;
    }

    .cookie-btn-modern {
        width: 100%;
        padding: 16px 24px;
    }

    .cookie-banner-title {
        font-size: 1.2rem;
    }

    .cookie-banner-description {
        font-size: 0.9rem;
    }
}

/* Legacy cookie styles (for compatibility) */
.cookie-wrapper {
    position: fixed;
    bottom: 0px;
    width: 100%;
    background: var(--color-bg);
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgb(155, 155, 155);
    z-index: 999;
}

.cookie-wrapper .show {
    right: 20px;
}

@media (max-width: 772px) {
    .cookie-wrapper {
        width: 100%;
        bottom: 0px;
        left: 0px;
    }
}

.hidden {
    display: none;
}

.cookie-wrapper header i {
    color: var(--background-color);
    font-size: 32px;
    text-align: center;
}

.cookie-wrapper header h2 {
    color: var(--color-accent);
    font-weight: 500;
    text-align: center;
}

.data {
    text-align: center;
}

.data p a {
    color: var(--background-color);
    text-decoration: none;
    text-align: center !important;
}

.data p a:hover {
    text-decoration: underline;
}

.buttons {
    padding: 20px 0px;
    text-align: center;
}

.buttons .cookie-button {
    border: 2px solid #674646;
    color: #fff;
    padding: 8px 0;
    background: #674646;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
    max-width: 150px;
    border-radius: 30px;
}

.buttons #acceptBtn:hover {
    background-color: transparent;
    color: #674646;
}

#declineBtn {
    background-color: #fff;
    color: #674646;
    border-radius: 30px;
}

#declineBtn:hover {
    background-color: #674646;
    color: #fff;
}

#result {
    color: #674646;
    font-size: 14px;
}

/* ========================================
   About Page Styles
   ======================================== */

/* About Hero Section */
.about-hero-section {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1d29 100%);
    text-align: center;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 30px 0 20px;
    line-height: 1.2;
}

.about-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #a0aec0;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: #0f1117;
}

.about-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-content h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.about-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a0aec0;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.stat-box {
    background-color: #1a1d29;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #818cf8;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 0.95rem;
    color: #a0aec0;
}

.about-image-content {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 26, 0.7) 100%);
}

.image-features {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #1a1d29;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 25px;
    padding: 10px 20px;
    color: #818cf8;
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-badge i {
    font-size: 1.1rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 20px;
    background-color: #0a0e1a;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background-color: #1a1d29;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.3);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.why-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.why-card h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #a0aec0;
    margin-bottom: 20px;
}

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

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #e0e6f0;
}

.why-list li i {
    color: #818cf8;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Mission Section */
.mission-section {
    padding: 100px 20px;
    background-color: #0f1117;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 25px 0 20px;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a0aec0;
    margin-bottom: 20px;
}

.mission-values {
    margin-top: 40px;
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.value-item i {
    font-size: 2rem;
    color: #818cf8;
    flex-shrink: 0;
}

.value-item h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #a0aec0;
    margin: 0;
}

.mission-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-stats-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 20px;
}

.overlay-stat {
    flex: 1;
    background-color: rgba(26, 29, 41, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: #818cf8;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #a0aec0;
}

/* Company Info Section - Modern */
.company-info-section {
    padding: 100px 20px;
    background-color: #0f1117;
    position: relative;
    overflow: hidden;
}

.company-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.company-info-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.info-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #1a1d29;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #a0aec0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-tab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.info-tab:hover::before {
    width: 300px;
    height: 300px;
}

.info-tab:hover {
    border-color: rgba(99, 102, 241, 0.5);
    color: #818cf8;
    transform: translateY(-2px);
}

.info-tab.active {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.info-tab i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.info-tab span {
    position: relative;
    z-index: 1;
}

.company-info-content {
    position: relative;
    min-height: 400px;
}

.info-tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.info-tab-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.info-card-modern {
    background: linear-gradient(135deg, #1a1d29 0%, #252836 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s ease;
}

.info-card-modern:hover::before {
    left: 100%;
}

.info-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.info-card-modern:hover .info-card-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

.info-card-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.info-card-content h4 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.info-card-content p {
    font-size: 1rem;
    color: #e0e6f0;
    margin-bottom: 5px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.info-card-content p a {
    color: #818cf8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card-content p a:hover {
    color: #6366f1;
}

.info-card-content small {
    font-size: 0.85rem;
    color: #6b7280;
    position: relative;
    z-index: 1;
}

.contact-actions {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    color: #818cf8;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateX(5px);
    color: #ffffff;
}

.hours-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.hours-day {
    background: linear-gradient(135deg, #1a1d29 0%, #252836 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hours-day::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #6366f1, #818cf8);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.hours-day.active::before,
.hours-day:hover::before {
    transform: scaleY(1);
}

.hours-day:hover {
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.day-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.day-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.day-status.open {
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.day-status.closed {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.day-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0aec0;
    font-size: 1rem;
}

.day-hours i {
    font-size: 1.2rem;
}

.hours-note {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 20px;
    background-color: rgba(99, 102, 241, 0.1);
    border-left: 4px solid #6366f1;
    border-radius: 10px;
    display: flex;
    gap: 15px;
}

.hours-note i {
    font-size: 1.5rem;
    color: #818cf8;
    flex-shrink: 0;
}

.hours-note p {
    margin: 0;
    color: #a0aec0;
    line-height: 1.7;
}

/* Team Section - Modern */
.team-section {
    padding: 100px 20px;
    background-color: #0a0e1a;
    position: relative;
}

.team-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 50px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.team-stat-item {
    background: linear-gradient(135deg, #1a1d29 0%, #252836 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-stat-item:hover::before {
    opacity: 1;
}

.team-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.stat-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.stat-info {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #818cf8;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #a0aec0;
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.team-card-modern {
    perspective: 1000px;
}

.team-card-inner {
    background: linear-gradient(135deg, #1a1d29 0%, #252836 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card-modern:hover .team-card-inner {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.35);
    border-color: rgba(99, 102, 241, 0.4);
}

.team-photo-modern {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.photo-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-modern:hover .photo-wrapper img {
    transform: scale(1.15);
}

.photo-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 26, 0.9) 100%);
    pointer-events: none;
}

.team-qual-badges {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.qual-badge-modern {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.95) 0%, rgba(129, 140, 248, 0.95) 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    animation: slideInRight 0.5s ease;
    animation-fill-mode: both;
}

.qual-badge-modern:nth-child(2) {
    animation-delay: 0.1s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.team-social-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 2;
}

.team-card-modern:hover .team-social-overlay {
    opacity: 1;
    transform: translateY(0);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(26, 29, 41, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-color: transparent;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.team-info-modern {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-info-modern h3 {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.team-role {
    font-size: 1rem;
    color: #818cf8;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-credentials-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.cred-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #a0aec0;
    transition: all 0.3s ease;
}

.cred-item:hover {
    background-color: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.cred-item i {
    color: #818cf8;
    font-size: 0.9rem;
}

.team-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #a0aec0;
    margin-bottom: 20px;
    flex: 1;
}

.team-specialties-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.specialty-chip {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(129, 140, 248, 0.15) 100%);
    color: #818cf8;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.specialty-chip:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(129, 140, 248, 0.25) 100%);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.team-details-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-details-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.team-details-btn:hover::before {
    width: 300px;
    height: 300px;
}

.team-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

.team-details-btn i {
    transition: transform 0.3s ease;
}

.team-details-btn:hover i {
    transform: translateX(5px);
}

/* Team Modal */
.team-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-modal.active {
    display: flex;
    opacity: 1;
}

.team-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.team-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1d29 0%, #252836 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 25px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.team-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(26, 29, 41, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.team-modal-close:hover {
    background: rgba(239, 68, 68, 0.8);
    border-color: #ef4444;
    transform: rotate(90deg);
}

.team-modal-body {
    padding: 50px 40px;
}

.team-modal-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-photo {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-header-info h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.modal-role {
    font-size: 1.2rem;
    color: #818cf8;
    font-weight: 600;
    margin-bottom: 20px;
}

.modal-credentials-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-cred-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #a0aec0;
}

.modal-cred-item i {
    color: #818cf8;
    font-size: 1.1rem;
}

.team-modal-main {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.modal-section {
    animation: fadeInUp 0.5s ease;
    animation-fill-mode: both;
}

.modal-section:nth-child(1) { animation-delay: 0.1s; }
.modal-section:nth-child(2) { animation-delay: 0.2s; }
.modal-section:nth-child(3) { animation-delay: 0.3s; }
.modal-section:nth-child(4) { animation-delay: 0.4s; }
.modal-section:nth-child(5) { animation-delay: 0.5s; }

.modal-section h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-section h3 i {
    color: #818cf8;
    font-size: 1.5rem;
}

.modal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #a0aec0;
    margin: 0;
}

.modal-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.cert-badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(129, 140, 248, 0.2) 100%);
    border: 2px solid rgba(99, 102, 241, 0.4);
    color: #818cf8;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(129, 140, 248, 0.3) 100%);
    border-color: rgba(99, 102, 241, 0.6);
    transform: translateY(-2px);
}

.modal-methods-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.modal-methods-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background-color: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    color: #e0e6f0;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.modal-methods-list li:hover {
    background-color: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(5px);
}

.modal-methods-list li i {
    color: #818cf8;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.modal-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.specialty-badge-large {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(129, 140, 248, 0.15) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #818cf8;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.specialty-badge-large:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(129, 140, 248, 0.25) 100%);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.modal-achievements {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-achievements li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(129, 140, 248, 0.05) 100%);
    border-left: 4px solid #6366f1;
    border-radius: 12px;
    color: #e0e6f0;
    font-size: 1rem;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.modal-achievements li:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(129, 140, 248, 0.1) 100%);
    border-left-width: 6px;
    transform: translateX(5px);
}

.modal-achievements li i {
    color: #818cf8;
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.modal-cta {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-modal-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    width: 100%;
    justify-content: center;
}

.btn-modal-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
    color: #ffffff;
}

.btn-modal-primary i {
    transition: transform 0.3s ease;
}

.btn-modal-primary:hover i {
    transform: translateX(5px);
}

/* Stagger animation for team cards */
.team-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.team-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.team-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

.team-card-modern:nth-child(4) {
    animation-delay: 0.4s;
}

/* Stagger animation for info cards */
.info-card-modern:nth-child(1) { animation-delay: 0.05s; }
.info-card-modern:nth-child(2) { animation-delay: 0.1s; }
.info-card-modern:nth-child(3) { animation-delay: 0.15s; }
.info-card-modern:nth-child(4) { animation-delay: 0.2s; }
.info-card-modern:nth-child(5) { animation-delay: 0.25s; }
.info-card-modern:nth-child(6) { animation-delay: 0.3s; }

/* Scroll animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card-modern,
.team-card-modern,
.team-stat-item {
    animation: slideInUp 0.6s ease;
    animation-fill-mode: both;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .team-modal-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modal-photo {
        margin: 0 auto;
    }

    .modal-methods-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .company-info-tabs {
        flex-direction: column;
    }

    .info-tab {
        width: 100%;
        justify-content: center;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .team-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid-modern {
        grid-template-columns: 1fr;
    }

    .team-modal-body {
        padding: 40px 25px;
    }

    .team-modal-header {
        gap: 25px;
    }

    .modal-photo {
        width: 150px;
        height: 150px;
    }
}

.team-cta {
    text-align: center;
    margin-top: 60px;
}

.team-cta p {
    font-size: 1.1rem;
    color: #a0aec0;
    margin-bottom: 25px;
}

/* ========================================
   Legal Pages Styles (Cookie Policy, Privacy Policy, Terms)
   ======================================== */

.legal-hero-section {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1d29 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.legal-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.legal-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.legal-hero-icon i {
    font-size: 3rem;
    color: #ffffff;
}

.legal-hero-content h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.legal-hero-subtitle {
    font-size: 1.3rem;
    color: #a0aec0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 25px;
    color: #818cf8;
    font-size: 0.9rem;
    font-weight: 600;
}

.legal-meta i {
    font-size: 1.1rem;
}

.legal-content-section {
    padding: 80px 20px;
    background-color: #0f1117;
}

.legal-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.legal-intro .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e6f0;
    margin: 0;
}

.legal-accordion-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-accordion-item {
    background: linear-gradient(135deg, #1a1d29 0%, #252836 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.legal-accordion-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.legal-accordion-item.active {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.25);
}

.legal-accordion-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.legal-accordion-header:hover {
    background-color: rgba(99, 102, 241, 0.05);
}

.accordion-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(129, 140, 248, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.legal-accordion-item.active .accordion-icon {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    transform: scale(1.1);
}

.accordion-icon i {
    font-size: 1.5rem;
    color: #818cf8;
    transition: color 0.3s ease;
}

.legal-accordion-item.active .accordion-icon i {
    color: #ffffff;
}

.legal-accordion-header h2 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.accordion-arrow {
    font-size: 1.5rem;
    color: #818cf8;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.legal-accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.legal-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.legal-accordion-item.active .legal-accordion-content {
    max-height: 5000px;
    padding: 0 30px 30px;
}

.legal-accordion-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #a0aec0;
    margin-bottom: 20px;
}

.legal-accordion-content p:last-child {
    margin-bottom: 0;
}

.legal-accordion-content h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 30px 0 15px;
}

.legal-accordion-content h3:first-child {
    margin-top: 0;
}

.legal-accordion-content h4 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0e6f0;
    margin: 25px 0 15px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: rgba(99, 102, 241, 0.05);
    border-left: 3px solid #6366f1;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.legal-list li:hover {
    background-color: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

.legal-list li i {
    color: #818cf8;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.legal-list li div {
    flex: 1;
    color: #e0e6f0;
    line-height: 1.7;
}

.legal-list li strong {
    color: #ffffff;
    font-weight: 600;
}

.info-box {
    background-color: rgba(99, 102, 241, 0.1);
    border-left: 4px solid #6366f1;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    gap: 15px;
}

.info-box i {
    font-size: 1.5rem;
    color: #818cf8;
    flex-shrink: 0;
    margin-top: 3px;
}

.info-box p {
    margin: 0;
    color: #e0e6f0;
    line-height: 1.7;
}

.cookie-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.cookie-type-card {
    background: linear-gradient(135deg, rgba(26, 29, 41, 0.8) 0%, rgba(37, 40, 54, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.cookie-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.cookie-type-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-type-icon.essential {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
}

.cookie-type-icon.functional {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.cookie-type-icon.analytics {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.cookie-type-icon i {
    font-size: 2rem;
    color: #818cf8;
}

.cookie-type-card h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.cookie-type-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #a0aec0;
    margin-bottom: 20px;
}

.cookie-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-badge.required {
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.cookie-badge.optional {
    background-color: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.browser-settings {
    margin-top: 30px;
    padding: 25px;
    background-color: rgba(99, 102, 241, 0.05);
    border-radius: 15px;
}

.browser-settings h4 {
    margin-top: 0;
    margin-bottom: 20px;
}

.browser-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.browser-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(26, 29, 41, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.browser-item:hover {
    background-color: rgba(26, 29, 41, 0.8);
    transform: translateX(5px);
}

.browser-item i {
    font-size: 1.8rem;
    color: #818cf8;
    flex-shrink: 0;
}

.browser-item span {
    color: #e0e6f0;
    font-size: 0.95rem;
}

.contact-box {
    margin-top: 30px;
    text-align: center;
}

.contact-box .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-hero-content h1 {
        font-size: 2.5rem;
    }

    .legal-hero-subtitle {
        font-size: 1.1rem;
    }

    .legal-accordion-header {
        padding: 20px;
        flex-wrap: wrap;
    }

    .legal-accordion-header h2 {
        font-size: 1.2rem;
    }

    .accordion-icon {
        width: 40px;
        height: 40px;
    }

    .accordion-icon i {
        font-size: 1.2rem;
    }

    .cookie-types-grid {
        grid-template-columns: 1fr;
    }

    .legal-accordion-content {
        padding: 0 20px;
    }

    .legal-accordion-item.active .legal-accordion-content {
        padding: 0 20px 20px;
    }
}

/* ========================================
   Contact Page Styles
   ======================================== */

/* Contact Hero Section */
.contact-hero-section {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1d29 100%);
    text-align: center;
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 30px 0 20px;
    line-height: 1.2;
}

.contact-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #a0aec0;
    margin-bottom: 40px;
}

.contact-quick-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-info-item i {
    font-size: 2rem;
    color: #818cf8;
}

.quick-info-item strong {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.quick-info-item p {
    font-size: 0.9rem;
    color: #a0aec0;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: #0f1117;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card,
.contact-options-card {
    background-color: #1a1d29;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
}

.contact-info-card h3,
.contact-options-card h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-detail-content h4 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-detail-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #a0aec0;
    margin-bottom: 8px;
}

.contact-detail-content p a {
    color: #818cf8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-content p a:hover {
    color: #6366f1;
}

.contact-detail-content small {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
}

.contact-options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background-color: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateX(5px);
}

.contact-option i {
    font-size: 1.5rem;
    color: #818cf8;
    flex-shrink: 0;
}

.contact-option strong {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-option p {
    font-size: 0.9rem;
    color: #a0aec0;
    margin: 0;
}

/* Contact Form */
.contact-form-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-form-card {
    background-color: #1a1d29;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 1rem;
    color: #a0aec0;
    margin: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background-color: #0f1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-control::placeholder {
    color: #6b7280;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #a0aec0;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: #818cf8;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* Contact Ways Section */
.contact-ways-section {
    padding: 100px 20px;
    background-color: #0a0e1a;
}

.contact-ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-way-card {
    background-color: #1a1d29;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-way-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.3);
}

.way-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.way-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.contact-way-card h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-way-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #a0aec0;
    margin-bottom: 25px;
}

.way-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.way-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #e0e6f0;
}

.way-features li i {
    color: #818cf8;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.way-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: transparent;
    color: #818cf8;
    border: 2px solid #6366f1;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.way-btn:hover {
    background-color: #6366f1;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* ========================================
   FAQ Page Styles
   ======================================== */

/* FAQ Hero Section */
.faq-hero-section {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1d29 100%);
    text-align: center;
}

.faq-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-hero-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 30px 0 20px;
    line-height: 1.2;
}

.faq-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #a0aec0;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: #0f1117;
}

.faq-categories {
    margin-bottom: 40px;
}

.faq-category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.faq-tab {
    padding: 12px 24px;
    background-color: #1a1d29;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #a0aec0;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab:hover {
    border-color: rgba(99, 102, 241, 0.5);
    color: #818cf8;
}

.faq-tab.active {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-color: transparent;
    color: #ffffff;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #1a1d29;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(99, 102, 241, 0.05);
}

.faq-question h3 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 1.2rem;
    color: #818cf8;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: #a0aec0;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 25px;
    color: #a0aec0;
}

.faq-answer li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.faq-answer strong {
    color: #ffffff;
    font-weight: 600;
}

.faq-cta {
    margin-top: 60px;
    text-align: center;
}

.faq-cta .cta-box {
    background: linear-gradient(135deg, #1a1d29 0%, #252836 50%, #1a1d29 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
}

.faq-cta h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a0aec0;
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content-modern,
    .mission-content,
    .contact-content-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-sidebar {
        position: static;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid,
    .team-grid,
    .contact-ways-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-title,
    .contact-hero-title,
    .faq-hero-title {
        font-size: 2rem;
    }

    .about-hero-description,
    .contact-hero-description,
    .faq-hero-description {
        font-size: 1rem;
    }

    .contact-quick-info {
        flex-direction: column;
        gap: 20px;
    }

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

    .faq-category-tabs {
        flex-direction: column;
    }

    .faq-tab {
        width: 100%;
    }
}

/* Thanks Section */
.thanks-section {
    padding: 120px 20px;
    background-color: #0a0e1a;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.thanks-icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    animation: scaleIn 0.6s ease-out;
}

.thanks-icon-circle i {
    font-size: 4rem;
    color: #ffffff;
    animation: checkmark 0.8s ease-out 0.3s both;
}

.thanks-icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
    z-index: 1;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(45deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.thanks-text-content {
    margin-bottom: 60px;
}

.thanks-text-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.thanks-text-content .section-badge i {
    font-size: 1rem;
}

.thanks-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.thanks-description {
    font-size: 1.15rem;
    color: #a0aec0;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.thanks-info-card {
    background-color: #1a1d29;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.thanks-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.thanks-info-card .info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.thanks-info-card .info-card-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.thanks-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.thanks-info-card p {
    font-size: 0.95rem;
    color: #a0aec0;
    line-height: 1.6;
    margin: 0;
}

.thanks-info-card p a {
    color: #818cf8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.thanks-info-card p a:hover {
    color: #6366f1;
    text-decoration: underline;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.thanks-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.thanks-actions .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    color: #ffffff;
    border: none;
}

.thanks-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.thanks-actions .btn-outline-primary {
    background: transparent;
    color: #818cf8;
    border: 2px solid #6366f1;
}

.thanks-actions .btn-outline-primary:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #818cf8;
    transform: translateY(-2px);
}

.thanks-additional-info {
    margin-top: 50px;
}

.additional-info-box {
    background-color: #1a1d29;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.additional-info-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
}

.additional-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.additional-info-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #a0aec0;
    font-size: 1rem;
    line-height: 1.6;
}

.additional-info-box ul li:last-child {
    border-bottom: none;
}

.additional-info-box ul li i {
    color: #6366f1;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .thanks-section {
        padding: 80px 20px;
    }

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

    .thanks-description {
        font-size: 1rem;
    }

    .thanks-icon-circle {
        width: 100px;
        height: 100px;
    }

    .thanks-icon-circle i {
        font-size: 3rem;
    }

    .thanks-icon-pulse {
        width: 100px;
        height: 100px;
    }

    .thanks-info-cards {
        grid-template-columns: 1fr;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .additional-info-box {
        padding: 30px 20px;
    }
}