/* Root Variables */
:root {
    /* Core Colors */
    --wp-blue: #104271;
    --wp-blue-rgb: 16, 66, 113;
    --wp-yellow: #f4b72a;
    --wp-yellow-rgb: 244, 183, 42;
    --wp-red: #ee3127;
    --wp-red-rgb: 238, 49, 39;
    --wp-white: #ffffff;
    --wp-white-rgb: 255, 255, 255;
    --wp-black: #1c1c1c;
    --wp-black-rgb: 28, 28, 28;
    --wp-gray: #6c757d;
    --wp-gray-rgb: 108, 117, 125;
    --wp-light-gray: #f5f5f5;
    --wp-light-gray-rgb: 245, 245, 245;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--wp-blue) 0%, #1a6fb5 100%);
    --gradient-secondary: linear-gradient(135deg, var(--wp-yellow) 0%, #f8c649 100%);

    /* Theme Colors (light mode defaults) */
    --body-bg: #ffffff;
    --card-bg: #ffffff;
    --navbar-bg: rgba(16, 66, 113, 0.95);
    --footer-bg: #104271;

    /* Text Colors */
    --text-primary: var(--wp-black);
    --text-secondary: #495057;
    --text-muted: #6c757d;
    --card-text: var(--wp-black);
    --heading-color: var(--wp-blue);
    --link-color: var(--wp-blue);
    --link-hover-color: var(--wp-yellow);

    /* Background Colors */
    --bg-light: #f8f9fa;
    --bg-gray: #f0f0f0;
    --bg-dark: #343a40;
    --section-bg-alt: #f9f9f9;

    /* Borders */
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-color: #dee2e6;

    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-heavy: 0 8px 24px rgba(0,0,0,0.15);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 3rem;

    /* Typography */
    --font-family: 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Flexbox Utility Classes */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-center-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

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

.flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.flex-1 {
    flex: 1;
}

/* Grid Utility Classes */
.grid {
    display: grid;
}

.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.grid-1-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

/* Responsive Grid Classes */
@media (max-width: 768px) {
    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-3-col,
    .grid-2-col {
        grid-template-columns: 1fr;
    }
}

/* Card Base Classes */
.card-base {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.card-glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
}

.card-content {
    padding: var(--spacing-lg);
}

.card-content-sm {
    padding: var(--spacing-md);
}

.card-content-lg {
    padding: var(--spacing-xl);
}

/* Card Layout Classes */
.card-full-height {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Spacing Utility Classes */
.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }

.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }

.p-0 { padding: 0; }
.p-xs { padding: var(--spacing-xs); }
.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }

/* Width and Height Utilities */
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.min-h-100 { min-height: 100%; }

/* Position Utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Base Styles */
body {
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 0;
    margin: 0;
    background-color: var(--body-bg);
    transition: background-color var(--transition-normal), color var(--transition-normal);
}


/* Background Patterns */
.bg-pattern-grid {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3Ccircle cx='13' cy='13' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.bg-pattern-dots {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23104271' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='10' cy='10' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.bg-pattern-diagonal {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23104271' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.bg-pattern-waves {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264.088-.402l1.128-2.17c.29-.556.54-1.402.45-1.954-.03-.01.3.03.3.03s.2-1.03-.06-1.745c-.16-.416-.12-.12-.26-.18.34.07.36.47.4.68-.01-.24.01-.6-.05-.87l-.27.04c-.12.4.05.27.04.3-.25.15-.37.48-.38.67-.06-.17.02-.44.13-.57l-.36-.1c-.215.36-.185.8-.14 1.16-.29.07-.54.6-.78.36l.17 1.1c.04.4.28.92.65 1.06.14.05.28.01.36.04.16-.2.18-.76.05-1.25.1.17.12.48.14.78-.17.16-.37-.04-.5-.23-.24-.32-.22-.73-.09-1.05.15-.36.37-.6.6-.5-.1-.5.17.2.22.35.36-.3.56.1.66.2.4.3.25.36.24.42.12.32.32.54.55.4.18-.2.2-.07.17.05-.1.5-.5.64-.68.51-.1-.07-.08-.2-.08-.26-.33.26-.5.04-.67-.35-.04-.2-.13-.25-.27-.16-.02.06.22.26.1.42-.14.16-.27.14-.27.14s.18.25.46.15c.25-.1.35-.35.4-.44.1.02.2.36.07.53-.12.17-.34.28-.72.07.64.62 1.92-.2 1.76-.98.07-.08.26-.08.35.03.09.1.09.27.03.33.28.28.53.1.56-.14.04-.32-.17-.66-.5-.7-.32-.04-.56.3-.4.44.16.16.43.18.63.04.29-.2.37-.9.03-1.04l-.4.05c.5-.33-.12-.52-.25-.53-.15-.02-.33.1-.34.2-.14-.17-.27-.2-.27-.2s-.26-.24-.63-.04c-.33.16-.3.73-.18.92l.2-.1c.24.17.45.5.43.78-.03.6-.8.6-.8.6-.24.13.12.57.47.52.17-.05.27.2.16.4-.05.1-.15.18-.28.2-.15.04-.36-.06-.52-.2-.14-.1-.2.02-.12.12.15.18.47.24.73.14.68-.28.67-1.25.06-1.5-.26-.1-.22-.23-.1-.38.2-.05.67-.23.67-.23s-.7-.45-1.2-.05c-.25.2-.82.56-1.1.72-.1-.2-.25.04-.37.2-.13.17-.36.35-.55.35.4.12.5.36.56.43.06.1.18.6.2.43.03-.17.3-.6.3-.6s.24.5.45.9c.24.46 1.13 1.02 1.67.55.33-.22.28-.32.28-.32s.27.2.28.56c0 .28-.3.3-.4.22-.13.2.1.4.22.47.1.08.37.2.74-.28.3-.32.22-.56.22-.56s.23.27.33.9c.1.67-.07 1.28-.07 1.28.36-.43.36-1.02.36-1.27.01-.2-.35-1.9-1.55-2.08-.35-.07-.7.2-.88.5.05-.23.14-.5.36-.73.2-.24.36-.28.5-.26-.17-.1-.37-.23-.37-.23s.28-.22.44-.23c.32-.03.63.23.63.23v-.32c-.1-.1-.28-.26-.37-.3-.33-.12-.7.04-.7.04s.2-.1.23-.63c0-.3-.27-.5-.27-.5s-.15.46-.22.45c-.08 0-.36-.2-.5-.44-.14-.23-.25-.46-.18-.5.3-.3.4.10.9.33.24.1.37.34.37.34s.07-.24-.03-.42c-.1-.18-.22-.4-.06-.4.15 0 .3.06.42.2.12.16.22.47.22.47s.84-.63.55-1.14c-.28-.5-.75-.56-.88-.65-.13-.08-.2-.34-.12-.43.08-.1.27.05.4.4.06-.55-.36-.96-.78-1.04-.36-.07-.52.1-.6.3-.1.2-.25.72-.25.72s.5-.82.96-1c.46-.17.62.1 1 .1.37 0 .7-.22.7-.22-.32.47-.48.76-.8.92.46-.2.88-.67.93-1.12.07-.6-.34-1-1.1-.84-.74.14-.74 1.1-.74 1.1s-.02-.53.5-.7c.28-.1.52.05.6.2.05.2-.12.53-.12.53s-.1-.12-.2-.2c-.06-.06-.2-.18-.43-.1-.26.06-.48.35-.48.73-.01.4.2.63.2.63s-.06-.47.1-.6c.1-.06.2-.04.25.02.05.04.08.2.05.33 0 .1-.14.18-.3.14-.3-.06-.32.1-.33.14-.06.3.44.58.88.2.43-.33.5-.52.5-.83 0-.33-.17-.5-.17-.5l.1-.16c.18-.2.57-.22.57-.22l.33-.67c.3-.02.52-.45.52-.45l-.4-.12c-.2-.44-.42-.28-.6-.22 0-.08-.07-.3-.27-.37-.2-.06-.54.05-.54.05-.1-.27-.43-.3-.58-.3-.16 0-.52.05-.52.05l-.45.52s-.03-.35-.44-.36c-.4-.03-.64.3-.67.37-.4.07-.35.27-.2.27h.06c-.27.3-.64.28-.64.28l.06-.78c-.4.33-.78.33-.93.5.23-.3.42-.32.5-.5L15.1 6.48c.3.17.75.14.96-.24.13-.23.13-.43.13-.43s.3.4.67.5c.4.13 1 .13 1.1-.2 0-.1-.14-.22-.33-.25-.2-.02-.42.16-.5.3-.18-.1-.2-.35-.2-.44.15-.1.37-.18.65-.12.27.06.45.33.45.33S18 5.67 17.85 5.6c-.18-.1-.1-.32-.1-.32s.3.25.9.2c.54-.04.65-.34.65-.34s-.48-.28-.62-.28c-.14 0-.52.34-.8.5-.28.15-.68.27-.68.27L17 5.44c.1.1.3.2.38.28.27.2.1.3-.8.03-.4.2-.43.35-.43.37h-.23c-.22 0-.2.13-.17.22.04.1.25.16.5.3.06.17.17.35.2.45.06.1.27.16.54.13.28-.02.47-.2.5-.36.05-.17.17-.27.25-.27.1 0 .23.1.23.28 0 .33-.35.65-.94.4' fill='%23f4b72a' fill-opacity='.03'/%3E%3C/svg%3E");
}

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

a:hover {
    color: var(--wp-yellow);
}

/* Navbar Styles */
.navbar {
    background-color: var(--navbar-bg);
    padding: 1rem 0;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-light);
    border-bottom: 2px solid var(--wp-yellow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
}

/* Consistent navbar container */
.navbar .container-fluid {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.navbar.scrolled {
    background-color: var(--wp-blue);
    padding: 0.75rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .navbar-dark .navbar-nav .nav-link {
    padding: 0.5rem 0.7rem;
}

.navbar.scrolled .brand-name {
    font-size: 1.1rem;
}

.navbar.scrolled .brand-motto {
    font-size: 0.65rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    position: relative;
}

.brand-name {
    font-weight: var(--font-weight-bold);
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
    margin-bottom: 2px;
}

.brand-motto {
    font-size: 0.7rem;
    font-weight: var(--font-weight-medium);
    color: var(--wp-yellow);
    letter-spacing: 0.5px;
    font-style: italic;
    opacity: 0.95;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.brand-motto::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--wp-yellow);
    transition: width 0.3s ease;
}

.navbar-brand:hover .brand-motto::before {
    width: 100%;
}

.navbar-brand:hover .brand-name {
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.navbar-brand:hover .brand-motto {
    color: var(--wp-yellow);
    text-shadow: 0 0 3px rgba(244, 183, 42, 0.3);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-semibold);
    padding: 0.7rem 0.8rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 0.05rem;
    font-size: 0.95rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--wp-white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar-dark .navbar-nav .nav-link.active {
    color: var(--wp-white);
    background-color: rgba(244, 183, 42, 0.2);
}

.navbar-dark .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.4rem;
    height: 2px;
    background-color: var(--wp-yellow);
}

.navbar-toggler {
    border: none;
    padding: 0.35rem 0.6rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(244, 183, 42, 0.3);
}

.navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
}

/* Dropdown Menu */
.dropdown-menu {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-medium);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    border-top: 3px solid var(--wp-yellow);
    background-color: rgba(255, 255, 255, 0.98);
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    font-weight: var(--font-weight-medium);
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0.7rem;
    top: 50%;
    width: 0;
    height: 2px;
    background-color: var(--wp-yellow);
    transform: translateY(-50%);
    transition: width 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(16, 66, 113, 0.05);
    padding-left: 2rem;
}

.dropdown-item:hover::before {
    width: 0.7rem;
}

.dropdown-item.active {
    background-color: var(--wp-blue);
    color: var(--wp-white);
}

.dropdown-item.active::before {
    background-color: var(--wp-white);
    width: 0.7rem;
}

/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.language-selector .dropdown-toggle,
.dark-mode-toggle .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    width: 38px;
    height: 38px;
    color: var(--wp-white);
    padding: 0.5rem;
    background: none;
    border: none;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dark-mode-toggle .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--wp-yellow) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: -1;
}

