* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 166, 81, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 166, 81, 0);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(0, 166, 81, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 166, 81, 0.8);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotateZ(-1deg);
    }
    50% {
        transform: rotateZ(1deg);
    }
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.1);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

:root {
    --primary-color: #003366;
    --secondary-color: #00A651;
    --accent-color: #FFD700;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    font-weight: 400;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: 1px;
}

.tagline, .badge, .label {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Container Padding */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 12px;
    }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideInDown 0.6s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 20px;
    height: auto;
    min-height: 90px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInLeft 0.6s ease 0.1s both;
    height: 100%;
}

.nav-brand .logo {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-brand .logo:hover {
    transform: scale(1.08) rotate(2deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-text:hover .brand-name {
    text-shadow: 0 0 20px rgba(0, 166, 81, 0.4);
}

.brand-name {
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #003366 0%, #00A651 50%, #003366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;
    font-family: 'Great Vibes', 'Playfair Display', cursive;
    filter: drop-shadow(0 2px 6px rgba(0, 51, 102, 0.15));
    transition: all 0.3s ease;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 166, 81, 0.1);
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 700;
    background: linear-gradient(90deg, #0066CC 0%, #00A651 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    letter-spacing: 1.2px;
    font-family: 'Georgia', 'Garamond', serif;
    filter: drop-shadow(0 1px 3px rgba(0, 102, 204, 0.15));
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-brand span {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    animation: slideInRight 0.6s ease 0.1s both;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 0.95rem;
    height: 40px;
}

.nav-menu a span {
    display: none;
    margin-left: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover span {
    display: inline-block;
    opacity: 1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--secondary-color);
    background: rgba(0, 166, 81, 0.08);
    border-radius: 8px;
}

/* Advanced Training Section Styles */
.training-section-advanced {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 95, 158, 0.03) 0%, rgba(255, 121, 54, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.training-section-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 95, 158, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 121, 54, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.training-header-advanced {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.training-title-block {
    animation: fadeInUp 0.6s ease;
}

.training-badge-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #ff9e64);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.training-badge-primary i {
    margin-right: 6px;
}

.training-title-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.training-subtitle-main {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
}

.training-stats-box {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 95, 158, 0.1);
}

.stat-item-training {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(0, 95, 158, 0.1);
}

.stat-item-training:last-child {
    border-right: none;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Controls Bar */
.training-controls-bar {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.training-search-wrapper {
    flex: 1;
    min-width: 250px;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 14px;
    color: #ccc;
    font-size: 1rem;
}

.training-search-input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.training-search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 121, 54, 0.1);
}

.search-clear-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.search-clear-btn:hover {
    color: var(--secondary-color);
}

/* Filter Buttons */
.training-filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border: 2px solid #eee;
    border-radius: 8px;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--secondary-color), #ff9e64);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(255, 121, 54, 0.3);
}

/* View Toggle */
.training-view-toggle {
    display: flex;
    gap: 8px;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.view-btn:hover {
    background: white;
    color: var(--primary-color);
}

.view-btn.active {
    background: white;
    color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Loading Spinner */
.training-loading {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
}

.training-loading.active {
    display: flex;
}

.loading-spinner {
    text-align: center;
}

.spinner-ring {
    width: 50px;
    height: 50px;
    border: 4px solid #eee;
    border-top-color: var(--secondary-color);
    border-right-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner p {
    color: #999;
    font-size: 0.95rem;
}

/* Grid Layout */
.training-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.training-grid-advanced.list-view {
    grid-template-columns: 1fr;
}

/* Training Card */
.training-card-advanced {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 95, 158, 0.05);
}

.training-card-advanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Wrapper */
.card-media-wrapper {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-media-img,
.training-media-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.training-card-advanced:hover .training-media-img,
.training-card-advanced:hover .training-media-video {
    transform: scale(1.08);
}

.media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 95, 158, 0.1), rgba(255, 121, 54, 0.1));
    color: #ccc;
    font-size: 3rem;
}

/* Media Overlay */
.media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.training-card-advanced:hover .media-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-icon,
.image-icon {
    color: white;
    font-size: 2.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.training-card-advanced:hover .play-icon,
.training-card-advanced:hover .image-icon {
    opacity: 0.8;
}

.media-expand-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    color: var(--secondary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.training-card-advanced:hover .media-expand-btn {
    opacity: 1;
    transform: scale(1);
}

.media-expand-btn:hover {
    background: var(--secondary-color);
    color: white;
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--secondary-color), #ff9e64);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 121, 54, 0.3);
}

/* Card Content */
.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-description {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Meta */
.card-meta {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #999;
}

.meta-type,
.meta-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* No Content */
.no-content-placeholder {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.no-content-placeholder i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.no-content-placeholder p {
    color: #999;
    font-size: 1.1rem;
}

/* Load More */
.training-load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--secondary-color), #ff9e64);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 121, 54, 0.3);
}

.btn-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 121, 54, 0.4);
}

.btn-load-more:active {
    transform: translateY(0);
}

.nav-menu a:hover::after {
    width: 60%;
}

.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Navigation Icons and Dropdown Menu */
.nav-menu a i {
    font-size: 1.3rem;
    transition: all 0.3s ease;
    margin-right: 0;
}

.nav-menu a:hover i {
    transform: scale(1.15);
    color: var(--secondary-color);
}

.nav-menu a:hover {
    background: rgba(0, 166, 81, 0.08);
    border-radius: 8px;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    min-width: 260px;
    padding: 1rem 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.dropdown-menu a i {
    margin-right: 0.8rem;
    width: 18px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(0, 166, 81, 0.08) 0%, transparent 100%);
    padding-left: 2rem;
    color: var(--secondary-color);
    border-left-color: var(--secondary-color);
}

.dropdown-menu a:hover i {
    transform: translateX(4px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.5) 0%, rgba(0, 61, 122, 0.5) 25%, rgba(0, 166, 81, 0.4) 75%, rgba(0, 184, 93, 0.5) 100%);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Advanced Hero Animations */
@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(60px) rotateX(30deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 6px 6px 16px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 166, 81, 0.3), 0 0 60px rgba(0, 166, 81, 0.1);
    }
    50% {
        text-shadow: 6px 6px 16px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 166, 81, 0.5), 0 0 80px rgba(0, 166, 81, 0.2);
    }
}

