/**
* Template Name: Landify
* Template URL: https://bootstrapmade.com/landify-bootstrap-landing-page-template/
* Updated: Aug 04 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font:
        "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Raleway", 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: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #03287b;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #063cad;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #01164d;
    /* 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: #ffffff;
    /* 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: #03287b;
    /* The default color of the main navmenu links */
    --nav-hover-color: #01164d;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #03287b;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #01164d;
    /* 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: #f0f6f5;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #031a1a;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #0f302f;
    --contrast-color: #ffffff;
}

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

html {
    overflow-x: hidden;
    max-width: 100%;
}

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

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
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: rgba(1, 20, 64, 0.95);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 500;
    color: var(--background-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: #ffffff;
}

/*--------------------------------------------------------------
# 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-mobile-background-color);
        padding: 18px 15px;
        font-size: 16px;
        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-dropdown-background-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;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        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;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

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

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: var(--accent-color);
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

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

.scroll-top i {
    font-size: 28px;
    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;
    bottom: 75px;
}

/*--------------------------------------------------------------
# WhatsApp Floating Button
--------------------------------------------------------------*/
.whatsapp-float {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 99998;
    background-color: #25d366;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.4s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float i {
    font-size: 28px;
    color: #ffffff;
    line-height: 0;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }

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

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .scroll-top {
        width: 46px;
        height: 46px;
    }

    .scroll-top i {
        font-size: 24px;
    }

    .scroll-top.active {
        bottom: 70px;
    }

    .whatsapp-float {
        width: 46px;
        height: 46px;
        bottom: 15px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
}

/*--------------------------------------------------------------
# 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: 20px 0;
    position: relative;
}

.page-title h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 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: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 30px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
}

.section-title span {
    position: absolute;
    top: 4px;
    color: color-mix(in srgb, var(--heading-color), transparent 95%);
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 52px;
    text-transform: uppercase;
    line-height: 1;
}

.section-title p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-title span {
        font-size: 38px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 140px 0 60px 0;
    background: linear-gradient(
        135deg,
        var(--surface-color) 0%,
        color-mix(in srgb, var(--accent-color), transparent 95%) 100%
    );
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 20% 80%,
        color-mix(in srgb, var(--accent-color), transparent 90%) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.hero .hero-content {
    padding: 20px 0;
}

.hero .hero-content .hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .hero .hero-content .hero-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }
}

.hero .hero-content .hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 48px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero .hero-content .hero-description {
        font-size: 1.125rem;
        margin-bottom: 40px;
    }
}

.hero .hero-content .hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 64px;
}

@media (max-width: 576px) {
    .hero .hero-content .hero-actions {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 48px;
    }
}

.hero .hero-content .hero-actions .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero .hero-content .hero-actions .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-content .hero-actions .btn-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.hero .hero-content .hero-actions .btn-secondary i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.hero .hero-content .hero-actions .btn-secondary:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.hero .hero-content .hero-stats {
    display: flex;
    gap: 48px;
}

@media (max-width: 768px) {
    .hero .hero-content .hero-stats {
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .hero .hero-content .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
}

.hero .hero-content .hero-stats .stat-item {
    text-align: left;
}

.hero .hero-content .hero-stats .stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.hero .hero-content .hero-stats .stat-item .stat-label {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 400;
}

.hero .hero-visual {
    position: relative;
}

.hero .hero-visual .hero-image-wrapper {
    position: relative;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.hero .hero-visual .hero-image-wrapper .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .hero-visual .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero .hero-visual .floating-elements .floating-card {
    position: absolute;
    background: var(--surface-color);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 32px
        color-mix(in srgb, var(--default-color), transparent 85%);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floating 3s ease-in-out infinite;
}

.hero .hero-visual .floating-elements .floating-card i {
    font-size: 1.125rem;
    color: var(--accent-color);
}

.hero .hero-visual .floating-elements .floating-card span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--heading-color);
    white-space: nowrap;
}

.hero .hero-visual .floating-elements .floating-card.card-1 {
    top: 10px;
    left: 40%;
    animation-delay: 0s;
}

.hero .hero-visual .floating-elements .floating-card.card-2 {
    top: 50%;
    right: 15px;
    animation-delay: -1s;
}

.hero .hero-visual .floating-elements .floating-card.card-3 {
    bottom: 25%;
    left: 15px;
    animation-delay: -2s;
}

@media (max-width: 768px) {
    .hero .hero-visual .floating-elements .floating-card {
        padding: 12px 16px;
    }

    .hero .hero-visual .floating-elements .floating-card span {
        font-size: 0.75rem;
    }

    .hero .hero-visual .floating-elements .floating-card.card-1 {
        left: 5px;
    }

    .hero .hero-visual .floating-elements .floating-card.card-2 {
        right: 5px;
    }

    .hero .hero-visual .floating-elements .floating-card.card-3 {
        left: 10px;
    }
}

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

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

@media (max-width: 992px) {
    .hero {
        padding: 80px 0;
    }
}

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content-wrapper {
    padding-right: 2rem;
}

@media (max-width: 992px) {
    .about .content-wrapper {
        padding-right: 0;
        margin-bottom: 3rem;
    }
}

.about .section-header {
    margin-bottom: 2rem;
}

.about .section-header h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
}

@media (max-width: 768px) {
    .about .section-header h2 {
        font-size: 1.875rem;
    }
}

.about .section-badge {
    display: inline-block;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.about .lead-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    font-weight: 500;
}

.about .description-text {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .about .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.about .stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: var(--surface-color);
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

.about .stat-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about .stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about .stat-item .stat-label {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.about .visual-section {
    position: relative;
}

.about .main-image-container {
    position: relative;
    margin-bottom: 2rem;
}

.about .main-image-container .main-visual {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about .main-image-container .overlay-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
    .about .main-image-container .overlay-card {
        position: static;
        margin-top: 2rem;
        max-width: none;
    }
}

.about .main-image-container .overlay-card .card-content {
    position: relative;
}

.about .main-image-container .overlay-card .card-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: var(--heading-color);
}

.about .main-image-container .overlay-card .card-content p {
    margin: 0;
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.5;
}

.about .main-image-container .overlay-card .card-content .card-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .main-image-container .overlay-card .card-content .card-icon i {
    font-size: 1.125rem;
}

.about .secondary-images .secondary-img {
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.about .features-section {
    padding: 3rem 0;
    background-color: color-mix(
        in srgb,
        var(--surface-color),
        var(--background-color) 50%
    );
    border-radius: 12px;
    margin-top: 2rem;
}

.about .feature-box {
    text-align: center;
    padding: 1.5rem;
}

.about .feature-box .feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.about .feature-box .feature-icon:hover {
    transform: translateY(-5px);
}

.about .feature-box h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
    font-weight: 600;
}

.about .feature-box p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.6;
    margin: 0;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .tabs-wrapper {
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 40px;
    /* box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%); */
}

.features .nav-tabs {
    border: 0;
    gap: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .features .nav-tabs {
        flex-direction: column;
        gap: 15px;
    }
}

.features .nav-item {
    flex: 1;
    min-width: 0;
}

@media (max-width: 992px) {
    .features .nav-item {
        flex: none;
    }
}

.features .nav-link {
    background: color-mix(
        in srgb,
        var(--surface-color),
        var(--default-color) 3%
    );
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 80px;
    cursor: pointer;
}

.features .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
    );
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

@media (max-width: 768px) {
    .features .nav-link {
        padding: 20px 15px;
        min-height: 70px;
    }
}

.features .nav-link .tab-icon {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.features .nav-link .tab-icon i {
    font-size: 24px;
    color: var(--contrast-color);
}

@media (max-width: 768px) {
    .features .nav-link .tab-icon {
        width: 40px;
        height: 40px;
    }

    .features .nav-link .tab-icon i {
        font-size: 20px;
    }
}

.features .nav-link .tab-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.features .nav-link .tab-content h5 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    transition: color 0.4s ease;
}

@media (max-width: 768px) {
    .features .nav-link .tab-content h5 {
        font-size: 14px;
    }
}

.features .nav-link .tab-content span {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: color 0.4s ease;
}

@media (max-width: 768px) {
    .features .nav-link .tab-content span {
        font-size: 12px;
    }
}

.features .nav-link:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 15px 40px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .nav-link:hover::before {
    opacity: 1;
}

.features .nav-link:hover .tab-icon {
    background: var(--contrast-color);
    box-shadow: 0 8px 25px
        color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover .tab-icon i {
    color: var(--accent-color);
}

.features .nav-link:hover .tab-content h5,
.features .nav-link:hover .tab-content span {
    color: var(--contrast-color);
}

.features .nav-link.active {
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .nav-link.active::before {
    opacity: 1;
}

.features .nav-link.active .tab-icon {
    background: var(--contrast-color);
}

.features .nav-link.active .tab-icon i {
    color: var(--accent-color);
}

.features .nav-link.active .tab-content h5,
.features .nav-link.active .tab-content span {
    color: var(--contrast-color);
}

.features .tab-content .tab-pane {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .features .tab-content .tab-pane {
        padding: 20px 0;
    }
}

.features .content-wrapper {
    padding-right: 40px;
}

@media (max-width: 992px) {
    .features .content-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.features .content-wrapper .icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
    );
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .content-wrapper .icon-badge i {
    font-size: 30px;
    color: var(--contrast-color);
}

.features .content-wrapper h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .features .content-wrapper h3 {
        font-size: 24px;
    }
}

.features .content-wrapper p {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 30px;
}

.features .content-wrapper .feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

@media (max-width: 576px) {
    .features .content-wrapper .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.features .content-wrapper .feature-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.features .content-wrapper .feature-grid .feature-item i {
    font-size: 16px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.features .content-wrapper .feature-grid .feature-item span {
    font-size: 14px;
    color: var(--default-color);
    line-height: 1.4;
}

.features .content-wrapper .stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

@media (max-width: 576px) {
    .features .content-wrapper .stats-row {
        gap: 20px;
    }
}

.features .content-wrapper .stats-row .stat-item {
    text-align: center;
}

.features .content-wrapper .stats-row .stat-item .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

@media (max-width: 576px) {
    .features .content-wrapper .stats-row .stat-item .stat-number {
        font-size: 20px;
    }
}

.features .content-wrapper .stats-row .stat-item .stat-label {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features .content-wrapper .btn-primary {
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
    );
    color: var(--contrast-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .content-wrapper .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px
        color-mix(in srgb, var(--accent-color), transparent 60%);
    color: var(--contrast-color);
}

.features .content-wrapper .btn-primary:hover i {
    transform: translateX(5px);
}

.features .content-wrapper .btn-primary i {
    transition: transform 0.3s ease;
}

.features .visual-content {
    position: relative;
}

.features .visual-content .main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.features .visual-content .main-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.features .visual-content .main-image:hover img {
    transform: scale(1.05);
}

.features .visual-content .floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--surface-color);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px
        color-mix(in srgb, var(--default-color), transparent 80%);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

@media (max-width: 576px) {
    .features .visual-content .floating-card {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
        gap: 10px;
    }
}

.features .visual-content .floating-card i {
    font-size: 28px;
    color: var(--accent-color);
}

@media (max-width: 576px) {
    .features .visual-content .floating-card i {
        font-size: 24px;
    }
}

.features .visual-content .floating-card .card-content span {
    display: block;
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.features .visual-content .floating-card .card-content strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
}

@media (max-width: 576px) {
    .features .visual-content .floating-card .card-content strong {
        font-size: 14px;
    }
}

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

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards .feature-card,
.features-cards .compliance-card {
    background-color: var(--surface-color);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.features-cards .feature-card:hover,
.features-cards .compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-color);
}

.features-cards .feature-card .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    margin-bottom: 20px;
}

.features-cards .feature-card .icon-box i {
    font-size: 28px;
    color: var(--accent-color);
}

.features-cards .feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.features-cards .feature-card p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.features-cards .feature-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.features-cards .feature-card .feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 15px;
}

.features-cards .feature-card .feature-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.features-cards .feature-card .read-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.features-cards .feature-card .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.features-cards .feature-card .read-more:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.features-cards .feature-card .read-more:hover i {
    transform: translateX(5px);
}