.language-selector .dropdown-toggle:hover,
.dark-mode-toggle .btn i {
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.dark-mode-toggle .btn:hover {
    color: var(--wp-yellow);
    transform: translateY(-2px);
}

.dark-mode-toggle .btn:hover::before {
    opacity: 0.15;
    transform: scale(1.5);
}

.dark-mode-toggle .btn:hover i {
    transform: rotate(30deg);
}

/* Dark mode toggle animation */
body.dark-mode .dark-mode-toggle .btn i.fa-sun {
    animation: spin 0.5s ease-out;
}

body:not(.dark-mode) .dark-mode-toggle .btn i.fa-moon {
    animation: spin 0.5s ease-out;
}

@keyframes spin {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

/* Language code badge */
.lang-code-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--wp-yellow);
    color: var(--wp-blue);
    font-weight: var(--font-weight-bold);
    font-size: 0.75rem;
    border-radius: 4px;
    padding: 0.15rem 0.35rem;
    min-width: 28px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.lang-code-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.language-selector .dropdown-toggle:hover .lang-code-badge {
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.language-selector .dropdown-toggle:hover .lang-code-badge::before {
    transform: scale(2);
    opacity: 1;
}

/* Language dropdown styling */
.language-selector .dropdown-menu {
    min-width: 160px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    right: 0 !important;
    left: auto !important;
    transform: none !important;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    transition: all var(--transition-normal);
}

.flag-icon {
    width: 24px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
}

.lang-name {
    margin-left: 0.75rem;
    flex-grow: 1;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-normal);
}

.lang-code {
    background-color: var(--wp-blue);
    color: white;
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    border-radius: 3px;
    padding: 0.1rem 0.25rem;
    margin-left: 0.5rem;
    transition: all var(--transition-normal);
}

.dropdown-item.active .lang-option {
    background-color: rgba(var(--wp-blue-rgb), 0.05);
}

.dropdown-item.active .flag-icon {
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dropdown-item.active .lang-name {
    color: var(--wp-blue);
    font-weight: var(--font-weight-bold);
}

.dropdown-item.active .lang-code {
    background-color: var(--wp-yellow);
    color: var(--wp-blue);
}

.dropdown-item:hover .lang-option {
    background-color: rgba(var(--wp-yellow-rgb), 0.05);
}

.dropdown-item:hover .flag-icon {
    transform: scale(1.05);
}

.dropdown-item:hover .lang-name {
    color: var(--wp-blue);
}

/* Animation for language change */
.language-selector.changing .lang-code-badge {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.dropdown-item.active .lang-code {
    background-color: var(--wp-yellow);
    color: var(--wp-blue);
}

.language-selector .dropdown-menu {
    min-width: 180px;
    z-index: 1050;
    position: absolute;
}

/* Ensure language selector doesn't get cut off */
.language-selector {
    position: relative;
}

.flag-icon {
    width: 24px;
    height: auto;
    margin-right: 10px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-slider {
    margin-top: 80px;
    z-index: 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-slide {
    height: 100vh;
    min-height: 650px;
    max-height: 950px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--wp-white);
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RkFFRkZDMUI5QjBEMTFFM0IxODZBN0ZEMzg0MjgzQjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RkFFRkZDMUM5QjBEMTFFM0IxODZBN0ZEMzg0MjgzQjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGQUVGRkMxOTlCMEQxMUUzQjE4NkE3RkQzODQyODNCNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGQUVGRkMxQTlCMEQxMUUzQjE4NkE3RkQzODQyODNCNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PpLJ8VUAAAAnSURBVHjaYmxoaGBiYGBgZGBgYGJgYGAGYhCJxENnM+GRZ2QAAgwAlUADR4e58EMAAAAASUVORK5CYII=');
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 66, 113, 0.8) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    padding: 2rem;
    z-index: 3;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-60%); }
    to { opacity: 1; transform: translateY(-50%); }
}

.hero-content h1 {
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    font-size: 3.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--wp-yellow);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.35rem;
    max-width: 800px;
    margin: 2rem auto 2.5rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.hero-content .btn {
    padding: 0.8rem 2rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hero-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-content .btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.hero-content .btn-secondary {
    background: var(--gradient-secondary);
    border: none;
    color: var(--wp-blue);
}

.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
    z-index: 5;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.carousel-indicators button.active {
    background-color: var(--wp-yellow);
    transform: scale(1.2);
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.5);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(16, 66, 113, 0.7);
    border-radius: 50%;
    background-size: 50%;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: var(--wp-blue);
}

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

@keyframes slide-up {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.carousel-item.active .hero-content h1 {
    animation: slide-up 0.8s ease forwards;
    animation-delay: 0.2s;
}

.carousel-item.active .hero-content p {
    animation: slide-up 0.8s ease forwards;
    animation-delay: 0.4s;
}

.carousel-item.active .hero-content .btn {
    animation: slide-up 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--wp-white);
    padding: 10px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    max-width: 80px;
    line-height: 1.2;
}

/* Achievement Stats */
.achievement-stats-container {
    margin-top: 35px;
}

.achievement-stats-container .row {
    margin-right: -10px;
    margin-left: -10px;
}

.achievement-stats-container .col-md-4 {
    padding-right: 10px;
    padding-left: 10px;
}

.achievement-stat {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 140px;
    border-top: 4px solid var(--wp-yellow);
}

.achievement-stat:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg,
                rgba(244, 183, 42, 0.08) 0%,
                rgba(255, 255, 255, 0) 50%);
    z-index: -1;
}