@keyframes colorShift {
    0% {
        background: linear-gradient(135deg, #ffffff 0%, #E6F2FF 50%, #FFD700 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    25% {
        background: linear-gradient(135deg, #E6F2FF 0%, #FFD700 50%, #00D46A 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    50% {
        background: linear-gradient(135deg, #FFD700 0%, #00D46A 50%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    75% {
        background: linear-gradient(135deg, #00D46A 0%, #ffffff 50%, #E6F2FF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    100% {
        background: linear-gradient(135deg, #ffffff 0%, #E6F2FF 50%, #FFD700 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contentSlide {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animated Title */
.animated-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: titleSlideIn 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-text {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #E6F2FF 50%, #FFD700 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: colorShift 8s ease infinite, glowPulse 3s ease-in-out infinite;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.hero-text-secondary {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #00D46A 0%, #FFD700 50%, #00A651 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: colorShift 8s ease infinite 0.3s, glowPulse 3s ease-in-out infinite 0.3s;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Hero Video Background - Iframe */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: -2;
    opacity: 0.75;
    display: none;
}

/* Hero Video Background - Local */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 1;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
                linear-gradient(135deg, rgba(0, 51, 102, 0.04) 0%, rgba(0, 166, 81, 0.03) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    display: none;
}

/* Training Badge */
.training-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00A651 0%, #00D46A 100%);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    animation: contentSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.training-badge::before {
    display: none;
}

.training-badge i {
    margin-right: 6px;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.training-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 166, 81, 0.6);
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(6px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #e6f2ff;
    font-weight: 500;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
    animation: subtitleFadeIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.8px;
    color: #e6f2ff;
}

.tagline {
    font-size: 1.7rem;
    font-weight: 900;
    margin: 2.5rem 0 3.5rem 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 50%, #00D46A 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.4);
    background-clip: text;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    animation: subtitleFadeIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both, colorShift 8s ease infinite;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.1) 0%, rgba(0, 166, 81, 0.05) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    animation: contentSlide 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

.hero-buttons:hover {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.15) 0%, rgba(0, 166, 81, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-lg {
    font-size: 1.15rem;
    padding: 18px 50px;
    font-weight: 800;
    letter-spacing: 1.2px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-lg i {
    margin-right: 12px;
    transition: all 0.3s ease;
}

.btn-lg:hover i {
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1.05rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Montserrat', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 50%, #FFB700 100%);
    background-size: 200% 200%;
    color: #003366;
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    font-weight: 800;
}

.btn-primary:hover {
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #FFEB3B 0%, #FFD700 50%, #FFC700 100%);
}

.btn-primary:active {
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.12) 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    font-weight: 800;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 16px 40px rgba(255, 255, 255, 0.3), 0 0 20px rgba(0, 166, 81, 0.3);
}

.btn-secondary:active {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Proprietor Section */
.proprietor-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border-top: 2px solid rgba(0, 166, 81, 0.15);
    border-bottom: 2px solid rgba(0, 166, 81, 0.15);
}

.proprietor-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.proprietor-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.proprietor-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
   
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: slideInLeft 0.8s ease-out;
}

.proprietor-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.proprietor-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    color: #003366;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    animation: floatUp 0.8s ease-out 0.2s both;
}

.proprietor-content {
    animation: slideInRight 0.8s ease-out;
}

.proprietor-header {
    margin-bottom: 2rem;
}

.proprietor-name {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.proprietor-title {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.proprietor-bio {
    margin-bottom: 2.5rem;
}

.proprietor-bio p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.proprietor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 166, 81, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1) 0%, rgba(255, 215, 0, 0.08) 100%);
    border-color: rgba(0, 166, 81, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 166, 81, 0.1);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #003366 0%, #00A651 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: countUp 2.5s ease-out forwards;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Section */
.about {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* About Intro Card */
.about-intro {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.about-intro-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-intro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 166, 81, 0.15);
    border-color: rgba(0, 166, 81, 0.1);
}

.intro-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00A651 0%, #00C875 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 166, 81, 0.3);
    transition: all 0.4s ease;
}

.about-intro-card:hover .intro-icon {
    transform: scale(1.1) rotateZ(-5deg);
}

.intro-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.intro-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Modern Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.highlight-box {
    background: var(--white);
    padding: 2.2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
}

.highlight-box:hover::before {
    top: -25%;
    right: -25%;
    opacity: 1;
}

.highlight-box-1 { --hb-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%); }
.highlight-box-2 { --hb-gradient: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%); }
.highlight-box-3 { --hb-gradient: linear-gradient(135deg, #F39C12 0%, #F7B801 100%); }

.highlight-icon {
    width: 70px;
    height: 70px;
    background: var(--hb-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.highlight-box:hover .highlight-icon {
    transform: scale(1.15) translateY(-5px);
}

.highlight-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.highlight-box p {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.highlight-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

/* Vision & Mission Cards */
.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.vision-card,
.mission-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f5f5f5;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
}

.vision-card::before {
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08) 0%, transparent 60%);
}

.mission-card::before {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.08) 0%, transparent 60%);
}

.vision-card:hover::before,
.mission-card:hover::before {
    top: -50%;
    left: -50%;
    opacity: 1;
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.vm-header i {
    font-size: 1.4rem;
    transition: all 0.4s ease;
}

.vm-vision i {
    background: linear-gradient(135deg, #00A651 0%, #00C875 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vm-mission i {
    background: linear-gradient(135deg, #003366 0%, #004E8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-card:hover .vm-header i,
.mission-card:hover .vm-header i {
    transform: scale(1.2) rotateZ(10deg);
}

.vision-card h3,
.mission-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 800;
}

.vision-card p,
.mission-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Vision & Mission Points */
.vision-points,
.mission-points {
    list-style: none;
    position: relative;
    z-index: 1;
}

.vision-points li,
.mission-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #555;
    font-weight: 500;
    line-height: 1.5;
    font-size: 0.9rem;
}

.vision-points li:hover,
.mission-points li:hover {
    background: rgba(0, 166, 81, 0.08);
    transform: translateX(8px);
}

.vision-points li i,
.mission-points li i {
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.vision-points li i {
    color: var(--secondary-color);
}

.mission-points li i {
    color: var(--primary-color);
}

.vision-points li:hover i,
.mission-points li:hover i {
    transform: scale(1.3);
}

.vision-points li span,
.mission-points li span {
    display: block;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

/* Advanced Vision & Mission Section Styles */
.advanced-vm-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.modern-vm-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.vm-card-vision,
.vm-card-mission {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Card Border Accent */
.vm-card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vm-card-vision .vm-card-border {
    background: linear-gradient(90deg, #00A651, #00C875, #00A651);
}

.vm-card-mission .vm-card-border {
    background: linear-gradient(90deg, #003366, #004E8C, #003366);
}

.modern-vm-card:hover .vm-card-border {
    opacity: 1;
}

/* Card Glow Effect */
.vm-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.vision-glow {
    background: radial-gradient(circle, rgba(0, 166, 81, 0.15) 0%, transparent 70%);
}

.mission-glow {
    background: radial-gradient(circle, rgba(0, 51, 102, 0.15) 0%, transparent 70%);
}

.modern-vm-card:hover .vm-card-glow {
    opacity: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* Icon Wrapper */
.vm-icon-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.vision-icon-wrapper,
.mission-icon-wrapper {
    height: 60px;
    width: 60px;
}

.vm-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.15;
    transition: all 0.4s ease;
    z-index: -1;
}

.vision-icon-bg {
    background: linear-gradient(135deg, #00A651, #00C875);
}

.mission-icon-bg {
    background: linear-gradient(135deg, #003366, #004E8C);
}

.vm-icon {
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.vm-card-vision .vm-icon {
    color: #00A651;
}

.vm-card-mission .vm-icon {
    color: #003366;
}

.modern-vm-card:hover .vm-icon {
    transform: scale(1.2) rotateY(360deg);
}

.modern-vm-card:hover .vm-icon-bg {
    opacity: 0.3;
    transform: scale(1.2);
}

/* Icon Accent */
.vm-icon-accent {
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    border: 2px dashed;
    animation: spin 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vm-card-vision .vm-icon-accent {
    border-color: rgba(0, 166, 81, 0.3);
}

.vm-card-mission .vm-icon-accent {
    border-color: rgba(0, 51, 102, 0.3);
}

.modern-vm-card:hover .vm-icon-accent {
    opacity: 1;
}

/* Header Styles */
.vm-header {
    position: relative;
    z-index: 1;
    margin-bottom: 0.8rem;
}

.vm-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0.3rem 0;
    transition: all 0.3s ease;
}

.vm-vision h3 {
    color: #00A651;
}

.vm-mission h3 {
    color: #003366;
}

.modern-vm-card:hover .vm-header h3 {
    transform: translateX(8px);
    letter-spacing: 0.5px;
}

/* Badge Styles */
.vm-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 16px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 1;
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
}

.vision-badge {
    background: rgba(0, 166, 81, 0.15);
    color: #00A651;
    border: 1px solid rgba(0, 166, 81, 0.3);
}

.mission-badge {
    background: rgba(0, 51, 102, 0.15);
    color: #003366;
    border: 1px solid rgba(0, 51, 102, 0.3);
}

.modern-vm-card:hover .vm-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px currentColor;
}

/* Divider */
.vm-divider {
    height: 2px;
    width: 30px;
    border-radius: 2px;
    margin-top: 0.5rem;
    transition: all 0.4s ease;
}

.vm-vision .vm-divider {
    background: linear-gradient(90deg, #00A651, #00C875);
}

.vm-mission .vm-divider {
    background: linear-gradient(90deg, #003366, #004E8C);
}

.modern-vm-card:hover .vm-divider {
    width: 60px;
    box-shadow: 0 4px 12px currentColor;
}

/* Modern VM List */
.modern-vm-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.vm-point-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    border-radius: 10px;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 3px solid transparent;
    cursor: pointer;
}

.vm-card-vision .vm-point-item {
    color: #555;
}

.vm-card-mission .vm-point-item {
    color: #555;
}

.vm-card-vision .vm-point-item:hover {
    background: rgba(0, 166, 81, 0.1);
    border-left-color: #00A651;
    transform: translateX(8px);
}

.vm-card-mission .vm-point-item:hover {
    background: rgba(0, 51, 102, 0.1);
    border-left-color: #003366;
    transform: translateX(8px);
}

.vm-point-item span {
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Point Icon */
.vm-point-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vm-card-vision .vm-point-icon {
    background: rgba(0, 166, 81, 0.2);
    color: #00A651;
}

.vm-card-mission .vm-point-icon {
    background: rgba(0, 51, 102, 0.2);
    color: #003366;
}

.vm-point-item:hover .vm-point-icon {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 4px 12px currentColor;
}

.vm-point-icon i {
    font-size: 0.9rem;
}

/* Card Footer Accent */
.vm-card-footer-accent {
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
    transition: all 0.6s ease;
}

.vm-card-vision .vm-card-footer-accent {
    background: radial-gradient(circle, #00A651, transparent);
}

.vm-card-mission .vm-card-footer-accent {
    background: radial-gradient(circle, #003366, transparent);
}

.modern-vm-card:hover .vm-card-footer-accent {
    bottom: -50px;
    right: 0;
    opacity: 0.12;
}

/* Services Section */
.services {
    padding: 80px 20px;
}

/* Modern Services Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Advanced Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

/* Modern Service Card Styles */
.service-card {
    background: var(--white);
    padding: 2.2rem;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

/* Gradient backgrounds for each card */
.service-card-1 { --card-gradient: linear-gradient(135deg, #00A651 0%, #00C875 100%); }
.service-card-2 { --card-gradient: linear-gradient(135deg, #003366 0%, #004E8C 100%); }
.service-card-3 { --card-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%); }
.service-card-4 { --card-gradient: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%); }
.service-card-5 { --card-gradient: linear-gradient(135deg, #F39C12 0%, #F7B801 100%); }
.service-card-6 { --card-gradient: linear-gradient(135deg, #9B59B6 0%, #C13584 100%); }
.service-card-7 { --card-gradient: linear-gradient(135deg, #3498DB 0%, #2980B9 100%); }
.service-card-8 { --card-gradient: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%); }
.service-card-9 { --card-gradient: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%); }
.service-card-10 { --card-gradient: linear-gradient(135deg, #34495E 0%, #2C3E50 100%); }
.service-card-11 { --card-gradient: linear-gradient(135deg, #F8B500 0%, #E8A400 100%); }
.service-card-12 { --card-gradient: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%); }
.service-card-13 { --card-gradient: linear-gradient(135deg, #00B894 0%, #27AE60 100%); }

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: var(--card-gradient);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    top: -25%;
    right: -25%;
    opacity: 0.15;
}

.service-card:hover::after {
    opacity: 1;
}

.card-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-bg {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--card-gradient);
    border-radius: 16px;
    opacity: 0.15;
    transform: rotate(45deg);
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card:hover .icon-bg {
    width: 90px;
    height: 90px;
    opacity: 0.25;
    transform: rotate(45deg) scale(1.1);
}

.service-card i {
    font-size: 2.8rem;
    background: var(--card-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    display: block;
}

.service-card:hover i {
    transform: scale(1.2) translateY(-5px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.card-footer {
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card:hover .read-more {
    color: var(--primary-color);
    transform: translateX(3px);
}

.service-card:hover {
    border-color: transparent;
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

/* Expertise Section */
.expertise {
    padding: 120px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.05) 0%, transparent 70%);
    animation: float 30s infinite ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.expertise-wrapper {
    position: relative;
    z-index: 1;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    perspective: 1000px;
}

/* Expertise Cards */
.expertise-card {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 1.8rem 1.2rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

/* Card Color Variants */
.expertise-card-1 { --card-color: #FF6B6B; --card-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%); }
.expertise-card-2 { --card-color: #4ECDC4; --card-gradient: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%); }
.expertise-card-3 { --card-color: #F39C12; --card-gradient: linear-gradient(135deg, #F39C12 0%, #F7B801 100%); }
.expertise-card-4 { --card-color: #667eea; --card-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

/* Section Hover Effects */
.expertise-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--card-color);
}

/* Icon Wrapper */
.expertise-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
    position: relative;
    height: 90px;
}

.expertise-icon-box {
    width: 70px;
    height: 70px;
    background: var(--card-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.expertise-icon-box i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.5s ease;
}

.expertise-card:hover .expertise-icon-box {
    transform: rotateY(360deg) scale(1.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.expertise-card:hover .expertise-icon-box i {
    transform: scale(1.2);
}

.expertise-icon-bg {
    position: absolute;
    width: 110px;
    height: 110px;
    background: var(--card-gradient);
    opacity: 0.1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.expertise-card:hover .expertise-icon-bg {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.15;
}

/* Expertise Header */
.expertise-header {
    text-align: center;
    margin-bottom: 1rem;
}

.expertise-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    transition: all 0.4s ease;
    letter-spacing: -0.5px;
}

.expertise-category {
    font-size: 0.75rem;
    color: var(--card-color);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0;
    transition: all 0.4s ease;
}

.expertise-card:hover .expertise-header h3,
.expertise-card:hover .expertise-category {
    color: var(--card-color);
}

/* Expertise List */
.expertise-list {
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.expertise-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #555;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

.expertise-list li:hover {
    background: rgba(0, 0, 0, 0.04);
    transform: translateX(5px);
    color: var(--primary-color);
}

.expertise-list li i {
    font-size: 0.75rem;
    color: var(--card-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.expertise-list li:hover i {
    transform: scale(1.3);
    color: var(--primary-color);
}

.expertise-list li span {
    display: block;
}

/* Card Accent */
.card-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--card-gradient);
    opacity: 0.05;
    border-radius: 50% 0 0 0;
    transition: all 0.5s ease;
}

.expertise-card:hover .card-accent {
    opacity: 0.12;
    width: 150px;
    height: 150px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .expertise {
        padding: 80px 20px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-card {
        min-height: auto;
    }
    
    .expertise-icon-box {
        width: 75px;
        height: 75px;
    }
    
    .expertise-icon-box i {
        font-size: 1.8rem;
    }
}

/* Commodities Section */
.commodities {
    padding: 80px 20px;
}

.commodities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.commodity-item {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.commodity-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.6s ease;
    opacity: 0;
}

.commodity-item:hover::before {
    opacity: 1;
    transform: scale(0.5);
}

.commodity-item:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 166, 81, 0.3);
}

/* Customers Section */
.customers {
    padding: 80px 20px;
    background: var(--light-bg);
}

.customers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.customer-group {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.customer-group h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.customer-group ul {
    list-style: none;
}

.customer-group li {
    padding: 0.8rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.customer-group li:last-child {
    border-bottom: none;
}

.clients-showcase {
    margin-top: 1rem;
    padding-top: 0;
}

.clients-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.clients-header .section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.clients-header .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    animation: slideInUp 0.6s ease-out;
}

.clients-header .section-subtitle {
    font-size: 0.9rem;
    color: #666;
    max-width: 650px;
    margin: 0.5rem auto 0;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

/* Client Cards Grid */

/* Composite Clients Image */
.clients-composite {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0;
}

.clients-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    display: block;
    border-radius: 0;
    transition: none;
}

.clients-image:hover {
    transform: none;
}

/* Individual Client Logo Container */
.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: none;
    min-height: auto;
}

.client-logo .client-image {
    max-width: 100%;
    max-height: 120px;
    height: auto;
    object-fit: contain;
    transition: none;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    transition: none;
    border-radius: 0;
    z-index: 1;
}

.client-card:hover::before {
    opacity: 0;
}

.client-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
    transition: none;
    border-radius: 0;
    z-index: 1;
    pointer-events: none;
}

.client-card:hover::after {
    opacity: 0;
}

.client-logo-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 1rem;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: none;
}

.client-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
    transition: none;
    border-radius: 0;
    z-index: 0;
}

.client-card:hover .client-overlay {
    opacity: 0;
}

/* Trust Badges Section */
.clients-trust-badge {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 0;
    border-top: none;
}

.trust-item {
    text-align: center;
    padding: 1.5rem 1.5rem;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: none;
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    transform: rotate(45deg);
    opacity: 0;
    transition: none;
}

.trust-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: block;
    transition: none;
}

.trust-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.trust-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

.clients-banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.client-banner-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-card {
    background: linear-gradient(135deg, var(--white), var(--light-bg));
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.client-banner-logo {
    max-width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
}

.banner-card p {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
    align-items: center;
}

.client-logo {
    background: transparent;
    padding: 0.5rem;
    border-radius: 0;
    font-weight: 600;
    color: var(--primary-color);
    border: none;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    background: transparent;
    color: var(--primary-color);
    transform: scale(1.08);
    box-shadow: none;
}

/* Skills Section */
/* Core Competencies Section */
.skills {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.08) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
    z-index: 0;
}

.competencies-wrapper {
    position: relative;
    z-index: 1;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    perspective: 1000px;
}

.skill-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

.skill-item:hover::before {
    transform: scaleX(1);
}

/* Gradient backgrounds for each skill card */
.skill-card-1 { --skill-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%); --skill-color: #FF6B6B; }
.skill-card-2 { --skill-gradient: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%); --skill-color: #4ECDC4; }
.skill-card-3 { --skill-gradient: linear-gradient(135deg, #F39C12 0%, #F7B801 100%); --skill-color: #F39C12; }
.skill-card-4 { --skill-gradient: linear-gradient(135deg, #00A651 0%, #00c878 100%); --skill-color: #00A651; }
.skill-card-5 { --skill-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%); --skill-color: #667eea; }
.skill-card-6 { --skill-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); --skill-color: #f093fb; }
.skill-card-7 { --skill-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); --skill-color: #4facfe; }
.skill-card-8 { --skill-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); --skill-color: #43e97b; }
.skill-card-9 { --skill-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%); --skill-color: #fa709a; }
.skill-card-10 { --skill-gradient: linear-gradient(135deg, #30cfd0 0%, #330867 100%); --skill-color: #30cfd0; }
.skill-card-11 { --skill-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); --skill-color: #a8edea; }
.skill-card-12 { --skill-gradient: linear-gradient(135deg, #ff9a56 0%, #ff6a88 100%); --skill-color: #ff9a56; }

.skill-icon-box {
    width: 90px;
    height: 90px;
    background: var(--skill-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.skill-icon {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}

.skill-item:hover .skill-icon-box {
    transform: scale(1.15) rotateZ(-10deg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.skill-item:hover .skill-icon {
    transform: scale(1.1) rotateZ(10deg);
}

.skill-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.skill-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.skill-desc {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.skill-badge-item {
    margin-top: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--skill-gradient);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--skill-color);
}

.skill-item:hover .skill-badge-item {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Team Section */
.team {
    padding: 40px 20px;
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.member-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid var(--secondary-color);
}

.member-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Modern Leadership Animations */
@keyframes memberPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(13, 71, 161, 0.1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(13, 71, 161, 0);
    }
}

@keyframes memberSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes photoGlow {
    0% {
        box-shadow: 0 0 20px rgba(13, 71, 161, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(13, 71, 161, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(13, 71, 161, 0.3);
    }
}

@keyframes tagPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Leadership Container */
.leadership-container {
    perspective: 1000px;
}

.team-member {
    animation: memberSlideIn 0.8s ease-out forwards;
}

.modern-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--secondary-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(13, 71, 161, 0.15);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.modern-card:hover::before {
    left: 100%;
}

/* Member Photo Wrapper */
.member-photo-wrapper {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.member-photo {
    width: 200px;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid var(--secondary-color);
    transition: all 0.4s ease;
    animation: photoGlow 3s ease-in-out infinite;
    display: block;
}

.member-photo-wrapper:hover .member-photo {
    transform: scale(1.05) rotate(-2deg);
    filter: brightness(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.1) 0%, rgba(255, 87, 34, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-photo-wrapper:hover .photo-overlay {
    opacity: 1;
}

.member-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, var(--secondary-color), #ff6f34);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
    animation: memberPulse 2s infinite;
}

.member-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.position-years {
    display: inline-block;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.1), rgba(255, 87, 34, 0.1));
    color: var(--secondary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(13, 71, 161, 0.2);
}

/* Expertise Tags */
.expertise-tags {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    animation: tagPulse 2.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.3);
}

/* Member Info */
.member-info {
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(13, 71, 161, 0.1);
}

.member-info h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.member-info h4:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    border-radius: 2px;
}

.member-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.member-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
    display: grid;
    gap: 0.6rem;
}

.member-info li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    color: #666;
    position: relative;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.member-info li:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.member-info li i {
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Member Social Links */
.member-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(13, 71, 161, 0.1);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.1), rgba(255, 87, 34, 0.1));
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--secondary-color), #ff6f34);
    color: white;
    transform: translateY(-4px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
}

/* Expertise Subsections */
.expertise-section {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.expertise-subsection {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.05) 0%, rgba(255, 87, 34, 0.05) 100%);
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.expertise-subsection:hover {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.1) 0%, rgba(255, 87, 34, 0.1) 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.1);
}

.expertise-subsection h5 {
    color: var(--secondary-color);
    margin-bottom: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.expertise-subsection h5 i {
    font-size: 1.1rem;
}

.expertise-subsection p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Skills Section */
.skills-section {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.skill-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.2);
}

.skill-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(13, 71, 161, 0.3);
}

/* Customer List */
.customer-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.customer-category {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.05) 0%, rgba(255, 87, 34, 0.05) 100%);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.customer-category:hover {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.1) 0%, rgba(255, 87, 34, 0.1) 100%);
    transform: translateX(5px);
}

.customer-category strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Commodities List */
.commodities-list {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.05) 0%, rgba(255, 87, 34, 0.05) 100%);
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 1.5rem;
}

.commodities-list p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Leadership Card Layout - Side by Side */
.leadership-card-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
    text-align: left;
    padding: 1.5rem;
    align-items: flex-start;
}

.member-photo-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.member-details-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
    max-height: 60vh;
    padding-right: 0.8rem;
}

.member-details-section::-webkit-scrollbar {
    width: 6px;
}

.member-details-section::-webkit-scrollbar-track {
    background: rgba(13, 71, 161, 0.05);
    border-radius: 10px;
}

.member-details-section::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.member-details-section::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
}

.leadership-card-layout .member-photo-wrapper {
    margin-bottom: 0.5rem;
    width: 100%;
}

.leadership-card-layout .member-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.leadership-card-layout .member-content h3 {
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.leadership-card-layout .position {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.leadership-card-layout .position-years {
    display: block;
    text-align: center;
    margin: 0.5rem 0;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
}

.leadership-card-layout .expertise-tags {
    justify-content: center;
    margin: 0.8rem 0;
    gap: 0.5rem;
}

.leadership-card-layout .expertise-tags .tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
}

.leadership-card-layout .member-info {
    text-align: left;
}

.leadership-card-layout .member-info h4 {
    margin-top: 0.8rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.leadership-card-layout .member-info p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.leadership-card-layout .expertise-section {
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.leadership-card-layout .expertise-subsection {
    padding: 0.8rem;
}

.leadership-card-layout .expertise-subsection h5 {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.leadership-card-layout .expertise-subsection p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.leadership-card-layout .skills-section {
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.leadership-card-layout .skill-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
}

.leadership-card-layout .customer-list {
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.leadership-card-layout .customer-category {
    padding: 0.8rem;
    font-size: 0.9rem;
}

.leadership-card-layout .commodities-list {
    padding: 0.8rem;
}

.leadership-card-layout .commodities-list p {
    font-size: 0.9rem;
}

.leadership-card-layout .member-social {
    justify-content: center;
    margin-top: 0.8rem;
    gap: 0.8rem;
}

.leadership-card-layout .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

/* Responsive Leadership Layout */
@media (max-width: 1024px) {
    .leadership-card-layout {
        grid-template-columns: 200px 1fr;
        gap: 1.2rem;
        padding: 1.5rem;
    }
    
    .member-details-section {
        max-height: 55vh;
    }
}

@media (max-width: 768px) {
    .leadership-card-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1.2rem;
    }
    
    .member-photo-section {
        display: grid;
        grid-template-columns: 160px 1fr;
        gap: 1rem;
        align-items: center;
    }
    
    .member-photo-wrapper {
        margin-bottom: 0 !important;
    }
    
    .member-details-section {
        max-height: none;
        padding-right: 0;
    }
    
    .leadership-card-layout .member-content h3,
    .leadership-card-layout .position,
    .leadership-card-layout .position-years,
    .leadership-card-layout .expertise-tags {
        text-align: left;
    }
    
    .leadership-card-layout .member-photo {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .member-photo-section {
        grid-template-columns: 1fr;
    }
    
    .leadership-card-layout {
        padding: 1rem;
        gap: 1rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #ff6f34);
    border-radius: 2px;
}

.section-subtitle {
    color: #888;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Values Section */
/* Core Values Section */
.values {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.08) 0%, transparent 70%);
    animation: float 25s infinite ease-in-out;
    z-index: 0;
}

.values-wrapper {
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
    perspective: 1000px;
}

.value-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    padding: 1.2rem 0.8rem;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

.value-card:hover::before {
    transform: scaleX(1);
}

/* Gradient backgrounds for each value card */
.value-card-1 { --value-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%); --value-color: #FF6B6B; }
.value-card-2 { --value-gradient: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%); --value-color: #4ECDC4; }
.value-card-3 { --value-gradient: linear-gradient(135deg, #F39C12 0%, #F7B801 100%); --value-color: #F39C12; }
.value-card-4 { --value-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%); --value-color: #667eea; }
.value-card-5 { --value-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); --value-color: #43e97b; }
.value-card-6 { --value-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%); --value-color: #fa709a; }

.value-icon-box {
    width: 60px;
    height: 60px;
    background: var(--value-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon-box {
    transform: scale(1.15) rotateZ(-10deg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotateZ(10deg);
}

.value-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    letter-spacing: -0.5px;
}

.value-desc {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
}

.value-badge {
    margin-top: 0.8rem;
    display: inline-block;
    padding: 0.3rem 0.7rem;
    background: var(--value-gradient);
    color: white;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--value-color);
}

.value-card:hover .value-badge {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes slideUpFast {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.08) 0%, transparent 70%);
    animation: float 30s infinite ease-in-out;
    z-index: 0;
}

.contact-wrapper {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-right-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    perspective: 1000px;
}

.info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    cursor: pointer;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    transition: height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

.info-box:hover::before {
    height: 100%;
}

/* Gradient backgrounds for each info box */
.info-box-1 { --box-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%); --box-color: #FF6B6B; }
.info-box-2 { --box-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%); --box-color: #667eea; }
.info-box-3 { --box-gradient: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%); --box-color: #4ECDC4; }

.info-icon-box {
    width: 70px;
    height: 70px;
    background: var(--box-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}

.info-box:hover .info-icon-box {
    transform: scale(1.15) rotateZ(-10deg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.info-box:hover .contact-icon {
    transform: scale(1.1) rotateZ(10deg);
}

.info-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.info-content p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-box a {
    color: var(--box-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.info-box a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--box-color);
    transition: width 0.3s ease;
}

.info-box a:hover::after {
    width: 100%;
}

.info-box a:hover {
    color: var(--primary-color);
}

.info-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--box-color);
}

/* Contact Form Styles */
.contact-form {
    background: linear-gradient(135deg, var(--white) 0%, #f0f8ff 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 166, 81, 0.15);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s infinite ease-in-out;
    z-index: 0;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgba(255, 255, 255, 0.8);
    color: #333;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    transition: color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 166, 81, 0.15);
    background: var(--white);
    transform: translateY(-3px);
}

.contact-form button {
    width: 100%;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Contact Map Section */
.contact-map {
    background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 166, 81, 0.15);
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.8s ease-out;
}

.contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.map-container {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

.contact-map iframe {
    display: block;
    width: 100%;
}

/* Responsive Contact Section */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-right-column {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-form,
    .contact-map {
        padding: 2rem;
    }
    
    .contact-form h3,
    .contact-map h3 {
        font-size: 1.2rem;
    }
    
    .map-container iframe {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .contact-form,
    .contact-map {
        padding: 1.5rem;
    }
    
    .map-container iframe {
        height: 250px !important;
    }
}

/* Training Section */
.training {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.training::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.08) 0%, transparent 70%);
    animation: float 30s infinite ease-in-out;
    z-index: 0;
}

.training-wrapper {
    position: relative;
    z-index: 1;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    perspective: 1000px;
}

.training-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

.training-card:hover::before {
    transform: scaleX(1);
}

/* Gradient backgrounds for each training card */
.training-card-1 { --training-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%); --training-color: #FF6B6B; }
.training-card-2 { --training-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%); --training-color: #667eea; }
.training-card-3 { --training-gradient: linear-gradient(135deg, #F39C12 0%, #F7B801 100%); --training-color: #F39C12; }
.training-card-4 { --training-gradient: linear-gradient(135deg, #00A651 0%, #00c878 100%); --training-color: #00A651; }
.training-card-5 { --training-gradient: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%); --training-color: #4ECDC4; }
.training-card-6 { --training-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%); --training-color: #fa709a; }

.training-video-box {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.training-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.training-card:hover .training-image {
    transform: scale(1.08) rotate(1deg);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--training-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
}

.training-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.training-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.training-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.training-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.training-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.duration,
.level {
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.duration i,
.level i {
    color: var(--training-color);
}

.training-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--training-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.training-link i {
    transition: transform 0.3s ease;
}

.training-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--training-color);
}

.training-link:hover i {
    transform: translateX(3px);
}

.training-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--training-color);
}

/* Training Gallery Modal */
.training-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.97);
    animation: fadeInModal 0.3s ease-out;
    overflow: auto;
}

.training-modal-content {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    animation: slideInDown 0.3s ease-out;
}

.training-close {
    color: #aaa;
    position: fixed;
    right: 30px;
    top: 20px;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.training-close:hover {
    color: white;
}

.training-modal-body {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 20px;
    align-items: start;
}

.training-media-viewer {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#mediaContainer {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

#mediaContainer img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

#mediaContainer video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.media-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2002;
}

.media-prev,
.media-next {
    background: rgba(0, 166, 81, 0.9);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-prev:hover,
.media-next:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 166, 81, 0.4);
}

.training-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 8px;
}

.training-thumbnails::-webkit-scrollbar {
    width: 6px;
}

.training-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.training-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(0, 166, 81, 0.6);
    border-radius: 10px;
}

.training-thumbnails::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 166, 81, 0.9);
}

.thumbnail-item {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.thumbnail-item img,
.thumbnail-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item.active {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(0, 166, 81, 0.6);
}

.thumbnail-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 166, 81, 0.4);
}

.thumbnail-video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 166, 81, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    .training-modal-body {
        grid-template-columns: 1fr;
    }
    
    .training-thumbnails {
        max-height: 150px;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .thumbnail-item {
        min-width: 100px;
        flex-shrink: 0;
    }
    
    #mediaContainer {
        aspect-ratio: auto;
        min-height: 300px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #001f4d 50%, #003d4d 100%);
    color: var(--white);
    padding: 4rem 20px 2rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 166, 81, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.footer-section {
    animation: fadeInUp 0.8s ease both;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-about h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, var(--accent-color), #66ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.company-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.tagline-footer {
    font-style: italic;
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Admin Login Link Styling */
.footer-section ul li a[href*="admin"] {
    color: #FFD700;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-section ul li a[href*="admin"]:hover {
    color: white;
    background: linear-gradient(135deg, #1a73e8 0%, #f57c00 100%);
    border-color: rgba(255, 215, 0, 0.6);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    min-width: 20px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.social-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-icon.linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
}

.social-icon.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: var(--accent-color) !important;
    font-weight: 600;
    font-style: italic;
}

.footer-developer {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
}

.developer-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.developer-link:hover {
    color: #fff;
    text-decoration: underline;
    transform: scale(1.05);
}

/* ============================= */
/* Responsive Design - Tablet (1024px) */
/* ============================= */
@media (max-width: 1024px) {
    .brand-name {
        font-size: 1.3rem;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .brand-tagline {
        font-size: 0.7rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}


/* ============================= */
/* Responsive Design - Tablet/Mobile (768px) */
/* ============================= */
@media (max-width: 768px) {

    /* Navigation adjustments */
    .nav-brand {
        gap: 8px;
    }

    .nav-brand .logo {
        height: 75px;
    }

    .brand-name {
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.99);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        animation: slideInDown 0.3s ease;
        overflow-y: auto;
        z-index: 99;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 1rem;
        font-weight: 600;
    }

    /* Mobile Dropdown Menu */
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        background: rgba(0, 166, 81, 0.05);
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        transition: all 0.3s ease;
    }

    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 600px;
        padding: 0.5rem 0;
    }

    .dropdown-menu a {
        border-left: none;
        padding-left: 2rem;
        font-size: 0.9rem;
    }

    .dropdown-menu a:hover {
        padding-left: 2.5rem;
    }

    .hamburger {
        display: flex;
        z-index: 101;
    }

    /* Hero Section */
    .hero {
        padding: 60px 20px;
        min-height: 500px;
    }

    .hero-video {
        opacity: 0.7;
    }

    .training-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        animation: fadeInDown 0.8s ease;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .tagline {
        font-size: 1.3rem;
        margin: 1.5rem 0 2rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
        width: 100%;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 16px 40px;
    }

    /* Layout adjustments */
    .about-content,
    .vision-mission,
    .customers-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
        animation: fadeInUp 0.6s ease;
    }

    h3 {
        font-size: 1.3rem;
    }

}


/* ============================= */
/* Responsive Design - Mobile (480px and below) */
/* ============================= */
@media (max-width: 480px) {

    .nav-brand {
        gap: 6px;
    }

    .nav-brand .logo {
        height: 60px;
    }

    .brand-name {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .brand-tagline {
        font-size: 0.6rem;
    }

    .hero {
        padding: 50px 15px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.4rem;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; margin-bottom: 1.5rem; }
    h3 { font-size: 1.1rem; }
    h4 { font-size: 1rem; }

    p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .services-grid,
    .skills-grid,
    .expertise-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .training-controls-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .training-grid-advanced {
        grid-template-columns: 1fr;
    }

    .training-card-advanced {
        flex-direction: column;
    }

    .training-header-advanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .training-stats-box {
        width: 100%;
        flex-direction: row;
    }

    .training-search-wrapper {
        min-width: 100%;
    }

    .training-title-main {
        font-size: 1.8rem;
    }

    input,
    textarea,
    select {
        font-size: 16px;
        min-height: 44px;
        width: 100%;
    }

    textarea {
        min-height: 120px;
    }

    a,
    button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

}