.features-cards .compliance-card {
    text-align: center;
    padding: 25px 20px;
}

.features-cards .compliance-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.features-cards .compliance-card .status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.features-cards .compliance-card .status.in-progress {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.features-cards .compliance-card .status.compliant {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.features-cards .compliance-card .status.planned {
    background-color: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

@media (max-width: 992px) {
    .features-cards .feature-card {
        margin-bottom: 20px;
    }

    .features-cards .compliance-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .features-cards .feature-card .icon-box {
        width: 50px;
        height: 50px;
    }

    .features-cards .feature-card .icon-box i {
        font-size: 24px;
    }

    .features-cards .feature-card h3 {
        font-size: 20px;
    }

    .features-cards .compliance-card h4 {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-card {
    height: 100%;
    background-color: var(--surface-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px
        color-mix(in srgb, var(--default-color), transparent 94%);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.features-2 .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-2 .feature-card.highlighted {
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 85%),
        var(--surface-color)
    );
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.features-2 .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 18px;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), transparent 40%)
    );
    color: var(--contrast-color);
}

.features-2 .feature-icon i {
    font-size: 1.75rem;
}

.features-2 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.features-2 p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.features-2 .feature-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features-2 .feature-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.features-2 .feature-benefits li i {
    color: var(--accent-color);
    font-size: 1rem;
}

.features-2 .feature-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px
        color-mix(in srgb, var(--default-color), transparent 92%);
}

.features-2 .feature-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.features-2 .feature-testimonial {
    margin-top: 4rem;
    background-color: var(--surface-color);
    border-radius: 16px;
    box-shadow: 0 15px 40px
        color-mix(in srgb, var(--default-color), transparent 94%);
    overflow: hidden;
}

.features-2 .testimonial-image {
    height: 100%;
}

.features-2 .testimonial-image img {
    height: 100%;
    object-fit: cover;
}

.features-2 .testimonial-content {
    padding: 3rem;
}

.features-2 .testimonial-content .quote-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    font-size: 1.75rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.features-2 .testimonial-content p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--heading-color);
}

.features-2 .testimonial-content .testimonial-author h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.features-2 .testimonial-content .testimonial-author span {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .features-2 .feature-card {
        margin-bottom: 1.5rem;
        padding: 2rem;
    }

    .features-2 .testimonial-content {
        padding: 2rem;
        text-align: center;
    }

    .features-2 .testimonial-content .quote-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .features-2 .feature-testimonial {
        margin-top: 2rem;
    }

    .features-2 .testimonial-image {
        max-height: 300px;
        overflow: hidden;
    }

    .features-2 .testimonial-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .features-2 .testimonial-content {
        padding: 1.5rem;
    }

    .features-2 .testimonial-content p {
        font-size: 1.1rem;
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%,
        var(--surface-color) 100%
    );
    position: relative;
    overflow: hidden;
}

.call-to-action::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
    transform: rotate(-15deg);
    z-index: 1;
}

.call-to-action .container {
    position: relative;
    z-index: 2;
}

.call-to-action .image-wrapper {
    position: relative;
}

.call-to-action .image-wrapper .main-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px
        color-mix(in srgb, var(--default-color), transparent 85%);
    transition: transform 0.3s ease;
}

.call-to-action .image-wrapper .main-image:hover {
    transform: translateY(-5px);
}

.call-to-action .image-wrapper .floating-card {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 30px;
    border-radius: 15px;
    max-width: 280px;
    box-shadow: 0 15px 35px
        color-mix(in srgb, var(--accent-color), transparent 70%);
    z-index: 3;
}

.call-to-action .image-wrapper .floating-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
}