.achievement-stat:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--wp-blue) 0%, #1a6fb5 100%);
    transition: all 0.4s ease;
    z-index: -1;
    opacity: 0;
}

.achievement-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 66, 113, 0.15);
    border-top-color: var(--wp-blue);
}

.achievement-stat:hover:after {
    height: 5px;
    opacity: 1;
}

.achievement-stat:hover .achievement-number {
    color: var(--wp-blue);
}

.achievement-stat .icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    color: var(--wp-yellow);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.achievement-stat:hover .icon {
    transform: rotate(15deg);
    color: var(--wp-blue);
    opacity: 1;
}

.achievement-number {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--wp-yellow);
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    background: linear-gradient(to right, var(--wp-yellow), #f8c649);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(244, 183, 42, 0.2);
}

.achievement-text {
    font-size: 0.95rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    max-width: 100%;
}

/* Section Styles */
.section-title {
    position: relative;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--wp-blue);
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--wp-yellow);
    margin-top: 10px;
}

.text-center .section-title:after {
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.75));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(16, 66, 113, 0.1) 0%, rgba(244, 183, 42, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.service-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--wp-white);
    border-radius: 20px;
    font-size: 2rem;
    transform: rotate(0deg);
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(16, 66, 113, 0.25);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
}

.service-card:hover .card-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 12px 20px rgba(16, 66, 113, 0.35);
}

.card-title {
    font-weight: var(--font-weight-bold);
    color: var(--wp-blue);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
}

.card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--wp-yellow);
    transition: width 0.3s ease;
}

.service-card:hover .card-title::after {
    width: 100%;
}

.service-card .card-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.service-card:hover .card-text {
    color: var(--text-primary);
}

.service-card .btn-outline-primary {
    border-width: 2px;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card .btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.service-card .btn-outline-primary:hover {
    color: var(--wp-white);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(16, 66, 113, 0.3);
}

.service-card .btn-outline-primary:hover::before {
    width: 100%;
}

/* Core Values Section Styles */
.section-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.section-shape.top-right {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -50px;
    background: radial-gradient(circle, rgba(16, 66, 113, 0.06) 0%, rgba(16, 66, 113, 0) 70%);
}

.section-shape.bottom-left {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(244, 183, 42, 0.06) 0%, rgba(244, 183, 42, 0) 70%);
}

.title-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--wp-yellow), rgba(244, 183, 42, 0.3));
    margin: 10px auto 0;
    border-radius: 2px;
}

.core-values-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: var(--border-radius-lg);
    border: none;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.core-values-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 66, 113, 0.03), rgba(244, 183, 42, 0.03));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.core-values-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.core-values-card:hover::before {
    opacity: 1;
}

.core-values-card .card-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.core-values-card .card-shape.shape-1 {
    width: 150px;
    height: 150px;
    top: -40px;
    right: -40px;
    background: radial-gradient(circle, rgba(244, 183, 42, 0.15) 0%, rgba(244, 183, 42, 0) 70%);
    transform: translate(20px, -20px);
}

.core-values-card .card-shape.shape-2 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: -30px;
    background: radial-gradient(circle, rgba(16, 66, 113, 0.15) 0%, rgba(16, 66, 113, 0) 70%);
    transform: translate(-10px, 10px);
}

.core-values-card:hover .card-shape {
    opacity: 1;
    transform: translate(0, 0);
}

.core-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    color: var(--wp-blue);
    border-radius: 18px;
    font-size: 1.8rem;
    transform: rotate(0deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(244, 183, 42, 0.25);
    position: relative;
    overflow: hidden;
}

.core-value-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9), transparent 70%);
    opacity: 0.3;
    z-index: 0;
}

.core-value-icon i {
    position: relative;
    z-index: 1;
}

.core-values-card:hover .core-value-icon {
    transform: rotate(-10deg) scale(1.15);
    box-shadow: 0 15px 30px rgba(244, 183, 42, 0.35);
    border-radius: 22px;
}

.core-values-card .card-title {
    font-weight: var(--font-weight-bold);
    color: var(--wp-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.core-values-card:hover .card-title {
    color: var(--wp-blue);
    transform: translateY(-3px);
}

.card-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--wp-yellow), rgba(244, 183, 42, 0.3));
    margin: 0 auto 15px;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.core-values-card:hover .card-divider {
    width: 60px;
}

.core-values-card .card-text {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.core-values-card:hover .card-text {
    color: var(--text-primary);
}

/* Project Items */
.project-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-medium);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateY(0);
}

.project-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 66, 113, 0.9), rgba(0, 0, 0, 0.8));
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.project-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: brightness(0.95);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0) 100%);
    padding: 30px;
    color: var(--wp-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0.85;
    transition: all 0.5s ease;
}

.project-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
}

.project-item:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-item:hover::before {
    opacity: 0.3;
}

.project-item:hover .project-img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.1);
}

.project-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wp-yellow);
    margin-bottom: 10px;
    font-weight: var(--font-weight-semibold);
    position: relative;
    display: inline-block;
    padding-left: 25px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

.project-category::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 2px;
    background-color: var(--wp-yellow);
    transform: translateY(-50%);
}

.project-title {
    margin-bottom: 15px;
    font-weight: var(--font-weight-bold);
    font-size: 1.6rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
}

.project-description {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
    font-size: 0.95rem;
    max-width: 90%;
}

.project-item:hover .project-category,
.project-item:hover .project-title,
.project-item:hover .project-description {
    transform: translateY(0);
    opacity: 1;
}

.project-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--wp-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-60px) rotate(-45deg);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem;
}

.project-item:hover .project-icon {
    transform: translateY(0) rotate(0);
    opacity: 1;
}

.project-icon:hover {
    background-color: var(--wp-yellow);
    color: var(--wp-blue);
    transform: scale(1.1) rotate(0);
}

.project-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(to right, var(--wp-yellow), #f8c649);
    color: var(--wp-blue);
    font-weight: var(--font-weight-semibold);
    border-radius: 50px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.4s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.project-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.project-item:hover .project-btn {
    transform: translateY(0);
    opacity: 1;
}

.project-btn:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #f8c649, var(--wp-yellow));
}

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

/* Testimonial Cards */
.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 249, 249, 0.9));
    border-radius: var(--border-radius-lg);
    padding: 40px 35px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-medium);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 66, 113, 0.03), rgba(244, 183, 42, 0.03));
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    color: rgba(16, 66, 113, 0.05);
    font-family: 'Georgia', serif;
    line-height: 0.8;
    z-index: -1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    padding-left: 20px;
    border-left: 3px solid var(--wp-yellow);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    position: relative;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--wp-yellow);
}

.testimonial-author-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: var(--wp-blue);
    color: var(--wp-white);
    font-size: 30px;
}

.testimonial-card:hover .testimonial-author-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(244, 183, 42, 0.3);
    background-color: var(--wp-yellow);
    color: var(--wp-blue);
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-weight: var(--font-weight-bold);
    margin-bottom: 5px;
    color: var(--wp-blue);
    font-size: 1.1rem;
    letter-spacing: -0.25px;
}

.testimonial-author-position {
    font-size: 0.85rem;
    color: var(--wp-gray);
    margin-bottom: 0;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.testimonial-rating {
    display: flex;
    margin-top: 8px;
    color: var(--wp-yellow);
    font-size: 0.9rem;
}

.testimonial-rating i {
    margin-right: 4px;
}

/* Blog Cards */
.blog-card {
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.95));
    position: relative;
    z-index: 1;
}

.blog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 66, 113, 0.03), rgba(244, 183, 42, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

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

.blog-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.95);
    position: relative;
}

.blog-card:hover .card-img-top {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.05);
}

.blog-card .card-body {
    padding: 25px;
    position: relative;
}

.blog-card::after {
    content: '';
    position: absolute;
    top: 200px;
    left: 25px;
    right: 25px;
    height: 5px;
    background: var(--gradient-primary);
    z-index: 2;
    transform: scaleX(0.3);
    transform-origin: left;
    opacity: 0.8;
    transition: transform 0.4s ease;
}

.blog-card:hover::after {
    transform: scaleX(1);
}

.blog-category {
    display: inline-block;
    padding: 6px 15px;
    background: var(--gradient-primary);
    color: var(--wp-white);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 5px 15px rgba(16, 66, 113, 0.2);
    position: relative;
    overflow: hidden;
}

.blog-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-category::before {
    transform: translateX(100%);
}

.blog-card .card-title {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--wp-blue);
    transition: color 0.3s ease;
}

.blog-card:hover .card-title {
    color: #0e3a65;
}

.blog-date {
    color: var(--wp-gray);
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.blog-date i {
    margin-right: 5px;
    color: var(--wp-yellow);
}

.blog-card .card-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-card .btn-outline-primary {
    border-width: 2px;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: var(--font-weight-semibold);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.blog-card .btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: width 0.3s ease;
}

.blog-card:hover .btn-outline-primary {
    border-color: transparent;
    color: var(--wp-white);
}

.blog-card:hover .btn-outline-primary::before {
    width: 100%;
}

/* CTA Section Styles */
.cta-section {
    padding: 5rem 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) inset;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    opacity: 0.7;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(244, 183, 42, 0.05);
}

.cta-shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    opacity: 0.5;
    background: linear-gradient(135deg, rgba(244, 183, 42, 0.15), rgba(255, 255, 255, 0.05));
}

.cta-pre-heading {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wp-yellow);
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-semibold);
    position: relative;
    padding-left: 30px;
}

.cta-pre-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: var(--wp-yellow);
    transform: translateY(-50%);
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 90%;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 576px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: flex-end;
    }
}

.btn-cta-primary {
    background: linear-gradient(to right, var(--wp-yellow), #f8c649);
    color: var(--wp-blue);
    font-weight: var(--font-weight-semibold);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 15px rgba(244, 183, 42, 0.3);
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(244, 183, 42, 0.4);
    color: var(--wp-blue);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-cta-primary:hover::before {
    transform: translateX(100%);
}

.btn-cta-primary i {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

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

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--wp-white);
    font-weight: var(--font-weight-medium);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--wp-white);
    transform: translateY(-3px);
}

/* Fixed Contact Buttons */
.fixed-contact-buttons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.fixed-contact-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wp-white);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
    text-decoration: none;
    opacity: 1;
    visibility: visible;
}

.fixed-contact-button:hover {
    transform: scale(1.1);
    color: var(--wp-white);
}

.fixed-contact-button i {
    font-size: 1.2rem;
    display: inline-block;
}

.whatsapp-button {
    background-color: #25d366;
}

.call-button {
    background-color: var(--wp-blue);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0e3a65 0%, var(--wp-blue) 100%);
    color: var(--wp-white);
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 183, 42, 0.1) 0%, rgba(244, 183, 42, 0) 70%);
    z-index: 0;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AkNBhIzmBCTjgAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAB9klEQVR42u3bMU7DMBiG4a9/nRgQA0gMDCAkVs7EObgOF2BmZGYAiYExJC5AgaNKKLEd9/Gp75OsuARCPHl/O3FaYu7umFIpTY2BIBAIBIJAIBAIBIJAIBAIBIJAIBAIBIJAIBAIBIJAIBA4E5KZZxdKKVW/IMutXbr7XZIkKHvMOxdFfVz2N9kXwePjl3uJaZrKsnRPJ6Xrujn26o2nf5n8vj4G1+u1JOl0OmXZ/P/YfaMnJP2CHA6Hp3MwxlFLyNPFVyMiRr2uaZrgerXcfSOQwXe5Zo5HNpJjpb82CKQWIsMQxzxKIcQQR+27MEgYxBBHeK1chkAMcaSxdg4zRvBFdRjE/9a3t3eenrb/3TPztZK2beV5BxHjMfVYHk68rut0Pp9lZvIPLgzT932wkeMxxRq5TMhbmabpw+1DgX8YudwUB3eKNfWEQCAQCAQCgUAKu8vKnRW5NnNBzH0PmWwgc88aTLaGlDhrMEVDSrxLm6Ih7DRxUwSCQCAQCAQCgUAgEAgEAoHEF/uXJ9YQbopAIBAIBAKB/GJ8g6WXsIbEhSAQCAQCgUAgEAgEAoFAIJAiriFjX61nDWENgUAgEAgEAoFAIBAIBAKBQErY9p3b9p18d1TsGhJ7wqKGsO0bgUAgEAgEAoFAIBAIBAKBQCAQCAQCgUAgEAgEAoFAIBAIBAKBQEbzA1oZXNxePQhlAAAAAElFTkSuQmCC');
    opacity: 0.02;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 1.8rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-5px);
}

.footer-logo img {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.footer-heading {
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 12px;
    font-size: 1.4rem;
    letter-spacing: -0.25px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--wp-yellow), rgba(244, 183, 42, 0.5));
    border-radius: 3px;
}

.footer-links {
    padding-left: 0.2rem;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background-color: var(--wp-yellow);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--wp-yellow);
    text-decoration: none;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--wp-white);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--gradient-secondary);
    color: var(--wp-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(244, 183, 42, 0.3);
}

.footer-social-icon:hover::before {
    opacity: 1;
}

.footer-social-icon i {
    font-size: 1.1rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(5px);
}

.footer-contact-icon {
    color: var(--wp-yellow);
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 3px;
    filter: drop-shadow(0 2px 5px rgba(244, 183, 42, 0.3));
    display: inline-block;
    opacity: 1;
    visibility: visible;
}

.footer-contact-item div {
    line-height: 1.5;
}

.footer-btn {
    background: var(--gradient-secondary);
    color: var(--wp-blue);
    font-weight: var(--font-weight-semibold);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(244, 183, 42, 0.3);
}

.footer-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.footer-btn:hover {
    box-shadow: 0 8px 20px rgba(244, 183, 42, 0.4);
    transform: translateY(-3px);
    color: var(--wp-blue);
}

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 1.5rem 0;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-values {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-value-item {
    transition: color 0.3s ease;
    cursor: default;
}

.footer-value-item:hover {
    color: var(--wp-yellow);
}

.footer-quote {
    font-style: italic;
    opacity: 0.8;
    position: relative;
    display: inline-block;
    padding-left: 20px;
}

.footer-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 1px;
    background-color: var(--wp-yellow);
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .footer-bottom [class*="col-"] {
        text-align: center !important;
    }

    .footer-bottom p {
        margin-bottom: 0.5rem;
    }
}

/* Dark Mode Styles */
/* Dark Mode Variables */
body.dark-mode {
    /* Theme Colors (dark mode overrides) */
    --body-bg: #1a1a1a;
    --card-bg: #2a2a2a;
    --navbar-bg: rgba(16, 32, 48, 0.95);
    --footer-bg: #121a24;

    /* Text Colors */
    --text-primary: #f0f0f0;
    --text-secondary: #cccccc;
    --text-muted: #a0a0a0;
    --card-text: #e0e0e0;
    --heading-color: #77a5cb;
    --link-color: #77a5cb;
    --link-hover-color: var(--wp-yellow);

    /* Background Colors */
    --bg-light: #252525;
    --bg-gray: #333333;
    --bg-dark: #1a1a1a;
    --section-bg-alt: #222222;

    /* Borders */
    --border-color: #444444;

    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.2);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.3);
    --shadow-heavy: 0 8px 24px rgba(0,0,0,0.4);

    /* Apply dark mode styles */
    background-color: var(--body-bg);
    color: var(--text-primary);
}

body.dark-mode .bg-light {
    background-color: var(--bg-light) !important;
}

body.dark-mode .card,
body.dark-mode .testimonial-card {
    background-color: var(--card-bg);
    color: var(--card-text);
    border-color: var(--border-color);
    box-shadow: var(--shadow-light);
}

body.dark-mode .card-title,
body.dark-mode .section-title,
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3,
body.dark-mode h4, body.dark-mode h5, body.dark-mode h6,
body.dark-mode .testimonial-author-name {
    color: var(--heading-color);
}

body.dark-mode .text-primary {
    color: var(--link-color) !important;
}

body.dark-mode a {
    color: var(--link-color);
}

body.dark-mode a:hover {
    color: var(--link-hover-color);
}

body.dark-mode .testimonial-author-position,
body.dark-mode .blog-date {
    color: var(--text-muted);
}