.call-to-action .image-wrapper .floating-card h4 {
    color: var(--contrast-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.call-to-action .image-wrapper .floating-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

@media (max-width: 991px) {
    .call-to-action .image-wrapper .floating-card {
        right: auto;
        left: 20px;
        transform: translateY(-30%);
        max-width: 260px;
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .call-to-action .image-wrapper .floating-card {
        left: 10px;
        max-width: 240px;
        padding: 20px;
    }

    .call-to-action .image-wrapper .floating-card h4 {
        font-size: 1rem;
    }

    .call-to-action .image-wrapper .floating-card p {
        font-size: 0.85rem;
    }
}

.call-to-action .content-area {
    padding-left: 0;
}

.call-to-action .content-area h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .call-to-action .content-area h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .call-to-action .content-area h2 {
        font-size: 1.75rem;
    }
}

.call-to-action .content-area > p {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 30px;
    line-height: 1.6;
}

.call-to-action .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.call-to-action .feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.call-to-action .feature-list li:last-child {
    margin-bottom: 0;
}

.call-to-action .feature-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-right: 12px;
    margin-top: 2px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.call-to-action .feature-list li span {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--default-color);
}

.call-to-action .cta-wrapper {
    margin-top: 35px;
}

.call-to-action .btn-cta {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 20px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .btn-cta:hover {
    background: color-mix(
        in srgb,
        var(--accent-color),
        var(--default-color) 10%
    );
    transform: translateY(-3px);
    box-shadow: 0 12px 30px
        color-mix(in srgb, var(--accent-color), transparent 60%);
    color: var(--contrast-color);
}

.call-to-action .btn-cta:focus {
    outline: none;
    box-shadow: 0 0 0 3px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 991px) {
    .call-to-action .content-area {
        margin-top: 50px;
    }
}

@media (max-width: 576px) {
    .call-to-action {
        padding: 40px 0;
    }

    .call-to-action .image-wrapper .floating-card {
        position: relative;
        right: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
    padding: 10px 0;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-slide img {
    transition: 0.3s;
}

.clients .swiper-slide img:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.testimonials .testimonial-masonry::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        color-mix(in srgb, var(--accent-color), transparent 95%),
        transparent
    );
    opacity: 0.5;
    z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
    margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
    margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials
    .testimonial-item.highlight
    .testimonial-content
    .quote-pattern
    i {
    color: var(--accent-color);
}

.testimonials .testimonial-content {
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .testimonial-content:hover {
    transform: translateY(-5px);
}

.testimonials .testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 1.5rem 0;
    position: relative;
}

.testimonials .quote-pattern {
    position: absolute;
    top: -1.25rem;
    left: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.testimonials .client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonials .client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials .client-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
    .testimonials .testimonial-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonials .testimonial-item:nth-child(3n-1),
    .testimonials .testimonial-item:nth-child(3n) {
        margin-top: 0;
    }

    .testimonials .testimonial-item:nth-child(even) {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials .testimonial-masonry {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials .testimonial-item:nth-child(even) {
        margin-top: 0;
    }

    .testimonials .testimonial-content {
        padding: 1.5rem;
    }

    .testimonials .testimonial-content p {
        font-size: 0.9375rem;
        margin: 1.25rem 0;
    }

    .testimonials .quote-pattern {
        width: 2.25rem;
        height: 2.25rem;
        top: -1.125rem;
    }

    .testimonials .quote-pattern i {
        font-size: 1.125rem;
    }

    .testimonials .client-info {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .testimonials .client-image {
        width: 45px;
        height: 45px;
    }

    .testimonials .client-details h3 {
        font-size: 1rem;
    }

    .testimonials .client-details .position {
        font-size: 0.8125rem;
    }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .main-headline {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.stats .main-description {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats .achievement-badge {
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #6366f1 30%)
    );
    border-radius: 2rem;
    padding: 1.25rem 2rem;
    display: inline-block;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.stats .achievement-badge .achievement-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stats .achievement-badge .achievement-icon {
    background: var(--contrast-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats .achievement-badge .achievement-icon i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.stats .achievement-badge .achievement-details {
    color: var(--contrast-color);
}

.stats .achievement-badge .achievement-title {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--heading-font);
    margin-bottom: 0.25rem;
}

.stats .achievement-badge .achievement-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
}

.stats .stats-grid {
    margin-top: 2rem;
}

.stats .stat-item {
    background: var(--surface-color);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats .stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #6366f1 40%)
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stats .stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px
        color-mix(in srgb, var(--accent-color), transparent 85%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.stats .stat-item:hover::before {
    transform: scaleX(1);
}

.stats .stat-item.featured {
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #6366f1 30%)
    );
    color: var(--contrast-color);
    transform: scale(1.05);
}

.stats .stat-item.featured .stat-icon {
    background: var(--contrast-color);
}

.stats .stat-item.featured .stat-icon i {
    color: var(--accent-color);
}

.stats .stat-item.featured .stat-number {
    color: var(--contrast-color);
}

.stats .stat-item.featured .stat-label {
    color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.stats .stat-item.featured .stat-growth {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.stats .stat-item.featured .stat-growth i {
    color: var(--contrast-color);
}

.stats .stat-item.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.stats .stat-icon {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stats .stat-icon i {
    color: var(--accent-color);
    font-size: 1.75rem;
}

.stats .stat-number {
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stats .stat-number .purecounter {
    font-size: inherit;
    color: inherit;
}

.stats .stat-label {
    color: var(--heading-color);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--heading-font);
    margin-bottom: 1rem;
}

.stats .stat-growth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.875rem;
    font-weight: 500;
}

.stats .stat-growth i {
    color: #22c55e;
    font-size: 0.75rem;
}

@media (max-width: 1200px) {
    .stats .main-headline {
        font-size: 2.25rem;
    }

    .stats .stat-item {
        padding: 1.75rem 1.25rem;
    }

    .stats .stat-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .stats .main-headline {
        font-size: 2rem;
    }

    .stats .achievement-badge {
        padding: 1rem 1.5rem;
        margin-bottom: 2rem;
    }

    .stats .achievement-badge .achievement-content {
        gap: 0.75rem;
    }

    .stats .achievement-badge .achievement-icon {
        width: 40px;
        height: 40px;
    }

    .stats .achievement-badge .achievement-icon i {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .stats .main-headline {
        font-size: 1.75rem;
    }

    .stats .main-description {
        font-size: 1rem;
    }

    .stats .achievement-badge .achievement-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .stats .stat-item {
        padding: 1.5rem 1rem;
    }

    .stats .stat-item.featured {
        transform: none;
    }

    .stats .stat-item.featured:hover {
        transform: translateY(-8px);
    }

    .stats .stat-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .stats .stat-icon i {
        font-size: 1.5rem;
    }

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

    .stats .stat-label {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Stats Section - Modern Design
--------------------------------------------------------------*/
.stats-section-modern {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 50%, #ffffff 100%);
    overflow: hidden;
}

.stats-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(3, 40, 123, 0.02) 100%
    );
    pointer-events: none;
}

/* Modern Stat Card */
.stat-card-modern {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    box-shadow: 0 8px 24px rgba(3, 40, 123, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(1, 22, 77, 0.05) 0%,
        rgba(6, 60, 173, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.stat-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 48px rgba(3, 40, 123, 0.15);
    border-color: rgba(6, 60, 173, 0.3);
}

.stat-card-modern:hover::before {
    opacity: 1;
}

/* Icon Wrapper with Glow */
.stat-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #063cad 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%,
    100% {
        box-shadow:
            0 0 0 0 rgba(1, 22, 77, 0.4),
            0 8px 20px rgba(1, 22, 77, 0.2);
    }

    50% {
        box-shadow:
            0 0 0 15px rgba(1, 22, 77, 0),
            0 12px 30px rgba(1, 22, 77, 0.3);
    }
}

.stat-card-modern:hover .stat-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(1, 22, 77, 0.4);
}

.stat-icon-wrapper i {
    font-size: 2.75rem;
    color: #ffffff;
    transition: transform 0.4s ease;
    z-index: 3;
}

.stat-card-modern:hover .stat-icon-wrapper i {
    transform: scale(1.1);
}

/* Icon Glow Effect */
.icon-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #063cad);
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
    z-index: 1;
}

.stat-card-modern:hover .icon-glow {
    opacity: 0.6;
}

/* Content Section */
.stat-content-modern {
    position: relative;
    z-index: 2;
}

.stat-number-modern {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--heading-font);
    background: linear-gradient(135deg, var(--accent-color) 0%, #063cad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.stat-card-modern:hover .stat-number-modern {
    transform: scale(1.05);
}

.stat-number-modern .purecounter {
    font-size: inherit;
    font-weight: inherit;
}

.stat-label-modern {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    font-family: var(--heading-font);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.stat-card-modern:hover .stat-label-modern {
    color: var(--accent-color);
}

/* Decorative Corner */
.stat-decorative-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        transparent 50%,
        rgba(6, 60, 173, 0.08) 50%
    );
    border-radius: 0 20px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.stat-card-modern:hover .stat-decorative-corner {
    opacity: 1;
}

/* Gradient Overlay */
.stat-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #063cad 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}

.stat-card-modern:hover .stat-gradient-overlay {
    transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .stat-card-modern {
        padding: 2rem 1.5rem;
    }

    .stat-icon-wrapper {
        width: 85px;
        height: 85px;
    }

    .stat-icon-wrapper i {
        font-size: 2.25rem;
    }

    .stat-number-modern {
        font-size: 3rem;
    }

    .stat-label-modern {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .stat-card-modern {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }

    .stat-icon-wrapper {
        width: 75px;
        height: 75px;
        margin-bottom: 1.25rem;
    }

    .stat-icon-wrapper i {
        font-size: 2rem;
    }

    .stat-number-modern {
        font-size: 2.5rem;
    }

    .stat-label-modern {
        font-size: 0.9375rem;
    }
}

@media (max-width: 576px) {
    .stat-card-modern {
        padding: 1.5rem 1rem;
    }

    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .stat-icon-wrapper i {
        font-size: 1.75rem;
    }

    .stat-number-modern {
        font-size: 2.25rem;
    }
}

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

.services .intro-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services .intro-content .section-badge i {
    font-size: 12px;
}

.services .intro-content .section-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .services .intro-content .section-heading {
        font-size: 2.2rem;
    }
}

.services .intro-content .section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
}

.services .intro-content .cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .intro-content .cta-button:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    color: var(--contrast-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px
        color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .hero-visual {
    position: relative;
}

.services .hero-visual img {
    border-radius: 20px;
    box-shadow: 0 20px 60px
        color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 991px) {
    .services .hero-visual {
        margin-top: 3rem;
    }
}

.services .services-grid .service-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
    overflow: hidden;
}

.services .services-grid .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.services .services-grid .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px
        color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .services-grid .service-card:hover::before {
    transform: scaleX(1);
}

.services .services-grid .service-card:hover .card-number span {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.services .services-grid .service-card .card-number {
    margin-bottom: 1.5rem;
}

.services .services-grid .service-card .card-number span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.services .services-grid .service-card .card-content .service-title a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title a:hover {
    color: var(--accent-color);
}

.services .services-grid .service-card .card-content .service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
}

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

    .services .intro-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .services .services-grid .service-card {
        padding: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
    --card-radius: 16px;
    --card-shadow: 0 10px 30px
        color-mix(in srgb, var(--default-color), transparent 92%);
    --muted: color-mix(in srgb, var(--default-color), transparent 55%);
    --line: color-mix(in srgb, var(--default-color), transparent 85%);
    --accent-soft: color-mix(in srgb, var(--accent-color), transparent 85%);
    --accent-strong: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .pricing-toggle-container {
    text-align: center;
}

.pricing .pricing-toggle-container .pricing-toggle {
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border: 1px solid var(--accent-soft);
}

.pricing .pricing-toggle-container .pricing-toggle .monthly,
.pricing .pricing-toggle-container .pricing-toggle .yearly {
    font-weight: 600;
    color: var(--default-color);
    opacity: 0.7;
    transition: 0.3s;
    cursor: pointer;
}

.pricing .pricing-toggle-container .pricing-toggle .monthly.active,
.pricing .pricing-toggle-container .pricing-toggle .yearly.active {
    color: var(--heading-color);
    opacity: 1;
}

.pricing .pricing-toggle-container .pricing-toggle .switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing .pricing-toggle-container .pricing-toggle .switch .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--accent-soft);
    transition: 0.3s;
    border-radius: 999px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch .slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    top: 3px;
    background-color: var(--surface-color);
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 8px
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.pricing
    .pricing-toggle-container
    .pricing-toggle
    .switch
    input:checked
    + .slider {
    background: var(--accent-color);
}

.pricing
    .pricing-toggle-container
    .pricing-toggle
    .switch
    input:checked
    + .slider::before {
    transform: translateX(26px);
}

.pricing .pricing-toggle-container .hint {
    color: var(--muted);
}

.pricing .price-card {
    background: var(--surface-color);
    border: 1px solid var(--line);
    border-radius: var(--card-radius);
    padding: 28px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s;
}

.pricing .price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px
        color-mix(in srgb, var(--default-color), transparent 88%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .price-card.featured {
    border-color: var(--accent-strong);
    box-shadow: 0 16px 44px
        color-mix(in srgb, var(--accent-color), transparent 80%);
    position: relative;
    background:
        radial-gradient(
                1200px 1200px at 110% -10%,
                color-mix(in srgb, var(--accent-color), transparent 92%) 0%,
                transparent 50%
            )
            no-repeat,
        var(--surface-color);
}

.pricing .price-card.featured .btn-choose {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .price-card.featured .btn-choose:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 8%);
    color: var(--contrast-color);
}

.pricing .price-card .ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 18px
        color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pricing .price-card .ribbon i {
    font-size: 12px;
}

.pricing .price-card .card-head {
    margin-bottom: 18px;
}

.pricing .price-card .card-head .badge-title {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border: 1px solid var(--accent-soft);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.pricing .price-card .card-head .title {
    font-size: 22px;
    margin: 2px 0 8px;
}

.pricing .price-card .card-head .subtitle {
    color: var(--muted);
    margin: 0 0 14px;
}

.pricing .price-card .card-head .price-wrap {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.pricing .price-card .card-head .price-wrap .price {
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-weight: 800;
    line-height: 1;
    display: none;
}

.pricing .price-card .card-head .price-wrap .price sup {
    font-size: 18px;
    top: -0.6em;
    position: relative;
    margin-right: 2px;
}

.pricing .price-card .card-head .price-wrap .price.price-monthly,
.pricing .price-card .card-head .price-wrap .price.price-yearly {
    font-size: 40px;
}

.pricing .price-card .card-head .price-wrap .price .period {
    font-size: 14px;
    color: var(--muted);
    margin-left: 6px;
    font-weight: 600;
}

.pricing .price-card .feature-list {
    border-top: 1px dashed var(--line);
    padding-top: 16px;
}

.pricing .price-card .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--default-color);
}

.pricing .price-card .feature-list li i {
    color: var(--accent-color);
    font-size: 18px;
}

.pricing .price-card .feature-list li.muted {
    color: var(--muted);
}

.pricing .price-card .feature-list li.muted i {
    color: var(--muted);
}

.pricing .price-card .cta {
    margin-top: auto;
}

.pricing .price-card .cta .btn-choose {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    transition: 0.3s;
}

.pricing .price-card .cta .btn-choose:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .pricing-toggle-container ~ .row .price-card .price-monthly {
    display: inline-flex;
}

.pricing .pricing-toggle-container ~ .row .price-card .price-yearly {
    display: none;
}

@supports (selector(:has(*))) {
    .pricing
        .pricing-toggle-container:has(.switch input:checked)
        ~ .row
        .price-card
        .price-monthly {
        display: none;
    }

    .pricing
        .pricing-toggle-container:has(.switch input:checked)
        ~ .row
        .price-card
        .price-yearly {
        display: inline-flex;
    }

    .pricing
        .pricing-toggle-container:has(.switch input:checked)
        ~ .row
        .pricing-toggle
        .monthly {
        opacity: 0.6;
    }

    .pricing
        .pricing-toggle-container:has(.switch input:checked)
        ~ .row
        .pricing-toggle
        .yearly {
        opacity: 1;
        color: var(--heading-color);
    }
}

@supports not (selector(:has(*))) {
    .pricing .pricing-toggle-container .yearly::after {
        content: " ";
    }
}

@media (max-width: 992px) {
    .pricing .price-card .card-head .price-wrap .price.price-monthly,
    .pricing .price-card .card-head .price-wrap .price.price-yearly {
        font-size: 36px;
    }

    .pricing .price-card .card-head .price-wrap .price sup {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .pricing .price-card {
        padding: 22px;
    }

    .pricing .pricing-toggle-container .pricing-toggle {
        gap: 10px;
    }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 5px;
    overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .section-category {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact .content h2 {
    font-weight: 700;
    line-height: 1.2;
}

.contact .content .lead {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.contact .contact-info .info-item {
    font-size: 1.1rem;
}

.contact .contact-info .info-item i {
    color: var(--accent-color);
    font-size: 1.4rem;
}

.contact .contact-info .map-link {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact .contact-info .map-link i {
    transition: transform 0.3s ease;
}

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

.contact .contact-info .map-link:hover i {
    transform: translateX(5px);
}

.contact .contact-form {
    background-color: var(--surface-color);
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
    padding: 0.75rem 1.25rem;
    border-color: #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
    border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
    box-shadow: 0 0 0 0.25rem
        color-mix(in srgb, var(--accent-color), transparent 90%);
}

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

.contact .contact-form .btn-submit {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact .contact-form .btn-submit:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-1px);
}

.contact .contact-form .btn-submit:active {
    transform: translateY(0);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
    height: auto !important;
}

.service-details .service-header {
    margin-bottom: 40px;
}

.service-details .service-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.service-details .service-header h1:after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
}

.service-details .service-header .service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 25px;
}

.service-details .service-header .service-meta span {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-header .service-meta span i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 16px;
}

.service-details .service-header .lead {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-tabs {
    margin-bottom: 50px;
}

.service-details .service-tabs .nav-tabs {
    border-bottom: 2px solid
        color-mix(in srgb, var(--heading-color), transparent 90%);
    margin-bottom: 30px;
}

.service-details .service-tabs .nav-tabs .nav-item {
    margin-right: 5px;
}

.service-details .service-tabs .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 12px 20px;
    font-weight: 600;
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
    position: relative;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
    margin-right: 8px;
    font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

.service-details .service-tabs .nav-tabs .nav-link:hover {
    color: var(--heading-color);
    background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link:hover:after {
    width: 30%;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link.active:after {
    width: 100%;
}

.service-details .service-tabs .tab-content .content-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-details .service-tabs .tab-content .content-block p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-details .service-tabs .tab-content img {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .process-timeline {
    position: relative;
    padding-left: 30px;
}

.service-details .service-tabs .tab-content .process-timeline:before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 15px;
    width: 2px;
    background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item {
    position: relative;
    padding-bottom: 35px;
}

.service-details
    .service-tabs
    .tab-content
    .process-timeline
    .timeline-item:last-child {
    padding-bottom: 0;
}

.service-details
    .service-tabs
    .tab-content
    .process-timeline
    .timeline-item
    .timeline-marker {
    position: absolute;
    left: -30px;
    top: -5px;
    width: 32px;
    height: 32px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}

.service-details
    .service-tabs
    .tab-content
    .process-timeline
    .timeline-item
    .timeline-content {
    padding-left: 10px;
}

.service-details
    .service-tabs
    .tab-content
    .process-timeline
    .timeline-item
    .timeline-content
    h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-details
    .service-tabs
    .tab-content
    .process-timeline
    .timeline-item
    .timeline-content
    p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
}

.service-details .service-tabs .tab-content .benefit-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.service-details .service-tabs .tab-content .benefit-card:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .benefit-card:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon {
    transform: rotateY(180deg);
    background-color: var(--accent-color);
}

.service-details
    .service-tabs
    .tab-content
    .benefit-card:hover
    .benefit-icon
    i {
    color: var(--contrast-color);
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon i {
    font-size: 28px;
    color: var(--accent-color);
    transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-details .service-tabs .tab-content .benefit-card p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
}

.service-details .service-gallery h3 {
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 700;
}

.service-details .service-gallery .service-details-slider {
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.service-details .service-gallery .service-details-slider .portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-details
    .service-gallery
    .service-details-slider
    .portfolio-item:hover
    .portfolio-info {
    opacity: 1;
    transform: translateY(0);
}

.service-details .service-gallery .service-details-slider .portfolio-item img {
    border-radius: 12px;
    transition: all 0.4s ease;
}

.service-details
    .service-gallery
    .service-details-slider
    .portfolio-item
    .portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    padding: 30px 20px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.service-details
    .service-gallery
    .service-details-slider
    .portfolio-item
    .portfolio-info
    h5 {
    color: var(--contrast-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.service-details
    .service-gallery
    .service-details-slider
    .portfolio-item
    .portfolio-info
    p {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    margin: 0;
    font-size: 14px;
}

.service-details .service-gallery .service-details-slider .swiper-pagination {
    padding-top: 5px;
    bottom: 0;
}

.service-details
    .service-gallery
    .service-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    opacity: 1;
}

.service-details
    .service-gallery
    .service-details-slider
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 5px;
    background-color: var(--accent-color);
}

.service-details .service-sidebar {
    position: sticky;
    top: 100px;
}

.service-details .service-sidebar .action-card {
    background: linear-gradient(
        135deg,
        var(--accent-color) 0%,
        color-mix(in srgb, var(--accent-color), black 20%) 100%
    );
    border-radius: 15px;
    padding: 35px 30px;
    color: var(--contrast-color);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.service-details .service-sidebar .action-card:before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.service-details .service-sidebar .action-card:after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.service-details .service-sidebar .action-card h3 {
    color: var(--contrast-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-details .service-sidebar .action-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-details .service-sidebar .action-card .btn-primary {
    background-color: var(--contrast-color);
    color: var(--accent-color);
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-details .service-sidebar .action-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .service-sidebar .action-card .guarantee {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.service-details .service-sidebar .action-card .guarantee i {
    margin-right: 5px;
}

.service-details .service-sidebar .service-features-list {
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .service-features-list h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid
        color-mix(in srgb, var(--heading-color), transparent 90%);
}

.service-details .service-sidebar .service-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details .service-sidebar .service-features-list ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.service-details .service-sidebar .service-features-list ul li:last-child {
    margin-bottom: 0;
}

.service-details .service-sidebar .service-features-list ul li i {
    flex-shrink: 0;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

.service-details .service-sidebar .service-features-list ul li div {
    flex: 1;
}

.service-details .service-sidebar .service-features-list ul li div h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-details .service-sidebar .service-features-list ul li div p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
    font-size: 14px;
}

.service-details .service-sidebar .testimonial-card {
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .testimonial-card .testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-details .service-sidebar .testimonial-card .testimonial-header i {
    font-size: 36px;
    color: var(--accent-color);
    opacity: 0.3;
}

.service-details
    .service-sidebar
    .testimonial-card
    .testimonial-header
    .rating {
    display: flex;
}

.service-details
    .service-sidebar
    .testimonial-card
    .testimonial-header
    .rating
    i {
    color: #ffd700;
    font-size: 16px;
    opacity: 1;
    margin-left: 2px;
}

.service-details .service-sidebar .testimonial-card .testimonial-text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .testimonial-card .client-info {
    display: flex;
    align-items: center;
}

.service-details .service-sidebar .testimonial-card .client-info .client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.service-details
    .service-sidebar
    .testimonial-card
    .client-info
    .client-details
    h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px;
}

.service-details
    .service-sidebar
    .testimonial-card
    .client-info
    .client-details
    span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .contact-info {
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.service-details .service-sidebar .contact-info .contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-details .service-sidebar .contact-info .contact-method:last-child {
    margin-bottom: 0;
}

.service-details .service-sidebar .contact-info .contact-method i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
}

.service-details .service-sidebar .contact-info .contact-method div {
    flex: 1;
}

.service-details .service-sidebar .contact-info .contact-method div span {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 5px;
}

.service-details .service-sidebar .contact-info .contact-method div p {
    margin: 0;
    font-weight: 600;
    color: var(--heading-color);
}

@media (max-width: 991px) {
    .service-details .service-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .service-details .service-header h1 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .service-details .service-tabs .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .service-details .service-tabs .nav-tabs .nav-link {
        white-space: nowrap;
        padding: 10px 15px;
        font-size: 14px;
    }

    .service-details .service-tabs .nav-tabs .nav-link i {
        font-size: 16px;
    }

    .service-details .service-header h1 {
        font-size: 26px;
    }

    .service-details .service-header .service-meta {
        gap: 15px;
    }

    .service-details .service-header .service-meta span {
        font-size: 14px;
    }

    .service-details .service-header .lead {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Blog Section - Modern Design
--------------------------------------------------------------*/
.blog-section {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    overflow: hidden;
}

.blog-section .section-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(3, 40, 123, 0.03) 100%
    );
    pointer-events: none;
}

/* Blog Card Modern */
.blog-card-modern {
    position: relative;
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(3, 40, 123, 0.08);
    border: 1px solid rgba(3, 40, 123, 0.05);
}

.blog-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(1, 22, 77, 0.03) 0%,
        rgba(6, 60, 173, 0.03) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(3, 40, 123, 0.15);
    border-color: rgba(6, 60, 173, 0.2);
}

.blog-card-modern:hover::before {
    opacity: 1;
}

/* Card Link Wrapper */
.blog-card-modern .card-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 2;
}

/* Image Section */
.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
}

.blog-image-wrapper .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.blog-image-wrapper .image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(1, 22, 77, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card-modern:hover .image-gradient-overlay {
    opacity: 1;
}

/* Date Badge */
.blog-date-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 3;
    transition: all 0.3s ease;
}

.blog-date-badge i {
    font-size: 14px;
    color: var(--accent-color);
}

.blog-card-modern:hover .blog-date-badge {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.blog-card-modern:hover .blog-date-badge i {
    color: var(--contrast-color);
}

/* Content Section */
.blog-content-wrapper {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.blog-title-modern {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-modern:hover .blog-title-modern {
    color: var(--accent-color);
}

.blog-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Button */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.blog-read-more::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--accent-color) 0%,
        var(--heading-color) 100%
    );
    transition: width 0.3s ease;
}

.blog-card-modern:hover .blog-read-more::after {
    width: 100%;
}

.blog-read-more .read-more-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.blog-card-modern:hover .blog-read-more .read-more-icon {
    transform: translateX(4px);
}

/* Decorative Corner */
.blog-decorative-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(6, 60, 173, 0.05) 100%
    );
    border-radius: 0 16px 0 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.blog-card-modern:hover .blog-decorative-corner {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-image-wrapper {
        height: 200px;
    }

    .blog-content-wrapper {
        padding: 20px;
    }

    .blog-title-modern {
        font-size: 18px;
    }

    .blog-excerpt {
        font-size: 14px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

@media (max-width: 576px) {
    .blog-card-modern {
        border-radius: 12px;
    }

    .blog-image-wrapper {
        height: 180px;
    }

    .blog-date-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/*--------------------------------------------------------------
# Blog Posts Section (Legacy - Keep for other pages)
--------------------------------------------------------------*/
.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);
}

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

.blog-details .article {
    position: relative;
    background: var(--surface-color);
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-details .article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--accent-color) 0%,
        color-mix(in srgb, var(--accent-color), #6366f1 30%) 50%,
        var(--accent-color) 100%
    );
    opacity: 0.8;
}

.blog-details .post-img {
    margin: 0;
    overflow: hidden;
    position: relative;
    border-radius: 24px 24px 0 0;
}

.blog-details .post-img img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-details .article:hover .post-img img {
    transform: scale(1.02);
}

/* Article Title */
.blog-details .article-title {
    color: var(--heading-color);
    font-size: 2rem;
    font-weight: 700;
    padding: 2rem 2.5rem 0 2.5rem;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

/* Meta Information - Modern Badges */
.blog-details .meta-top {
    padding: 0 2.5rem;
    margin: 0 0 2rem 0;
}

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

.blog-details .meta-top ul li {
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 90%),
        color-mix(in srgb, var(--accent-color), transparent 95%)
    );
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.blog-details .meta-top ul li:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-details .meta-top ul li + li {
    padding-left: 1.25rem;
}

.blog-details .meta-top i {
    font-size: 1rem;
    margin-right: 0;
    line-height: 1;
    color: currentColor;
}

.blog-details .meta-top ul li:hover i {
    color: var(--contrast-color);
}

.blog-details .meta-top a {
    color: inherit;
    font-size: inherit;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}

/* Article Content */
.blog-details .content {
    padding: 0 2.5rem 2rem 2.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--default-color);
}

.blog-details .content h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--heading-color);
    position: relative;
    padding-left: 1rem;
}

.blog-details .content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #6366f1 30%)
    );
    border-radius: 2px;
}

.blog-details .content blockquote {
    overflow: hidden;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 95%),
        color-mix(in srgb, var(--accent-color), transparent 97%)
    );
    padding: 2rem 2.5rem;
    position: relative;
    margin: 2rem 0;
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
}

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

.blog-details .content blockquote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Gallery Section Enhancement */
.blog-details .content .row.g-2 {
    margin-top: 1.5rem;
}

.blog-details .content .row.g-2 img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-details .content .row.g-2 img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Back Button Styling */
.blog-details .readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    margin: 2rem 2.5rem 2.5rem 2.5rem;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 90%),
        color-mix(in srgb, var(--accent-color), transparent 95%)
    );
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.blog-details .readmore::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.blog-details .readmore:hover {
    color: var(--contrast-color);
    border-color: var(--accent-color);
    transform: translateX(-8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.blog-details .readmore:hover::before {
    left: 0;
}

.blog-details .readmore i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.blog-details .readmore:hover i {
    transform: translateX(-4px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-details .article-title {
        font-size: 1.75rem;
        padding: 1.75rem 2rem 0 2rem;
    }

    .blog-details .meta-top {
        padding: 0 2rem;
    }

    .blog-details .content {
        padding: 0 2rem 1.75rem 2rem;
        font-size: 1rem;
    }

    .blog-details .readmore {
        margin: 1.75rem 2rem 2rem 2rem;
    }
}

@media (max-width: 768px) {
    .blog-details .article {
        border-radius: 20px;
    }

    .blog-details .post-img {
        border-radius: 20px 20px 0 0;
    }

    .blog-details .article-title {
        font-size: 1.5rem;
        padding: 1.5rem 1.5rem 0 1.5rem;
    }

    .blog-details .meta-top {
        padding: 0 1.5rem;
    }

    .blog-details .meta-top ul {
        gap: 0.75rem;
    }

    .blog-details .meta-top ul li {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .blog-details .content {
        padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 0.9375rem;
    }

    .blog-details .content h3 {
        font-size: 1.25rem;
    }

    .blog-details .content blockquote {
        padding: 1.5rem;
    }

    .blog-details .content blockquote p {
        font-size: 1rem;
    }

    .blog-details .readmore {
        margin: 1.5rem 1.5rem 2rem 1.5rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .blog-details .article {
        border-radius: 16px;
    }

    .blog-details .post-img {
        border-radius: 16px 16px 0 0;
    }

    .blog-details .meta-top ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-details .meta-top ul li + li {
        padding-left: 1.25rem;
    }
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
        # Widgets
        --------------------------------------------------------------*/
.widgets-container {
    background-color: var(--surface-color);
    padding: 30px;
    margin: 30px 0 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.widget-item {
    margin-bottom: 40px;
}

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

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

.search-widget form input[type="text"] {
    border: 0;
    padding: 4px;
    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: var(--accent-color);
    color: var(--contrast-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

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

.search-widget form button:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.categories-widget ul li {
    padding-bottom: 10px;
}

.categories-widget ul li:last-child {
    padding-bottom: 0;
}

.categories-widget ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    padding: 12px 16px;
    border-radius: 12px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.categories-widget ul a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #6366f1 30%)
    );
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.categories-widget ul a:hover {
    color: var(--accent-color);
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 92%),
        color-mix(in srgb, var(--accent-color), transparent 95%)
    );
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.categories-widget ul a:hover::before {
    transform: scaleY(1);
}

.categories-widget .active {
    color: var(--accent-color);
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 90%),
        color-mix(in srgb, var(--accent-color), transparent 93%)
    );
    font-weight: 600;
}

.categories-widget .active::before {
    transform: scaleY(1);
}

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

.categories-widget ul a:hover span {
    color: var(--accent-color);
}

.categories-widget ul a .badge {
    transition: all 0.3s ease;
}

.categories-widget ul a:hover .badge {
    background: var(--accent-color) !important;
    color: white !important;
    transform: scale(1.1);
}

.recent-posts-widget .post-item {
    /* display: flex; */
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    cursor: pointer;
}

.recent-posts-widget .post-item:hover {
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 95%),
        color-mix(in srgb, var(--accent-color), transparent 97%)
    );
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.recent-posts-widget .post-item img {
    width: 80px;
    margin-right: 15px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recent-posts-widget .post-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

.recent-posts-widget .post-item:hover h4 {
    transform: translateX(4px);
}

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

.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%);
    transition: all 0.3s ease;
}

.recent-posts-widget .post-item:hover time {
    color: var(--accent-color);
    transform: translateX(4px);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
    margin-top: 0 !important;
}

.hero .carousel {
    width: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
}

@media (max-height: 500px), (max-width: 580px) {
    .hero .carousel {
        min-height: 100vh;
    }
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    object-fit: fill;
    /* Ini membuat gambar ketarik mengikuti width & height */
    z-index: 1;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero .container {
    background: color-mix(in srgb, var(--surface-color), transparent 10%);
    position: relative;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 50px;
    border-top: 4px solid var(--accent-color);
    z-index: 3;
}

@media (max-width: 1200px) {
    .hero .container {
        margin-left: 50px;
        margin-right: 50px;
    }
}

.hero h2 {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 30px;
    }
}

.hero .btn-get-started {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    transition: 0.3s;
    margin: 10px;
    border-radius: 5px;
    color: var(--contrast-color);
    background: var(--accent-color);
}

.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 50px;
    color: var(--contrast-color);
    transition: 0.3s;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    transition: 0.3s;
    opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

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

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.hero .carousel-indicators li {
    cursor: pointer;
    background: var(--contrast-color);
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 1;
    transition: 0.3s;
}

.hero .carousel-indicators li.active {
    opacity: 1;
    background: var(--accent-color);
}

.header {
    background-color: rgba(3, 40, 123, 0.8);
    transition: all 0.4s ease;
}

.scrolled .header {
    background-color: var(--accent-color);
    /* warna solid */
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header {
    background-color: rgb(3, 40, 123);
}

/* Tablet */
@media (max-width: 1024px) {
    .hero .carousel {
        min-height: 70vh;
        /* lebih rendah */
    }

    .hero img {
        height: 70vh;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero .carousel {
        min-height: 73vh;
        /* cukup tinggi tapi tidak terlalu besar */
    }

    .hero img {
        height: 73vh;
    }
}

.mobile-nav-toggle {
    color: white !important;
}

.header .logo h1 {
    color: white;
}

.bg-app {
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #6366f1 30%)
    );
}

.features-section .feature-box {
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #6366f1 30%)
    );
}

.section-badge {
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #6366f1 30%)
    );
}

.about .feature-box .feature-icon {
    background-color: white;
    color: #6366f1;
}

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

.hero .hero-content .hero-description {
    font-size: 1.7rem;
}

@media (max-width: 768px) {
    .hero .hero-content .hero-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
}

.maps iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.features-2 .feature-card-2 {
    padding: 0;
}

.services .services-grid .service-card {
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #6366f1 30%)
    );
}

.footer {
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #6366f1 30%)
    );
}

/* Lecturer Card - Modern Design */
.lecturer-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lecturer-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image Section */
.lecturer-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 aspect ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.lecturer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lecturer-card:hover .lecturer-image {
    transform: scale(1.08);
}

.lecturer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Content Section */
.lecturer-content {
    padding: 1.75rem;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #6366f1 30%)
    );
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lecturer-info {
    margin-bottom: 1rem;
}

.lecturer-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.lecturer-department,
.lecturer-discipline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.5;
}

.lecturer-department i,
.lecturer-discipline i {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Social Links Section */
.lecturer-social {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-sinta:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.social-scholar:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.social-pddikti:hover {
    background: linear-gradient(135deg, #10b981, #059669);
}

.social-scopus:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Responsive Design */
@media (max-width: 768px) {
    .lecturer-card {
        border-radius: 16px;
    }

    .lecturer-content {
        padding: 1.5rem;
    }

    .lecturer-name {
        font-size: 1.1rem;
    }

    .lecturer-department,
    .lecturer-discipline {
        font-size: 0.85rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

/* Modern Search Input */
.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.4rem;
    z-index: 2;
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 3.5rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    outline: none;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.search-input::placeholder {
    color: #9ca3af;
    font-size: 0.95rem;
}

.search-input:focus {
    border-color: var(--accent-color);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.search-input:focus ~ .search-icon {
    color: var(--accent-color);
}

.search-clear {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: #6b7280;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.2s ease;
    z-index: 2;
}

.search-clear:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-50%) rotate(90deg);
}

.search-clear:active {
    transform: translateY(-50%) scale(0.95);
}

/* Loading state for search */
.search-wrapper.loading .search-icon i::before {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-wrapper {
        max-width: 100%;
    }

    .search-input {
        padding: 0.875rem 3rem 0.875rem 3rem;
        font-size: 0.95rem;
    }

    .search-icon {
        left: 1rem;
        font-size: 1.2rem;
    }

    .search-clear {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
}

/* Category Filter Wrapper */
.category-filter-wrapper {
    position: relative;
}

.category-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.4rem;
    z-index: 2;
    pointer-events: none;
}

.category-select {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    outline: none;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    cursor: pointer;
}

.category-select:focus {
    border-color: var(--accent-color);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

/* Select2 Customization for Category */
.select2-container--bootstrap-5 .select2-selection {
    border-radius: 50px !important;
    border: 2px solid #e5e7eb !important;
    padding: 0.75rem 1rem 0.75rem 3rem !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.select2-container--bootstrap-5 .select2-selection:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection {
    border-color: var(--accent-color) !important;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 0 0 4px rgba(99, 102, 241, 0.1) !important;
}

.select2-container--bootstrap-5 .select2-dropdown {
    border-radius: 16px !important;
    border: 2px solid var(--accent-color) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Sidebar Search Variant */
.search-wrapper-sidebar {
    position: relative;
    width: 100%;
}

.search-icon-sidebar {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.1rem;
    z-index: 2;
    pointer-events: none;
}

.search-input-sidebar {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 2.5rem;
    font-size: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    outline: none;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-input-sidebar::placeholder {
    color: #9ca3af;
    font-size: 0.85rem;
}

.search-input-sidebar:focus {
    border-color: var(--accent-color);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.search-clear-sidebar {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: #6b7280;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    z-index: 2;
}

.search-clear-sidebar:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-50%) rotate(90deg);
}

.search-clear-sidebar:active {
    transform: translateY(-50%) scale(0.95);
}

/* Section Title Spacing - Responsive */
.section-title-spacing {
    margin-top: 8rem;
}

@media (max-width: 768px) {
    .section-title-spacing {
        margin-top: 4rem;
    }
}

.navmenu .active {
    color: white;
    font-weight: bold;
}

.banner {
    height: 350px;
}

/* Mobile: max-width 576px */
@media (max-width: 576px) {
    .navmenu .active {
        color: var(--accent-color);
    }

    .banner img {
        height: 173px;
    }

    .banner {
        margin-bottom: -150px;
    }
}

@media (max-width: 576px) {
    .hero .carousel {
        min-height: 60vh;
        /* cukup tinggi tapi tidak terlalu besar */
    }

    .hero img {
        height: 60vh;
    }

    .hero {
        margin-bottom: -100px;
    }
}

/* Tablet (opsional jika mau berbeda juga) */
@media (min-width: 577px) and (max-width: 1196px) {
    .navmenu .active {
        color: var(--accent-color);
    }
}

.pointer {
    cursor: pointer;
}

.btn-see-more {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: var(--heading-color);
    border: 1px solid var(--heading-color);
    border-radius: 0.375rem;
    /* seperti .btn */
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-see-more:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    font-weight: bold;
}

.btn-see-more:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(3, 40, 123, 0.3);
}

.btn-see-more:active {
    background-color: var(--default-color);
    border-color: var(--default-color);
}

.image-frame {
    background: url("{{ asset('template/images/bg-img.jpg') }}") center/cover
        no-repeat;
}

.partner-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

#search-mitra:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

/* Pagination Styling */
.pagination {
    gap: 8px;
}

.pagination .page-link {
    color: var(--accent-color);
    border: 1px solid #e5e7eb;
    margin: 0;
    border-radius: 50px !important;
    padding: 8px 18px;
    min-width: 44px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #6366f1 30%)
    ) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.pagination .page-link:hover:not(.active) {
    background-color: var(--accent-color);
    color: #fff !important;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.pagination .page-item.disabled .page-link {
    color: #9ca3af;
    background-color: #f9fafb;
    border-color: #e5e7eb;
    cursor: not-allowed;
}

/* Department Header Styles */
.department-header {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.director-card {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: #fff;
}

.director-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #e6f0ff 0%, #d4e4ff 100%);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(1, 22, 77, 0.1);
}

.director-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.director-card:hover .director-image {
    transform: scale(1.02);
}

.director-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: #01164d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(1, 22, 77, 0.3);
}

.director-info {
    padding: 20px;
}

.director-label {
    display: inline-block;
    padding: 8px 20px;
    background: #01164d;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.director-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #01164d;
    margin-bottom: 10px;
    line-height: 1.2;
}

.director-info p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 20px;
    font-weight: 500;
}

.director-info h5 {
    font-size: 1rem;
    line-height: 1.8;
    color: #718096;
    font-weight: 400;
}

@media (max-width: 991px) {
    .department-header {
        padding: 30px 20px;
        text-align: center;
    }

    .director-card {
        max-width: 350px;
        margin: 0 auto 30px;
    }

    .director-badge {
        right: 50%;
        bottom: -30px;
        transform: translateX(50%);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}

.department-info-section {
    margin: 48px 0;
}

.modern-info-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.modern-info-card-inner {
    background: #fff;
    border-radius: 21px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.modern-info-card-inner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(102, 126, 234, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-image-slice: 1;
    position: relative;
    z-index: 1;
}

.info-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.info-card-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-card-content {
    position: relative;
    z-index: 1;
    line-height: 1.8;
    color: #2d3748;
}

.info-card-content h1,
.info-card-content h2,
.info-card-content h3,
.info-card-content h4,
.info-card-content h5,
.info-card-content h6 {
    color: #1a202c;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 16px;
}

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

.info-card-content h2 {
    font-size: 28px;
}

.info-card-content h3 {
    font-size: 24px;
}

.info-card-content h4 {
    font-size: 20px;
}

.info-card-content h5 {
    font-size: 18px;
}

.info-card-content h6 {
    font-size: 16px;
}

.info-card-content p {
    margin-bottom: 16px;
    font-size: 16px;
}

.info-card-content ul,
.info-card-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.info-card-content li {
    margin-bottom: 8px;
}

.info-card-content strong {
    color: #667eea;
    font-weight: 600;
}

.info-card-content a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.info-card-content a:hover {
    border-bottom-color: #667eea;
}

.info-card-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-card-content table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

.info-card-content table td {
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.info-card-content table tr:last-child td {
    border-bottom: none;
}

.info-card-content table tr:hover {
    background-color: #f7fafc;
}

.info-card-content blockquote {
    border-left: 4px solid #667eea;
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: #4a5568;
    background: #f7fafc;
    padding: 16px 20px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .modern-info-card-inner {
        padding: 32px 24px;
    }

    .info-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .info-card-title {
        font-size: 24px;
    }

    .info-card-content h1 {
        font-size: 28px;
    }

    .info-card-content h2 {
        font-size: 24px;
    }

    .info-card-content h3 {
        font-size: 20px;
    }
}

/* ===================================
   ARTICLE/NEWS CARD STYLES - PREMIUM ENHANCED
   =================================== */

/* Article Card */
.article-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Gradient Border Accent */
.article-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--accent-color) 0%,
        color-mix(in srgb, var(--accent-color), #6366f1 30%) 50%,
        var(--accent-color) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

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

/* Decorative Corner */
.article-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(6, 60, 173, 0.03) 100%
    );
    border-radius: 0 20px 0 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.article-card:hover::after {
    opacity: 1;
}

.article-card:hover {
    transform: translateY(-16px);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(6, 60, 173, 0.1);
}

/* Article Image Section */
.article-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    /* 5:3 aspect ratio for news */
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.article-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover .article-image {
    transform: scale(1.1) rotate(1deg);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.35) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

/* Article Badge (Date) */
.article-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.article-badge i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.article-card:hover .article-badge {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.article-card:hover .article-badge i {
    transform: scale(1.1);
}

/* Article Content Section */
.article-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.article-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color), #6366f1 30%)
    );
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    width: fit-content;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-category i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.article-card:hover .article-category {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-card:hover .article-category i {
    transform: rotate(360deg);
}

.article-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: transform 0.3s ease;
}

.article-card:hover .article-title {
    transform: translateX(2px);
}

.article-title a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-title a:hover {
    color: var(--accent-color);
}

.article-excerpt {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.article-card:hover .article-excerpt {
    color: #4b5563;
}

/* Read More Button */
.article-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    position: relative;
    padding-bottom: 2px;
}

.article-read-more::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--accent-color) 0%,
        var(--heading-color) 100%
    );
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-read-more i {
    font-size: 1.25rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-read-more:hover {
    color: var(--heading-color);
    gap: 0.75rem;
}

.article-read-more:hover::after {
    width: 100%;
}

.article-read-more:hover i {
    transform: translateX(6px);
}

.article-card:hover .article-read-more {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-card {
        border-radius: 16px;
    }

    .article-card::after {
        width: 80px;
        height: 80px;
    }

    .article-card:hover {
        transform: translateY(-12px);
    }

    .article-content {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 1.1rem;
    }

    .article-excerpt {
        font-size: 0.9rem;
    }

    .article-badge {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
    }
}

@media (max-width: 576px) {
    .article-card {
        border-radius: 12px;
    }

    .article-card::after {
        width: 60px;
        height: 60px;
    }

    .article-card:hover {
        transform: translateY(-8px);
    }

    .article-badge {
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* Reset link styles */
.app-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* Modern Card Styling with Enhanced Design */
.app-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    border: 2px solid transparent;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Gradient overlay effect */
.app-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--accent-color-rgb, 13, 110, 253), 0.08) 0%,
        rgba(var(--accent-color-rgb, 13, 110, 253), 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Shine effect on hover */
.app-card-modern::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.app-card-modern:hover::before {
    opacity: 1;
}

.app-card-modern:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Enhanced hover effects */
.app-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(var(--accent-color-rgb, 13, 110, 253), 0.1);
}

/* Icon wrapper with gradient */
.app-card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #0056b3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(var(--accent-color-rgb, 13, 110, 253), 0.3);
}

/* Icon wrapper glow effect */
.app-card-icon-wrapper::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-color), #0056b3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.app-card-modern:hover .app-card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(var(--accent-color-rgb, 13, 110, 253), 0.4);
}

.app-card-modern:hover .app-card-icon-wrapper::before {
    opacity: 0.6;
}

/* Icon with animation */
.app-card-icon {
    font-size: 2.25rem;
    color: #ffffff;
    transition: transform 0.4s ease;
}

.app-card-modern:hover .app-card-icon {
    transform: scale(1.1);
}

/* Title with better hierarchy */
.app-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 14px;
    font-family: var(--heading-font);
    transition: color 0.3s ease;
    line-height: 1.3;
}

.app-card-modern:hover .app-card-title {
    color: var(--accent-color);
}

/* Description with better contrast */
.app-card-desc {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
    flex-grow: 1;
    display: block;
    overflow: visible;
}

/* Enhanced footer CTA */
.app-card-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(var(--accent-color-rgb, 13, 110, 253), 0.05);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.app-card-modern:hover .app-card-footer {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateX(4px);
}

.app-card-footer i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.app-card-modern:hover .app-card-footer i {
    transform: translateX(6px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .app-card-modern {
        padding: 28px 24px;
        border-radius: 14px;
    }

    .app-card-icon-wrapper {
        width: 68px;
        height: 68px;
        border-radius: 14px;
    }

    .app-card-icon {
        font-size: 2rem;
    }

    .app-card-title {
        font-size: 1.2rem;
    }

    .app-card-desc {
        font-size: 0.9rem;
    }

    .app-card-footer {
        font-size: 0.9rem;
        padding: 8px 14px;
    }
}

/* ============================================
   MODERN RECTOR WELCOME SECTION STYLES
   ============================================ */

.rector-welcome-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f6ff 100%);
    overflow: hidden;
}

/* Section Background Decoration */
.section-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(1, 22, 77, 0.03) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Modern Badge */
.modern-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #01164d 0%, #063cad 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(1, 22, 77, 0.2);
    transition: all 0.3s ease;
}

.modern-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 22, 77, 0.3);
}

/* Section Title Modern */
.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #063cad;
    margin: 0;
    line-height: 1.3;
}

.text-gradient {
    background: linear-gradient(135deg, #01164d 0%, #063cad 50%, #03287b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .section-title-modern {
        font-size: 1.875rem;
    }
}

/* ============================================
   RECTOR IMAGE WRAPPER
   ============================================ */

.rector-image-wrapper {
    position: relative;
    z-index: 1;
}

/* Decorative Circles */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.decorative-circle.circle-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(
        135deg,
        rgba(1, 22, 77, 0.1) 0%,
        rgba(6, 60, 173, 0.05) 100%
    );
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.decorative-circle.circle-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        rgba(6, 60, 173, 0.08) 0%,
        rgba(3, 40, 123, 0.05) 100%
    );
    bottom: 40px;
    left: -15px;
    animation-delay: 2s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Rector Image Card */
.rector-image-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.rector-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Image Container */
.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.rector-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.rector-image-card:hover .rector-photo {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(1, 22, 77, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.rector-image-card:hover .image-overlay {
    opacity: 1;
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #01164d 0%, #063cad 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(1, 22, 77, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.quote-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(1, 22, 77, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(1, 22, 77, 0.4);
    }
}

/* Rector Info */
.rector-info {
    text-align: center;
    padding: 0 1rem;
}

.rector-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #01164d;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.rector-title {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    line-height: 1.5;
}

/* ============================================
   RECTOR MESSAGE CARD
   ============================================ */

.rector-message-card {
    position: relative;
    z-index: 1;
}

/* Card with Gradient Border */
.card-gradient-border {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, #01164d 0%, #063cad 50%, #03287b 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.card-gradient-border:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.message-content {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.message-content p {
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content strong {
    color: #01164d;
    font-weight: 600;
}

.message-content h1,
.message-content h2,
.message-content h3,
.message-content h4,
.message-content h5,
.message-content h6 {
    color: #063cad;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Pattern Decoration */
.pattern-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(1, 22, 77, 0.02) 10px,
        rgba(1, 22, 77, 0.02) 20px
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 992px) {
    .rector-image-wrapper {
        margin-bottom: 3rem;
    }

    .message-content {
        padding: 2rem;
    }

    .section-bg-decoration {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .modern-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
        top: 1.5rem;
        right: 1.5rem;
    }

    .quote-icon i {
        font-size: 1.5rem;
    }

    .rector-name {
        font-size: 1.125rem;
    }

    .rector-title {
        font-size: 0.8rem;
    }

    .message-content {
        padding: 1.5rem;
    }

    .message-content p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 576px) {
    .rector-image-card {
        padding: 1rem;
    }

    .decorative-circle.circle-1 {
        width: 80px;
        height: 80px;
    }

    .decorative-circle.circle-2 {
        width: 60px;
        height: 60px;
    }
}

/* ============================================
   ADDITIONAL ENHANCEMENTS
   ============================================ */

/* Smooth Scroll Behavior */
.rector-welcome-section * {
    transition: all 0.3s ease;
}

/* Focus States for Accessibility */
.rector-image-card:focus-within {
    outline: 2px solid #063cad;
    outline-offset: 4px;
}

/* Print Styles */
@media print {
    .decorative-circle,
    .quote-icon,
    .pattern-decoration,
    .section-bg-decoration {
        display: none;
    }

    .rector-image-card,
    .card-gradient-border {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ============================================
   WHY UNITAMA SECTION STYLES
   ============================================ */

.why-unitama-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 50%, #ffffff 100%);
    overflow: hidden;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Background Pattern */
.section-pattern-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(1, 22, 77, 0.02) 50px,
        rgba(1, 22, 77, 0.02) 51px
    );
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   CONTENT WRAPPER
   ============================================ */

.why-content-wrapper {
    position: relative;
    z-index: 1;
}

/* Content Card */
.content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(1, 22, 77, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #01164d 0%, #063cad 50%, #03287b 100%);
}

.content-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.content-inner {
    position: relative;
    z-index: 1;
}

.content-inner p {
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.content-inner p:last-child {
    margin-bottom: 0;
}

.content-inner h1,
.content-inner h2,
.content-inner h3,
.content-inner h4,
.content-inner h5,
.content-inner h6 {
    color: #063cad;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-inner ul,
.content-inner ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-inner li {
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.content-inner strong {
    color: #01164d;
    font-weight: 600;
}

/* Modern CTA Button */
.modern-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #01164d 0%, #063cad 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(1, 22, 77, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.modern-cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.modern-cta-button:hover::before {
    left: 100%;
}

.modern-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(1, 22, 77, 0.35);
    color: #ffffff;
}

.modern-cta-button .button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.modern-cta-button:hover .button-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.modern-cta-button .button-icon i {
    font-size: 1rem;
}

/* ============================================
   IMAGE WRAPPER
   ============================================ */

.why-image-wrapper {
    position: relative;
    z-index: 1;
}

/* Image Decorations */
.image-decoration {
    position: absolute;
    border-radius: 20px;
    z-index: -1;
    animation: decorationFloat 8s ease-in-out infinite;
}

.image-decoration.decoration-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(
        135deg,
        rgba(1, 22, 77, 0.08) 0%,
        rgba(6, 60, 173, 0.05) 100%
    );
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}

.image-decoration.decoration-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(
        135deg,
        rgba(6, 60, 173, 0.06) 0%,
        rgba(3, 40, 123, 0.04) 100%
    );
    bottom: -20px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes decorationFloat {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Image Card */
.why-image-wrapper .image-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.why-image-wrapper .image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.why-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.why-image-wrapper .image-card:hover .why-image {
    transform: scale(1.05);
}

.image-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(1, 22, 77, 0.3) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-image-wrapper .image-card:hover .image-gradient-overlay {
    opacity: 1;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: badgeFloat 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: translateY(0px);
    }

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

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #01164d 0%, #063cad 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-value {
    font-size: 1.125rem;
    color: #01164d;
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 992px) {
    .why-content-wrapper {
        margin-bottom: 3rem;
    }

    .content-card {
        padding: 2rem;
    }

    .floating-badge {
        bottom: 1.5rem;
        left: 1.5rem;
        padding: 0.875rem 1.25rem;
    }

    .badge-icon {
        width: 45px;
        height: 45px;
    }

    .badge-icon i {
        font-size: 1.25rem;
    }

    .section-pattern-bg {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .content-card {
        padding: 1.5rem;
    }

    .content-inner p {
        font-size: 0.9375rem;
    }

    .modern-cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }

    .floating-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
    }

    .badge-icon i {
        font-size: 1.125rem;
    }

    .badge-label {
        font-size: 0.7rem;
    }

    .badge-value {
        font-size: 1rem;
    }

    .image-decoration.decoration-1 {
        width: 150px;
        height: 150px;
    }

    .image-decoration.decoration-2 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .content-card::before {
        width: 3px;
    }

    .modern-cta-button {
        width: 100%;
        justify-content: center;
    }

    .floating-badge {
        position: static;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ADDITIONAL ENHANCEMENTS
   ============================================ */

/* Focus States for Accessibility */
.modern-cta-button:focus {
    outline: 2px solid #063cad;
    outline-offset: 4px;
}

/* Print Styles */
@media print {
    .image-decoration,
    .section-pattern-bg {
        display: none;
    }

    .content-card,
    .why-image-wrapper .image-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .modern-cta-button {
        background: #01164d;
        box-shadow: none;
    }
}

/* ============================================
   PROGRAM STUDI SECTION STYLES
   ============================================ */

.program-studi-section {
    position: relative;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

/* Wave Background */
.section-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2301164D' fill-opacity='0.03' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   PROGRAM CARD
   ============================================ */

.program-card {
    position: relative;
    height: 100%;
    transition: all 0.4s ease;
}

.program-card .card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(1, 22, 77, 0.08);
}

.program-card .card-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(1, 22, 77, 0.05) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.program-card:hover .card-link {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(1, 22, 77, 0.15);
}

.program-card:hover .card-link::before {
    opacity: 1;
}

/* ============================================
   CARD HEADER SECTION
   ============================================ */

.card-header-section {
    position: relative;
    background: linear-gradient(135deg, #01164d 0%, #063cad 100%);
    padding: 2.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

/* Icon Wrapper */
.icon-wrapper {
    margin-bottom: 1rem;
    z-index: 2;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.program-card:hover .icon-circle {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(5deg);
}

.icon-circle i {
    font-size: 2.5rem;
    color: #ffffff;
}

/* Accreditation Badge */
.accreditation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #01164d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.program-card:hover .accreditation-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.accreditation-badge i {
    font-size: 1rem;
    color: #ffd700;
}

/* ============================================
   CARD BODY SECTION
   ============================================ */

.card-body-section {
    padding: 2.5rem 2rem 1.5rem;
    position: relative;
    z-index: 2;
}

.program-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #01164d;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.program-card:hover .program-title {
    color: #063cad;
}

.program-description {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    margin: 0;
    display: block;
    overflow: visible;
}

/* ============================================
   CARD FOOTER SECTION
   ============================================ */

.card-footer-section {
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #063cad;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.program-card:hover .learn-more {
    gap: 1rem;
    color: #01164d;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.program-card:hover .learn-more i {
    transform: translateX(5px);
}

/* ============================================
   DECORATIVE CORNER
   ============================================ */

.decorative-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 50%
    );
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.program-card:hover .decorative-corner {
    opacity: 1;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 992px) {
    .card-header-section {
        padding: 2rem 1.5rem 1.25rem;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
    }

    .icon-circle i {
        font-size: 2rem;
    }

    .card-body-section {
        padding: 2rem 1.5rem 1.25rem;
    }

    .card-footer-section {
        padding: 0 1.5rem 1.5rem;
    }

    .section-wave-bg {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .program-title {
        font-size: 1.25rem;
    }

    .program-description {
        font-size: 0.875rem;
    }

    .icon-circle {
        width: 65px;
        height: 65px;
    }

    .icon-circle i {
        font-size: 1.75rem;
    }

    .accreditation-badge {
        font-size: 0.8125rem;
        padding: 0.4rem 0.875rem;
    }

    .learn-more {
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .card-header-section {
        padding: 1.75rem 1.25rem 1rem;
    }

    .card-body-section {
        padding: 1.75rem 1.25rem 1rem;
    }

    .card-footer-section {
        padding: 0 1.25rem 1.25rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 1.5rem;
    }
}

/* ============================================
   ADDITIONAL ENHANCEMENTS
   ============================================ */

/* Focus States for Accessibility */
.program-card .card-link:focus {
    outline: 2px solid #063cad;
    outline-offset: 4px;
}

/* Smooth Transitions */
.program-card * {
    transition: all 0.3s ease;
}

/* Print Styles */
@media print {
    .section-wave-bg,
    .decorative-corner {
        display: none;
    }

    .program-card .card-link {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .card-header-section {
        background: #01164d;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}

/* ============================================
   GRID ALIGNMENT
   ============================================ */

/* Ensure cards in the same row have equal height */
.program-studi-section .row {
    display: flex;
    flex-wrap: wrap;
}

.program-studi-section [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/*--------------------------------------------------------------
# Contact Section - Modern Premium Design
--------------------------------------------------------------*/
.contact-section-modern {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    overflow: hidden;
    padding: 80px 0;
}

/* Section Title Styles */
.modern-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: linear-gradient(
        135deg,
        rgba(6, 60, 173, 0.1) 0%,
        rgba(99, 102, 241, 0.1) 100%
    );
    border: 1px solid rgba(6, 60, 173, 0.2);
    border-radius: 50px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.modern-badge:hover {
    background: linear-gradient(
        135deg,
        rgba(6, 60, 173, 0.15) 0%,
        rgba(99, 102, 241, 0.15) 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 60, 173, 0.15);
}

.modern-badge i {
    font-size: 16px;
    animation: pulse 2s ease-in-out infinite;
}

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

    50% {
        transform: scale(1.1);
    }
}

.section-title-modern {
    font-size: 42px;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-color) 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Card */
.contact-info-card {
    position: relative;
    background: var(--surface-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(3, 40, 123, 0.1);
    border: 1px solid rgba(3, 40, 123, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    overflow: hidden;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #6366f1 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(3, 40, 123, 0.15);
    border-color: rgba(6, 60, 173, 0.2);
}

.contact-info-card:hover::before {
    opacity: 1;
}

/* Card Header */
.card-header-contact {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(3, 40, 123, 0.08);
}

.contact-card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.contact-card-subtitle {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
}

/* Contact Items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(
        135deg,
        rgba(6, 60, 173, 0.02) 0%,
        rgba(99, 102, 241, 0.02) 100%
    );
    border-radius: 16px;
    border: 1px solid rgba(3, 40, 123, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    background: linear-gradient(
        135deg,
        rgba(6, 60, 173, 0.05) 0%,
        rgba(99, 102, 241, 0.05) 100%
    );
    border-color: rgba(6, 60, 173, 0.15);
    transform: translateX(8px);
}

/* Contact Icon */
.contact-icon-wrapper {
    position: relative;
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, #6366f1 100%);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(6, 60, 173, 0.25);
    transition: all 0.3s ease;
}

.contact-icon-wrapper::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #6366f1 100%);
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.contact-item:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(6, 60, 173, 0.35);
}

.contact-item:hover .contact-icon-wrapper::before {
    opacity: 0.5;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

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

.contact-icon-wrapper i {
    font-size: 24px;
    color: var(--contrast-color);
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon-wrapper i {
    transform: scale(1.1);
}

/* Contact Details */
.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    text-decoration: none;
    transition: all 0.3s ease;
    word-wrap: break-word;
    display: inline-block;
    position: relative;
}

.contact-value::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #6366f1 100%);
    transition: width 0.3s ease;
}

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

.contact-value:hover::after {
    width: 100%;
}

/* Social Media Section */
.social-media-section {
    padding-top: 28px;
    border-top: 2px solid rgba(3, 40, 123, 0.08);
}

.social-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.social-title i {
    color: var(--accent-color);
    font-size: 18px;
}

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

.social-btn {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(6, 60, 173, 0.08) 0%,
        rgba(99, 102, 241, 0.08) 100%
    );
    border: 2px solid rgba(6, 60, 173, 0.15);
    color: var(--accent-color);
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.social-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #6366f1 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-btn i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(6, 60, 173, 0.25);
    border-color: transparent;
}

.social-btn:hover::before {
    opacity: 1;
}

.social-btn:hover i {
    color: var(--contrast-color);
    transform: scale(1.1) rotate(5deg);
}

/* Specific Social Media Colors */
.social-btn.facebook:hover::before {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
}

.social-btn.instagram:hover::before {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 50%, #833ab4 100%);
}

.social-btn.tiktok:hover::before {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.social-btn.youtube:hover::before {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

/* Contact Card Decoration */
.contact-card-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(
        135deg,
        rgba(6, 60, 173, 0.03) 0%,
        rgba(99, 102, 241, 0.03) 100%
    );
    border-radius: 24px 0 24px 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card:hover .contact-card-decoration {
    opacity: 1;
}

/* Map Wrapper */
.map-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(3, 40, 123, 0.1);
    border: 1px solid rgba(3, 40, 123, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-wrapper:hover {
    box-shadow: 0 20px 60px rgba(3, 40, 123, 0.15);
    transform: translateY(-4px);
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 60, 173, 0.02) 0%,
        rgba(99, 102, 241, 0.02) 100%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.map-wrapper:hover .map-overlay {
    opacity: 1;
}

/* Background Decoration */
.contact-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(3, 40, 123, 0.03) 100%
    );
    pointer-events: none;
}

.contact-wave-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(6, 60, 173, 0.03)' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-title-modern {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .contact-info-card {
        padding: 32px;
        margin-bottom: 32px;
    }

    .map-wrapper,
    .map-container {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-section-modern {
        padding: 60px 0;
    }

    .section-title-modern {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .contact-info-card {
        padding: 28px;
    }

    .contact-card-title {
        font-size: 24px;
    }

    .contact-item {
        padding: 16px;
    }

    .contact-icon-wrapper {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .contact-icon-wrapper i {
        font-size: 20px;
    }

    .contact-value {
        font-size: 15px;
    }

    .social-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .map-wrapper,
    .map-container {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-section-modern {
        padding: 50px 0;
    }

    .section-title-modern {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .modern-badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    .contact-info-card {
        padding: 24px;
        border-radius: 20px;
    }

    .contact-card-title {
        font-size: 22px;
    }

    .contact-card-subtitle {
        font-size: 14px;
    }

    .contact-items {
        gap: 16px;
    }

    .contact-item {
        padding: 14px;
        gap: 14px;
    }

    .contact-icon-wrapper {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 12px;
    }

    .contact-icon-wrapper i {
        font-size: 18px;
    }

    .contact-label {
        font-size: 12px;
    }

    .contact-value {
        font-size: 14px;
    }

    .social-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 12px;
    }

    .map-wrapper,
    .map-container {
        min-height: 300px;
        border-radius: 20px;
    }

    .contact-wave-bg {
        height: 150px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .contact-section-modern {
        background: white;
    }

    .contact-info-card,
    .map-wrapper {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .social-links-modern,
    .contact-wave-bg {
        display: none;
    }
}

/*--------------------------------------------------------------
# History Section - Modern Premium Design
--------------------------------------------------------------*/
.history-section-modern {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    overflow: hidden;
    padding: 60px 0 80px;
}

/* Hero Section */
.history-hero {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(
        135deg,
        rgba(6, 60, 173, 0.03) 0%,
        rgba(99, 102, 241, 0.03) 100%
    );
    border-radius: 24px;
}

.history-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(
        135deg,
        rgba(6, 60, 173, 0.1) 0%,
        rgba(99, 102, 241, 0.1) 100%
    );
    border: 1px solid rgba(6, 60, 173, 0.2);
    border-radius: 50px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.history-badge:hover {
    background: linear-gradient(
        135deg,
        rgba(6, 60, 173, 0.15) 0%,
        rgba(99, 102, 241, 0.15) 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 60, 173, 0.15);
}

.history-badge i {
    font-size: 16px;
    animation: pulse 2s ease-in-out infinite;
}

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

    50% {
        transform: scale(1.1);
    }
}

.history-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 16px;
}

.history-title .text-gradient {
    background: linear-gradient(135deg, var(--accent-color) 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.history-subtitle {
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
        180deg,
        var(--accent-color) 0%,
        #6366f1 50%,
        var(--accent-color) 100%
    );
    transform: translateX(-50%);
    border-radius: 2px;
    opacity: 0.3;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(n + 6) {
    animation-delay: 0.6s;
}

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

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

/* Timeline Item - Left */
.timeline-item.left .timeline-content {
    margin-right: 55%;
    text-align: right;
}

.timeline-item.left .timeline-marker {
    right: 50%;
    transform: translateX(50%);
}

/* Timeline Item - Right */
.timeline-item.right .timeline-content {
    margin-left: 55%;
    text-align: left;
}

.timeline-item.right .timeline-marker {
    left: 50%;
    transform: translateX(-50%);
}

/* Timeline Marker */
.timeline-marker {
    position: absolute;
    top: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, #6366f1 100%);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(6, 60, 173, 0.3);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-marker::before {
    content: "";
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #6366f1 100%);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: translateX(50%) scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(6, 60, 173, 0.4);
}

.timeline-item.left:hover .timeline-marker {
    transform: translateX(50%) scale(1.15) rotate(5deg);
}

.timeline-item:hover .timeline-marker::before {
    opacity: 0.3;
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

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

.timeline-marker-inner {
    position: relative;
    z-index: 1;
}

.timeline-year {
    font-size: 20px;
    font-weight: 800;
    color: var(--contrast-color);
    line-height: 1;
}

.timeline-icon {
    font-size: 32px;
    color: var(--contrast-color);
}

/* Timeline Content */
.timeline-content {
    position: relative;
    background: var(--surface-color);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(3, 40, 123, 0.1);
    border: 1px solid rgba(3, 40, 123, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.timeline-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #6366f1 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(3, 40, 123, 0.15);
    border-color: rgba(6, 60, 173, 0.2);
}

.timeline-item:hover .timeline-content::before {
    opacity: 1;
}

/* Timeline Content - Arrow */
.timeline-content::after {
    content: "";
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item.left .timeline-content::after {
    right: -15px;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent var(--surface-color);
}

.timeline-item.right .timeline-content::after {
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent var(--surface-color) transparent transparent;
}

/* Content Elements */
.timeline-content-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(3, 40, 123, 0.08);
}

.timeline-content-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.timeline-content-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    padding: 6px 16px;
    background: linear-gradient(
        135deg,
        rgba(6, 60, 173, 0.08) 0%,
        rgba(99, 102, 241, 0.08) 100%
    );
    border-radius: 20px;
}

.timeline-content-date i {
    font-size: 14px;
}

.timeline-content-body {
    font-size: 16px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.timeline-content-body p {
    margin-bottom: 16px;
}

.timeline-content-body p:last-child {
    margin-bottom: 0;
}

.timeline-content-body strong {
    color: var(--heading-color);
    font-weight: 600;
}

/* Decorative Corner */
.timeline-decorative-corner {
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(6, 60, 173, 0.03) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.timeline-item.left .timeline-decorative-corner {
    left: 0;
    border-radius: 0 100% 0 20px;
}

.timeline-item.right .timeline-decorative-corner {
    right: 0;
    border-radius: 100% 0 20px 0;
}

.timeline-item:hover .timeline-decorative-corner {
    opacity: 1;
}

/* Simple Content Card (Fallback for non-timeline) */
.history-content-card {
    position: relative;
    background: var(--surface-color);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(3, 40, 123, 0.1);
    border: 1px solid rgba(3, 40, 123, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.history-content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #6366f1 100%);
}

.history-content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(3, 40, 123, 0.15);
    border-color: rgba(6, 60, 173, 0.2);
}

.history-content-body {
    font-size: 16px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.history-content-body p {
    margin-bottom: 20px;
}

.history-content-body p:last-child {
    margin-bottom: 0;
}

.history-content-body strong {
    color: var(--heading-color);
    font-weight: 600;
}

/* Background Wave */
.history-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(3, 40, 123, 0.03) 100%
    );
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .history-title {
        font-size: 36px;
    }

    .history-subtitle {
        font-size: 16px;
    }

    .timeline-line {
        left: 40px;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin-left: 100px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-item.left .timeline-marker,
    .timeline-item.right .timeline-marker {
        left: 40px;
        transform: translateX(-50%);
    }

    .timeline-item.left:hover .timeline-marker,
    .timeline-item.right:hover .timeline-marker {
        transform: translateX(-50%) scale(1.15);
    }

    .timeline-item.left .timeline-content::after {
        left: -15px;
        right: auto;
        border-width: 15px 15px 15px 0;
        border-color: transparent var(--surface-color) transparent transparent;
    }

    .timeline-marker {
        width: 70px;
        height: 70px;
    }

    .timeline-year {
        font-size: 18px;
    }

    .timeline-icon {
        font-size: 28px;
    }

    .history-content-card {
        padding: 36px;
    }
}

@media (max-width: 768px) {
    .history-section-modern {
        padding: 50px 0 60px;
    }

    .history-hero {
        margin-bottom: 40px;
        padding: 32px 16px;
    }

    .history-title {
        font-size: 32px;
    }

    .history-subtitle {
        font-size: 15px;
    }

    .history-badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    .timeline-container {
        padding: 20px 0;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline-content {
        padding: 24px;
    }

    .timeline-content-title {
        font-size: 20px;
    }

    .timeline-content-body {
        font-size: 15px;
    }

    .history-content-card {
        padding: 28px;
    }

    .history-content-body {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .history-section-modern {
        padding: 40px 0 50px;
    }

    .history-hero {
        margin-bottom: 32px;
        padding: 24px 12px;
        border-radius: 20px;
    }

    .history-title {
        font-size: 28px;
    }

    .history-subtitle {
        font-size: 14px;
    }

    .history-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item.left .timeline-marker,
    .timeline-item.right .timeline-marker {
        left: 30px;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin-left: 80px;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
    }

    .timeline-year {
        font-size: 16px;
    }

    .timeline-icon {
        font-size: 24px;
    }

    .timeline-content {
        padding: 20px;
        border-radius: 16px;
    }

    .timeline-content-title {
        font-size: 18px;
    }

    .timeline-content-date {
        font-size: 12px;
        padding: 4px 12px;
    }

    .timeline-content-body {
        font-size: 14px;
        line-height: 1.7;
    }

    .history-content-card {
        padding: 24px;
        border-radius: 20px;
    }

    .history-content-body {
        font-size: 14px;
        line-height: 1.7;
    }

    .history-wave-bg {
        height: 150px;
    }
}

/* Print Styles */
@media print {
    .history-section-modern {
        background: white;
    }

    .timeline-line,
    .timeline-marker,
    .history-wave-bg {
        display: none;
    }

    .timeline-content,
    .history-content-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .timeline-item {
        animation: none;
        opacity: 1;
    }
}

/* ========================================
   TESTIMONIAL SECTIONS - MODERN DESIGN
   ======================================== */

/* Base Section Styling */
.testimonials-modern {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-alumni-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Modern Testimonial Card */
.testimonial-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(3, 40, 123, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.testimonial-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #03287b 0%, #0ea5e9 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(3, 40, 123, 0.15);
    border-color: rgba(3, 40, 123, 0.2);
}

.testimonial-card-modern:hover::before {
    transform: scaleX(1);
}

/* Quote Decoration */
.quote-decoration {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        rgba(3, 40, 123, 0.05) 0%,
        rgba(14, 165, 233, 0.05) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.quote-decoration i {
    font-size: 28px;
    color: #03287b;
    opacity: 0.3;
}

.testimonial-card-modern:hover .quote-decoration {
    opacity: 1;
    transform: rotate(15deg) scale(1.1);
}

/* Stars Rating */
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.testimonial-card-modern:hover .testimonial-stars i {
    transform: scale(1.1);
}

/* Testimonial Content */
.testimonial-content {
    flex: 1;
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: #03287b;
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* Profile Section */
.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(3, 40, 123, 0.1);
}

.profile-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.profile-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #03287b 0%, #0ea5e9 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.testimonial-card-modern:hover .profile-ring {
    opacity: 0.3;
}

.profile-info {
    flex: 1;
    min-width: 0;
}

.profile-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-role {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-corner-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        transparent 50%,
        rgba(3, 40, 123, 0.03) 50%
    );
    border-radius: 20px 0 20px 0;
    pointer-events: none;
}

/* Horizontal Testimonial Card (Alumni) */
.testimonial-card-horizontal {
    flex-direction: row;
    gap: 30px;
    align-items: center;
    min-height: 280px;
}

.testimonial-profile-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    min-width: 200px;
    border-right: 1px solid rgba(3, 40, 123, 0.1);
}

.profile-image-wrapper-large {
    position: relative;
    flex-shrink: 0;
}

.profile-img-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.profile-ring-large {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #03287b 0%, #0ea5e9 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.testimonial-card-horizontal:hover .profile-ring-large {
    opacity: 0.4;
}

.profile-info-horizontal {
    text-align: center;
}

.profile-name-large {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 6px 0;
}

.profile-role-large {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 10px 0;
}

.alumni-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #03287b 0%, #0ea5e9 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(3, 40, 123, 0.2);
}

.testimonial-content-horizontal {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 20px 0;
    position: relative;
}

.quote-decoration-horizontal {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        rgba(3, 40, 123, 0.05) 0%,
        rgba(14, 165, 233, 0.05) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.quote-decoration-horizontal i {
    font-size: 24px;
    color: #03287b;
    opacity: 0.3;
}

.testimonial-card-horizontal:hover .quote-decoration-horizontal {
    opacity: 1;
    transform: rotate(15deg) scale(1.1);
}

.testimonial-text-horizontal p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    font-style: italic;
    margin: 0;
    padding-right: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-modern {
        padding: 60px 0;
    }

    .testimonial-card-modern {
        padding: 25px 20px;
    }

    .quote-decoration {
        width: 50px;
        height: 50px;
    }

    .quote-decoration i {
        font-size: 22px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    .profile-img {
        width: 50px;
        height: 50px;
    }

    .profile-name {
        font-size: 15px;
    }

    .profile-role {
        font-size: 12px;
    }

    /* Horizontal Card Responsive */
    .testimonial-card-horizontal {
        flex-direction: column;
        min-height: auto;
    }

    .testimonial-profile-horizontal {
        border-right: none;
        border-bottom: 1px solid rgba(3, 40, 123, 0.1);
        padding-bottom: 20px;
        min-width: auto;
        width: 100%;
    }

    .profile-img-large {
        width: 90px;
        height: 90px;
    }

    .profile-name-large {
        font-size: 16px;
    }

    .profile-role-large {
        font-size: 13px;
    }

    .testimonial-content-horizontal {
        padding: 20px 0 0 0;
    }

    .testimonial-text-horizontal p {
        padding-right: 50px;
    }
}

/* Swiper Pagination Spacing */
.testimonials-modern .swiper-pagination {
    margin-top: 40px;
    position: relative;
}

/* Banner Responsive Styling */
/* .banner {
            position: relative;
            width: 100%;
            overflow: hidden;
            max-height: 400px;
        } */

.banner img {
    width: 100%;
    max-height: 440px;
    /* object-fit: cover; */
    /* display: block; */
}

/* Ensure content doesn't overlap banner */
.main {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for large screens */
@media (min-width: 1920px) {
    .banner {
        max-height: 550px;
    }
}

@media (min-width: 2560px) {
    .banner {
        max-height: 750px;
    }
}

/* Prevent content from overlapping */
@if (Request: : segment(1)) .main>section: first-of-type,
    .main>.container: first-of-type {
    margin-top: 0.5rem;
}

/* Increase margin for larger screens */
@media (min-width: 768px) {
    .main > section:first-of-type,
    .main > .container:first-of-type {
        margin-top: 2rem;
    }
}

@endif /*--------------------------------------------------------------
# Timeline Section - Perjalanan Kami
--------------------------------------------------------------*/
/* Timeline Image Wrapper */
.timeline-image-wrapper {
    position: relative;
    padding: 20px;
    overflow-x: hidden;
}

/* Timeline Card */
.timeline-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(3, 40, 123, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Timeline Image */
.timeline-card img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    width: 100%;
    height: auto;
}

/* Gradient Overlay */
.timeline-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(1, 22, 77, 0.1) 0%,
        rgba(6, 60, 173, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* Hover Effects */
.timeline-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(3, 40, 123, 0.25);
}

.timeline-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.timeline-card:hover .timeline-gradient-overlay {
    opacity: 1;
}

/* Decorative Elements */
.timeline-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(1, 22, 77, 0.08) 0%,
        rgba(99, 102, 241, 0.08) 100%
    );
    filter: blur(40px);
    z-index: -1;
    transition: all 0.5s ease;
}

.timeline-decoration.decoration-left {
    top: -40px;
    left: -40px;
}

.timeline-decoration.decoration-right {
    bottom: -40px;
    right: -40px;
}

.timeline-card:hover ~ .timeline-decoration {
    transform: scale(1.3);
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .timeline-card:hover img {
        transform: scale(1.03);
    }

    .timeline-decoration {
        width: 80px;
        height: 80px;
    }
}