body.dark-mode .award-card {
    background-color: var(--card-bg);
}

body.dark-mode .award-title {
    color: var(--heading-color);
}

body.dark-mode .award-desc {
    color: var(--text-secondary);
}



body.dark-mode .navbar {
    background-color: var(--navbar-bg);
    border-color: var(--border-color);
}

body.dark-mode .footer {
    background-color: var(--footer-bg);
}

body.dark-mode .btn-primary {
    background-color: var(--wp-blue);
    border-color: var(--wp-blue);
}

body.dark-mode .btn-primary:hover {
    background-color: #1a6fb5;
    border-color: #1a6fb5;
}

body.dark-mode .btn-outline-primary {
    color: var(--link-color);
    border-color: var(--link-color);
}

body.dark-mode .btn-outline-primary:hover {
    background-color: var(--link-color);
    color: var(--body-bg);
}

/* Additional dark mode elements for consistent appearance */
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select,
body.dark-mode .form-control {
    background-color: var(--bg-dark);
    border-color: var(--border-color);
    color: var(--text-primary);
}

body.dark-mode .form-control:focus {
    background-color: var(--bg-dark);
    border-color: var(--link-color);
    box-shadow: 0 0 0 0.25rem rgba(119, 165, 203, 0.25);
    color: var(--text-primary);
}

body.dark-mode .dropdown-menu {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    box-shadow: var(--shadow-medium);
}

body.dark-mode .dropdown-item {
    color: var(--text-primary);
}

body.dark-mode .dropdown-item:hover,
body.dark-mode .dropdown-item:focus {
    background-color: rgba(119, 165, 203, 0.1);
    color: var(--link-color);
}

body.dark-mode .dropdown-item.active {
    background-color: var(--link-color);
    color: var(--card-bg);
}

body.dark-mode .modal-content {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-primary);
}

body.dark-mode .modal-header,
body.dark-mode .modal-footer {
    border-color: var(--border-color);
}

body.dark-mode .toast {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

body.dark-mode .toast-header {
    background-color: rgba(0, 0, 0, 0.15);
    color: var(--text-primary);
    border-color: var(--border-color);
}

body.dark-mode .close {
    color: var(--text-primary);
}

body.dark-mode .table {
    color: var(--text-primary);
    border-color: var(--border-color);
}

body.dark-mode .table-bordered {
    border-color: var(--border-color);
}

body.dark-mode .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .table-hover > tbody > tr:hover {
    background-color: rgba(255, 255, 255, 0.075);
}

body.dark-mode pre,
body.dark-mode code {
    background-color: var(--bg-dark);
    color: var(--wp-yellow);
    border-color: var(--border-color);
}

body.dark-mode .alert-info {
    background-color: rgba(119, 165, 203, 0.2);
    border-color: rgba(119, 165, 203, 0.3);
    color: var(--link-color);
}

body.dark-mode .alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.3);
    color: #2ad846;
}

body.dark-mode .alert-warning {
    background-color: rgba(244, 183, 42, 0.2);
    border-color: rgba(244, 183, 42, 0.3);
    color: var(--wp-yellow);
}

body.dark-mode .alert-danger {
    background-color: rgba(238, 49, 39, 0.2);
    border-color: rgba(238, 49, 39, 0.3);
    color: #ff5a4f;
}

/* Dark mode for pagination */
body.dark-mode .pagination .page-link {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    color: var(--link-color);
}

body.dark-mode .pagination .page-link:hover {
    background-color: var(--bg-dark);
    color: var(--link-hover-color);
}

body.dark-mode .pagination .page-item.active .page-link {
    background-color: var(--link-color);
    border-color: var(--link-color);
    color: var(--card-bg);
}

body.dark-mode .pagination .page-item.disabled .page-link {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-muted);
}

/* Dark mode for badges */
body.dark-mode .badge {
    background-color: var(--wp-blue);
}

body.dark-mode .badge-primary {
    background-color: var(--link-color);
}

body.dark-mode .badge-secondary {
    background-color: var(--text-muted);
}

/* Dark mode for tooltips */
body.dark-mode .tooltip-inner {
    background-color: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

body.dark-mode .tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--border-color);
}

body.dark-mode .tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--border-color);
}

body.dark-mode .tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: var(--border-color);
}

body.dark-mode .tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: var(--border-color);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-slide {
        height: 80vh;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    body {
        font-size: 15px;
    }

    .navbar {
        padding: 1rem 0;
    }

    .navbar.scrolled {
        padding: 0.7rem 0;
    }

    .navbar-nav {
        padding: 1.25rem 1rem;
        background-color: var(--wp-blue);
        border-radius: 0 0 12px 12px;
        margin-top: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin-bottom: 0.5rem;
        border-radius: 6px;
        background-color: rgba(255, 255, 255, 0.05);
    }

    .navbar-dark .navbar-nav .nav-link.active {
        background-color: rgba(244, 183, 42, 0.15);
    }

    .navbar-dark .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(0);
    }

    .navbar-dark .navbar-nav .nav-item.dropdown .dropdown-menu {
        border-top: 2px solid var(--wp-yellow);
        margin-left: 1rem;
        margin-right: 1rem;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.97);
    }

    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }

    .header-controls {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-left: 0;
        padding: 1.25rem 0 0.5rem;
        margin-top: 0.75rem;
        justify-content: center;
    }

    .hero-slider {
        margin-top: 70px;
    }

    .hero-slide {
        height: 70vh;
    }

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

    .testimonial-card {
        margin-bottom: 40px;
    }

    .blog-card {
        margin-bottom: 40px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
    }

    .experience-badge .number {
        font-size: 2rem;
    }

    .experience-badge .text {
        font-size: 0.7rem;
    }

    .cta-shape-1 {
        width: 200px;
        height: 200px;
        top: -100px;
        right: -50px;
    }

    .cta-shape-3 {
        left: 5%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .client-logo-item {
        height: 100px;
        padding: 15px;
    }

    .client-logo-item img {
        max-height: 60px;
    }

    .award-card {
        margin-bottom: 20px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .award-card .award-content {
        padding: 20px;
    }
    
    .award-card .award-title {
        font-size: 1.1rem;
    }
    
    .award-card .award-image {
        height: 180px;
    }

    .award-logo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-title:after {
        width: 40px;
        margin-top: 8px;
    }

    .achievement-stat {
        height: 100px;
        padding: 15px 20px;
    }

    .achievement-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .achievement-text {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }

    .hero-slide {
        height: 60vh;
        min-height: 500px;
    }

    .achievement-stat {
        height: 130px;
        padding: 20px 15px;
    }

    .achievement-number {
        font-size: 2.5rem;
        margin-bottom: 5px;
    }

    .achievement-text {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }

    .achievement-stat .icon {
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h1::after {
        width: 60px;
        height: 3px;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 95%;
    }

    .card-icon, .core-value-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }

    .card-title, .award-title {
        font-size: 1.3rem;
    }

    .service-card .card-text,
    .blog-card .card-text,
    .testimonial-text {
        font-size: 0.95rem;
    }

    .project-img {
        height: 300px;
    }

    .project-title {
        font-size: 1.4rem;
    }

    .project-description {
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-author-icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .testimonial-author-name {
        font-size: 1rem;
    }

    .testimonial-rating {
        font-size: 0.8rem;
    }

    .cta-pre-heading {
        font-size: 0.8rem;
    }

    .cta-heading {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .fixed-contact-buttons {
        right: 10px;
        bottom: 10px;
    }

    .fixed-contact-button {
        width: 45px;
        height: 45px;
    }

    .footer-heading {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .footer-content [class*="col-"] {
        margin-bottom: 2rem;
    }
}

/* Navbar optimizations for medium-sized screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-dark .navbar-nav .nav-link {
        padding: 0.6rem 0.5rem;
        font-size: 0.85rem;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-motto {
        font-size: 0.65rem;
    }

    .language-selector .dropdown-toggle,
    .dark-mode-toggle .btn {
        width: 32px;
        height: 32px;
        padding: 0.4rem;
    }
}

/* For smaller medium screens */
@media (min-width: 992px) and (max-width: 1080px) {
    .brand-motto {
        font-size: 0.6rem;
        letter-spacing: 0;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 0.6rem 0.4rem;
        font-size: 0.82rem;
    }

    .lang-code-badge {
        font-size: 0.7rem;
        min-width: 26px;
        padding: 0.12rem 0.3rem;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 14px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-brand span {
        display: none;
    }

    .navbar-brand img {
        height: 45px;
    }

    .navbar {
        padding: 0.85rem 0;
    }

    .navbar.scrolled {
        padding: 0.6rem 0;
    }

    .hero-slide {
        height: 90vh;
        min-height: 450px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h1::after {
        width: 50px;
        height: 3px;
        bottom: -10px;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin: 1.5rem auto 2rem;
    }

    .hero-content .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 35px;
        height: 35px;
    }

    .experience-badge {
        width: 80px;
        height: 80px;
        top: -10px;
        right: -10px;
    }

    .experience-badge .number {
        font-size: 1.5rem;
    }

    .experience-badge .text {
        font-size: 0.6rem;
    }

    .section-title {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .section-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .blog-card::after {
        top: 180px;
    }

    .blog-card .card-img-top {
        height: 180px;
    }

    .cta-pre-heading {
        padding-left: 0;
    }

    .cta-pre-heading::before {
        display: none;
    }

    .cta-text {
        max-width: 100%;
    }

    .footer-social-links {
        gap: 10px;
    }

    .footer-social-icon {
        width: 36px;
        height: 36px;
    }

    .client-logo-item {
        height: 80px;
        padding: 10px;
    }

    .client-logo-item img {
        max-height: 50px;
    }
}

/* Clients Slider Styles */
.clients-slider {
    padding: 20px 0;
}

.client-logo-item {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.client-logo-item img {
    max-height: 80px;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Awards Slider Styles */
.awards-slider {
    padding: 20px 0;
}

.award-card {
    background-color: var(--wp-white);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    height: 100%;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

/* Certifications page award cards */
.award-card .award-image {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
    height: 200px;
    overflow: hidden;
}

.award-card .award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.award-card .award-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.award-card .award-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--wp-blue);
}

.award-card .award-issuer {
    font-size: 0.9rem;
    color: var(--wp-blue);
    font-weight: 500;
    margin-bottom: 15px;
}

.award-card .award-description {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Ensure award cards respect Bootstrap grid constraints */
.award-card .award-year {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--wp-blue);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

/* Force container constraints */
[class*="col-"] .award-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Home page award cards (for awards slider) */
.home-award-card {
    padding: 30px;
    align-items: center;
    text-align: center;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}

.award-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-logo img {
    max-width: 100%;
    max-height: 100%;
}

.award-title {
    color: var(--wp-blue);
    font-weight: 700;
    margin-bottom: 5px;
}

.award-org {
    color: var(--wp-yellow);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.award-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Swiper Controls Customization */
.swiper-pagination-bullet {
    background-color: var(--wp-blue);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: var(--wp-blue);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--wp-blue);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--wp-yellow);
}

/* Achievement Styles */
.achievement-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.achievement-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 66, 113, 0.03), rgba(244, 183, 42, 0.03));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--wp-white);
    box-shadow: 0 10px 20px rgba(16, 66, 113, 0.25);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.achievement-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
}

.achievement-card:hover .achievement-icon {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(16, 66, 113, 0.35);
    border-radius: 30px;
}

.achievement-content {
    position: relative;
    z-index: 2;
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--wp-blue);
    margin-bottom: 5px;
    line-height: 1.1;
    display: inline-block;
    background: linear-gradient(to right, var(--wp-blue), #1a6fb5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.achievement-plus {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--wp-yellow);
    position: relative;
    top: -10px;
    margin-left: 1px;
}

.achievement-text {
    font-size: 1.1rem;
    color: #555;
    font-weight: var(--font-weight-medium);
    margin-top: 5px;
}

.achievement-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--wp-yellow), rgba(244, 183, 42, 0.3));
    width: 0;
    transition: width 2s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 0 2px 2px 0;
}

.achievement-card:hover .achievement-progress {
    width: 100%;
}

.achievement-decoration-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px dashed rgba(16, 66, 113, 0.15);
    animation: spin 30s linear infinite;
}

.achievement-decoration-dots {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--wp-yellow) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.3;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Achievement Info Cards */
.achievement-info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.achievement-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 66, 113, 0.03), rgba(244, 183, 42, 0.03));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.achievement-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.achievement-info-card:hover::before {
    opacity: 1;
}

.achievement-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(16, 66, 113, 0.1);
    color: var(--wp-blue);
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.achievement-info-card:hover .achievement-info-icon {
    background-color: var(--wp-blue);
    color: var(--wp-white);
    transform: rotate(-10deg);
}

.achievement-info-title {
    font-weight: var(--font-weight-bold);
    color: var(--wp-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.achievement-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--wp-yellow);
    transition: width 0.3s ease;
}

.achievement-info-card:hover .achievement-info-title::after {
    width: 60px;
}

.achievement-info-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Additional Responsive Adjustments for New Sections */
@media (max-width: 992px) {
    .client-logo-item {
        height: 100px;
        padding: 15px;
    }

    .client-logo-item img {
        max-height: 60px;
    }

    .award-card {
        padding: 20px;
    }

    .award-logo {
        width: 80px;
        height: 80px;
    }

    .achievement-card {
        padding: 25px 15px;
    }

    .achievement-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .achievement-number {
        font-size: 2.8rem;
    }

    .achievement-plus {
        font-size: 1.6rem;
    }

    .achievement-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .client-logo-item {
        height: 80px;
        padding: 10px;
    }

    .client-logo-item img {
        max-height: 50px;
    }

    .achievement-card {
        padding: 20px 10px;
    }

    .achievement-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .achievement-number {
        font-size: 2.5rem;
    }

    .achievement-plus {
        font-size: 1.4rem;
    }

    .achievement-text {
        font-size: 0.9rem;
    }

    .achievement-info-card {
        padding: 20px 15px;
    }
}

/* Team Section Styles */
.team-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(245, 245, 245, 0.9), rgba(255, 255, 255, 0.97));
    z-index: 0;
}

.team-card {
    perspective: 1000px;
    height: 450px;
    border-radius: var(--border-radius-lg);
    position: relative;
    margin-bottom: 30px;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-style: preserve-3d;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-lg);
}

.team-card:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front, .team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.team-card-front {
    background-color: var(--wp-white);
}

.team-card-back {
    background: linear-gradient(135deg, var(--wp-blue) 0%, #1a6fb5 100%);
    color: var(--wp-white);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.team-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.team-card-front-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: var(--wp-white);
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.team-card:hover .team-card-front-content {
    transform: translateY(-10px);
}

.team-name {
    font-weight: var(--font-weight-bold);
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: inherit;
}

.team-position {
    color: var(--wp-yellow);
    font-weight: var(--font-weight-medium);
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.9;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.team-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--wp-white);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.team-social-link:hover {
    background-color: var(--wp-yellow);
    color: var(--wp-blue);
    transform: translateY(-3px);
}

.team-decoration-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 66, 113, 0.05) 0%, rgba(16, 66, 113, 0) 70%);
    top: 20%;
    right: -150px;
}

@media (max-width: 992px) {
    .team-card {
        height: 400px;
    }

    .team-img-wrapper {
        height: 300px;
    }

    .team-bio {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .team-card {
        height: 380px;
    }

    .team-img-wrapper {
        height: 250px;
    }

    .team-card-back {
        padding: 20px;
    }

    .team-name {
        font-size: 1.2rem;
    }

    .team-position {
        font-size: 0.8rem;
    }
}

/* Modern Timeline Styles */
.timeline-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.timeline-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(240, 240, 240, 0.9), rgba(250, 250, 250, 0.97));
    z-index: 0;
}

.modern-timeline {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-progress {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--wp-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 4px;
    opacity: 0.7;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding: 0 40px;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-item-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    position: absolute;
    top: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: var(--font-weight-bold);
    box-shadow: 0 5px 15px rgba(16, 66, 113, 0.2);
    z-index: 1;
}

.timeline-item.left .timeline-year {
    right: -15px;
}

.timeline-item.right .timeline-year {
    left: -15px;
}

.timeline-content {
    padding: 30px;
    padding-top: 50px;
    position: relative;
    z-index: 0;
}

.timeline-title {
    font-weight: var(--font-weight-bold);
    color: var(--wp-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--wp-yellow);
    transition: width 0.3s ease;
}

.timeline-item-inner:hover .timeline-title::after {
    width: 100%;
}

.timeline-text {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.timeline-icon {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background-color: rgba(16, 66, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wp-blue);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.timeline-item-inner:hover .timeline-icon {
    background-color: var(--wp-blue);
    color: var(--wp-white);
    transform: rotate(360deg);
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--wp-yellow);
    border: 4px solid var(--wp-white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(244, 183, 42, 0.2);
    top: 30px;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item.left::before {
    right: -10px;
}

.timeline-item.right::before {
    left: -10px;
}

.timeline-item:hover::before {
    background-color: var(--wp-blue);
    transform: scale(1.2);
}

.timeline-decoration-circle-1 {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px dashed rgba(16, 66, 113, 0.1);
    top: 10%;
    right: -100px;
    z-index: 0;
}

.timeline-decoration-circle-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 183, 42, 0.05) 0%, rgba(244, 183, 42, 0) 70%);
    bottom: 10%;
    left: -80px;
    z-index: 0;
}

/* Modern Service Card Styles */
.service-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background-color: #fff;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.card-img-top-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.service-card:hover .card-img-top {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    transition: all 0.3s ease;
}

.service-badge {
    background-color: var(--wp-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card .card-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--wp-primary);
}

.service-card .card-text {
    color: var(--bs-secondary);
    margin-bottom: 1rem;
}

.service-card .btn-outline-primary {
    border-width: 2px;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-card .btn-outline-primary:hover {
    background-color: var(--wp-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Modern Clients Section Styles */
.clients-section {
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    margin-top: 10px;
}

.bg-primary-subtle {
    background-color: rgba(16, 66, 113, 0.1);
}

.text-primary {
    color: var(--wp-primary) !important;
}

.clients-counter-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    border: 1px solid #f0f0f0;
}

.client-counter-item {
    padding: 15px 10px;
    text-align: center;
    position: relative;
}

.client-counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #eee;
}

.client-counter-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wp-primary);
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--wp-primary) 0%, #1a6fb5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.client-counter-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.clients-logo-grid {
    margin-top: 40px;
}

.client-logo-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.client-logo-card img {
    max-height: 70px;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    object-fit: contain;
}

.client-logo-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: var(--wp-primary);
}

.client-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.featured-client {
    border: 2px solid var(--wp-yellow);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--wp-yellow);
    color: var(--wp-primary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.view-more-clients {
    background: rgba(16, 66, 113, 0.05);
    border-radius: 10px;
    height: 120px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--wp-primary);
}

.view-more-icon {
    background-color: rgba(16, 66, 113, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.view-more-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.view-more-clients:hover {
    background: rgba(16, 66, 113, 0.08);
    color: var(--wp-primary);
}

.view-more-clients:hover .view-more-icon {
    background-color: var(--wp-primary);
    color: white;
    transform: rotate(90deg);
}

@media (max-width: 992px) {
    .clients-counter-card {
        margin-top: 30px;
    }

    .client-logo-card {
        height: 100px;
        padding: 15px;
    }

    .client-logo-card img {
        max-height: 50px;
    }

    .view-more-clients {
        height: 100px;
    }
}

@media (max-width: 767px) {
    .client-counter-item:nth-child(2n)::after {
        display: none;
    }

    .client-counter-item:nth-child(3)::before {
        content: '';
        position: absolute;
        left: 15%;
        top: 0;
        width: 70%;
        height: 1px;
        background-color: #eee;
    }
}

/* Core Value Card Simplified Styles */
.core-value-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    height: 100%;
    border: 1px solid #eee;
}

.core-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--wp-yellow);
}

.core-value-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.6rem;
    z-index: 2;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.core-value-card:hover .core-value-icon {
    background: var(--wp-yellow);
    color: var(--wp-primary);
    transform: rotateY(180deg);
}

.core-value-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.core-value-title {
    color: #333;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
    position: relative;
}

.core-value-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--wp-yellow);
    transform: translateX(-50%);
}


.core-value-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.core-value-bg-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 7rem;
    color: rgba(0, 0, 0, 0.03);
    z-index: 1;
    opacity: 1;
}

/* Modern Project Cards */
/* Enhanced Project Card Styles */
.project-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--wp-blue), var(--wp-yellow));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    border-radius: 16px 0 0 16px;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.project-card:hover::before {
    opacity: 1;
}

.project-card-img-container {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.project-card-img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-card-img-container::after {
    opacity: 0.5;
}

.project-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-card-img {
    transform: scale(1.08);
}

.project-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--wp-blue) 0%, rgba(16, 66, 113, 0.85) 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.project-card:hover .project-card-badge {
    background: linear-gradient(135deg, var(--wp-yellow) 0%, rgba(244, 183, 42, 0.85) 100%);
    color: var(--wp-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.project-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

.project-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--wp-blue);
    position: relative;
    transition: color 0.3s ease;
}

.project-card:hover .project-card-title {
    color: var(--wp-primary);
}

.project-card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--wp-yellow);
    transition: width 0.3s ease;
}

.project-card:hover .project-card-title::after {
    width: 60px;
}

.project-card-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.project-card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.project-card-status {
    display: flex;
    align-items: center;
}

.project-card-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-card-status-badge.completed {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.project-card-status-badge.completed::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
}

.project-card-status-badge.in-progress {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.project-card-status-badge.in-progress::before {
    content: '\f2f2';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
}

.project-card-status-badge.upcoming {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.project-card-status-badge.upcoming::before {
    content: '\f064';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
}

/* Project Cards Responsive Styles */
@media (max-width: 1200px) {
    .project-card-img-container {
        height: 220px;
    }

    .project-card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 992px) {
    .project-card-img-container {
        height: 200px;
    }

    .project-card-body {
        padding: 1.5rem;
    }

    .project-card-title {
        font-size: 1.2rem;
    }

    .project-card-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .project-card {
        margin-bottom: 40px;
    }

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

    .project-card-img-container {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .project-card-img-container {
        height: 180px;
    }

    .project-card-body {
        padding: 1.25rem;
    }

    .project-card-title {
        font-size: 1.1rem;
    }

    .project-card-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .project-card-status-badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 992px) {
    .core-value-card {
        padding: 25px 15px;
    }

    .core-value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .core-value-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .core-value-bg-icon {
        font-size: 5rem;
    }
}

@media (max-width: 992px) {
    .timeline-progress {
        left: 30px;
        margin-left: 0;
    }

    .timeline-item {
        width: 100%;
        left: 0;
        padding-left: 70px;
        padding-right: 20px;
    }

    .timeline-item.left::before,
    .timeline-item.right::before {
        left: 20px;
    }

    .timeline-item.left .timeline-year,
    .timeline-item.right .timeline-year {
        left: 70px;
        right: auto;
    }

    .timeline-content {
        padding: 20px;
        padding-top: 50px;
    }

    .timeline-title {
        font-size: 1.2rem;
    }

    .timeline-text {
        font-size: 0.9rem;
    }
}

/* CTA Section Styles for About Page */
.cta-section-about {
    padding: 100px 0;
    background: linear-gradient(135deg, #0e3a65 0%, var(--wp-blue) 70%, #1a6fb5 100%);
    color: var(--wp-white);
    position: relative;
    margin-top: 80px;
    margin-bottom: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1NiIgaGVpZ2h0PSIxMDAiPgo8cmVjdCB3aWR0aD0iNTYiIGhlaWdodD0iMTAwIiBmaWxsPSIjMGUzYTY1Ij48L3JlY3Q+CjxwYXRoIGQ9Ik0yOCA2NkwwIDUwTDAgMTZMMjggMEw1NiAxNkw1NiA1MEwyOCA2NkwyOCAxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzEyNDc3OSIgc3Ryb2tlLXdpZHRoPSIyIj48L3BhdGg+CjxwYXRoIGQ9Ik0yOCAwTDI4IDM0TDAgNTBMMCA4NEwyOCAxMDBMNTYgODRMNTYgNTBMMjggMzQiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzEyNDc3OSIgc3Ryb2tlLXdpZHRoPSIyIj48L3BhdGg+Cjwvc3ZnPg==');
    opacity: 0.08;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.cta-pre-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: var(--font-weight-medium);
    color: var(--wp-yellow);
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.cta-pre-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background-color: var(--wp-yellow);
}

.cta-title {
    font-size: 2.8rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 95%;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(to right, var(--wp-yellow), #f8c649);
    color: var(--wp-blue);
    font-weight: var(--font-weight-bold);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(244, 183, 42, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #f8c649, var(--wp-yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(244, 183, 42, 0.4);
    color: var(--wp-blue);
}

.btn-cta-primary:hover::before {
    opacity: 1;
}

.btn-cta-primary i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

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

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--wp-white);
    font-weight: var(--font-weight-medium);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--wp-white);
}

.cta-image-container {
    position: relative;
    perspective: 1000px;
}

.cta-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transform: rotateY(-25deg) rotateX(10deg);
    box-shadow: 25px 60px 125px -25px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.cta-image-box:hover {
    transform: rotateY(-15deg) rotateX(5deg) translateZ(10px);
}

.cta-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.cta-image-box:hover .cta-image {
    transform: scale(1);
}

.cta-image-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
    border-radius: 20px;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 183, 42, 0.1) 0%, rgba(244, 183, 42, 0) 70%);
    top: -150px;
    right: 10%;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(255, 255, 255, 0.05);
    bottom: -100px;
    left: 10%;
    opacity: 0.5;
}

.cta-shape-3 {
    width: 50px;
    height: 50px;
    background-color: rgba(244, 183, 42, 0.15);
    top: 20%;
    left: 5%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

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

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-section-about {
        padding: 60px 0;
    }

    .cta-pre-title {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .cta-text {
        margin-bottom: 25px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
/* Home Page Award Cards */
.home-award-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.home-award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--wp-blue);
}

.award-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--wp-yellow);
    color: var(--wp-blue);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    z-index: 10;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.award-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.home-award-card:hover .award-image img {
    transform: scale(1.08);
}

.award-content {
    padding: 25px;
    position: relative;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.award-icon {
    width: 50px;
    height: 50px;
    background: var(--wp-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.award-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wp-blue);
    margin-bottom: 10px;
    line-height: 1.4;
}

.award-org {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

.award-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* New Awards Carousel Design */
.awards-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.awards-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
    min-height: 500px;
}

.awards-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 200%;
    height: auto;
}

.award-slide {
    width: 50%;
    flex: 0 0 50%;
    display: flex;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.award-card-new {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 50%;
    flex: 1;
}

.award-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.award-year-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--wp-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.award-image-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.award-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.award-card-new:hover .award-img {
    transform: scale(1.1);
}

.award-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.award-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--wp-blue), #0a4d8c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.award-card-new:hover .award-icon-circle {
    transform: rotateY(180deg);
}

.award-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wp-blue);
    margin-bottom: 12px;
    line-height: 1.4;
}

.award-organization {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--wp-blue);
    margin-bottom: 15px;
    opacity: 0.8;
}

.award-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.award-view-btn {
    background: var(--wp-yellow);
    color: var(--wp-blue);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(244, 183, 42, 0.3);
}

.award-view-btn:hover {
    background: #f5d742;
    color: var(--wp-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(244, 183, 42, 0.4);
    text-decoration: none;
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--wp-blue);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.carousel-nav:hover {
    background: var(--wp-yellow);
    color: var(--wp-blue);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* Pagination Dots */
.awards-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    background: #f8f9fa;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: var(--wp-blue);
    transform: scale(1.2);
}

.pagination-dot:hover {
    background: var(--wp-yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .awards-carousel {
        min-height: auto;
    }
    
    .award-slide {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .award-card-new {
        width: 100%;
    }
    
    .awards-track {
        width: 200%;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: -15px;
    }
    
    .carousel-next {
        right: -15px;
    }
    
    .award-info {
        padding: 20px;
    }
    
    .award-image-container {
        height: 180px;
    }
}
EOL < /dev/null
/* Enhanced Award Image Styles */
.home-award-card .award-image {
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.home-award-card .award-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
}

.home-award-card .award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.award-round-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: -75px auto 15px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    position: relative;
    z-index: 10;
}

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

.home-award-card:hover .award-round-image img {
    transform: scale(1.1);
}

.home-award-card:hover .award-image img {
    transform: scale(1.12);
}

/* Enhanced Award Card Styles */
.home-award-card {
    padding-bottom: 25px;
    border-radius: 12px;
    margin-top: 75px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, rgba(255,255,255,1) 20%);
    backdrop-filter: blur(5px);
}

.home-award-card .award-content {
    text-align: center;
    padding-top: 0;
}

.home-award-card .award-icon {
    margin: 0 auto 15px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--wp-blue) 0%, #0a4d8c 100%);
    transition: transform 0.3s ease;
}

.home-award-card:hover .award-icon {
    transform: rotateY(180deg);
}

.home-award-card .award-badge {
    left: 15px;
    right: auto;
    top: 190px;
    z-index: 20;
}

.home-award-card .award-title {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.home-award-card .award-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--wp-yellow);
}

/* Enhanced award modal styles */
.award-modal-image {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
EOL < /dev/null
/* Image lightbox styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.5);
    border: 5px solid white;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    padding: 15px;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
}

.award-image-container {
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
}

.award-image-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.award-image-container:hover:after {
    opacity: 1;
}

.award-image-container .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: white;
    font-size: 28px;
    z-index: 5;
    opacity: 0;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-image-container:hover .zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
EOL < /dev/null
/* Make round award images clickable */
.award-round-image {
    cursor: zoom-in;
    position: relative;
}

.award-round-image::before {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 24px;
    z-index: 5;
    opacity: 0;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-round-image:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.award-round-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.award-round-image:hover::after {
    opacity: 1;
}
EOL < /dev/null
/* Enhanced Testimonials Section Styles */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    padding: 30px 0;
}

.testimonials-container::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 120px;
    color: rgba(var(--wp-blue-rgb), 0.05);
    z-index: 0;
}

.testimonials-container::after {
    content: '\f10e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -30px;
    right: 0;
    font-size: 120px;
    color: rgba(var(--wp-blue-rgb), 0.05);
    z-index: 0;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    padding: 30px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    border: 1px solid var(--border-color);
    overflow: hidden;
    color: var(--card-text);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, var(--wp-blue), var(--wp-yellow));
    opacity: 0.8;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card:hover .testimonial-author-icon {
    transform: scale(1.05);
    border-color: var(--wp-yellow);
    background-color: var(--wp-yellow);
    color: var(--wp-blue);
}

.testimonial-text {
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    padding: 10px 0;
    font-style: italic;
}

.testimonial-text::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -15px;
    left: -5px;
    font-size: 1.2rem;
    color: var(--wp-yellow);
    opacity: 0.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.testimonial-author-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--wp-blue);
    background-color: var(--wp-blue);
    color: var(--wp-white);
    font-size: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-author-info {
    margin-left: 20px;
    flex: 1;
}

.testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wp-blue);
    margin-bottom: 5px;
}

.testimonial-author-position {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 8px;
}

.testimonial-rating {
    color: var(--wp-yellow);
    font-size: 0.95rem;
}

/* Testimonial Slider */
.testimonial-slider {
    padding: 20px 0 60px;
}

#testimonialsSwiper .swiper-pagination {
    bottom: 0;
}

#testimonialsSwiper .swiper-button-next,
#testimonialsSwiper .swiper-button-prev {
    color: var(--wp-blue);
    background-color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#testimonialsSwiper .swiper-button-next:after,
#testimonialsSwiper .swiper-button-prev:after {
    font-size: 20px;
}

#testimonialsSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--wp-blue);
    opacity: 0.5;
}

#testimonialsSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--wp-blue);
}

.testimonial-highlight {
    background: linear-gradient(90deg, transparent, rgba(var(--wp-blue-rgb), 0.1), transparent);
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }
}
EOL < /dev/null
/* Fixed 3-column testimonial display */
.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin: 0 15px;
}

/* Initially hide testimonials 4 and 5 */
.testimonial-card:nth-child(n+4) {
    display: none;
}

/* Active testimonial styling */
.active-testimonial {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--wp-blue);
    transition: all 0.3s ease;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.testimonial-control-btn {
    background-color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--wp-blue);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-control-btn:hover {
    background-color: var(--wp-blue);
    color: white;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(16, 66, 113, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--wp-blue);
    transform: scale(1.2);
}

/* Responsive styles */
@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .testimonial-container {
        padding: 0 10px;
    }

    .testimonial-control-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Language Error Alert */
#language-error-alert {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.3s ease-out;
}

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

/* Fix dropdown positioning - simpler approach */
.language-selector .dropdown-menu {
    right: 0 !important;
    left: auto !important;
    top: 100% !important;
    transform: none !important;
    z-index: 1050 !important;
}

/* Ensure dropdown items are clickable */
.language-selector .dropdown-item {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Additional responsive styles for award cards */
@media (min-width: 768px) and (max-width: 991px) {
    .award-card {
        max-width: 100% \!important;
        width: 100% \!important;
    }
    
    .award-card .award-image {
        height: 200px;
    }
}

@media (min-width: 992px) {
    .award-card {
        max-width: 100% \!important;
        width: 100% \!important;
    }
    
    .award-card .award-image {
        height: 220px;
    }
}
