/* ===================================
   Custom Styles for Portfolio Website
   =================================== */

/* CSS Variables */
:root {
    --primary: #2563eb;
    --secondary: #f97316;
    --accent: #10b981;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Navigation Styles */
#navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.site-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

@media (max-width: 640px) {
    .site-logo {
        max-width: 140px;
        height: 32px;
    }
}

.nav-link {
    position: relative;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Flash Toggle Gradient Animation */
.flash-gradient-text {
    background: linear-gradient(90deg,
            #2563eb 0%,
            #f97316 25%,
            #10b981 50%,
            #f97316 75%,
            #2563eb 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shimmer 3s linear infinite;
    display: inline-block;
}

/* 3D Title Badge Styles */
.title-badge-3d {
    background: #f8f9fb;
    box-shadow:
        0 4px 0 #e2e8f0,
        0 8px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #edf2f7;
    transition: all 0.2s ease;
    animation: float 3s ease-in-out infinite;
    position: relative;
    top: 0;
    line-height: 1.5;
}

.title-badge-3d:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 0 #e5e7eb,
        0 12px 20px rgba(0, 0, 0, 0.12);
}

.title-badge-3d:active {
    top: 4px;
    box-shadow: 0 0 0 #e5e7eb, 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    color: var(--gray-700);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-size: 200% 200%;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #1d4ed8, var(--primary));
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--secondary), #ea580c);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ea580c, var(--secondary));
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 28px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}



.btn-outline:active {
    transform: translateY(0);
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto 16px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(37, 99, 235, 0.1) inset;
    border-color: rgba(37, 99, 235, 0.2);
}

/* Certification Badges - 3D Circle Buttons */
.certification-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.cert-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.cert-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 50%;
    filter: blur(8px);
}

.cert-icon-wrapper i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cert-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

/* Brand Colors */
.google-badge .cert-icon-wrapper {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 75%, #EA4335 100%);
}

.microsoft-badge .cert-icon-wrapper {
    background: linear-gradient(135deg, #F25022 0%, #7FBA00 33%, #00A4EF 66%, #FFB900 100%);
}

.apple-badge .cert-icon-wrapper {
    background: linear-gradient(135deg, #555555 0%, #000000 100%);
}

.linkedin-badge .cert-icon-wrapper {
    background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
}

.amazon-badge .cert-icon-wrapper {
    background: linear-gradient(135deg, #FF9900 0%, #146EB4 100%);
}

/* Hover Effects */
.certification-badge:hover .cert-icon-wrapper {
    transform: translateY(-8px) scale(1.1);
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.25),
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 -3px 12px rgba(0, 0, 0, 0.15),
        inset 0 3px 12px rgba(255, 255, 255, 0.4);
}

.certification-badge:hover .cert-label {
    color: var(--primary);
    transform: translateY(-2px);
}

.certification-badge:active .cert-icon-wrapper {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 -1px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 4px rgba(255, 255, 255, 0.2);
}

/* Responsive Sizing */
@media (max-width: 768px) {
    .cert-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .cert-icon-wrapper i {
        font-size: 1.75rem;
    }

    .cert-label {
        font-size: 0.75rem;
    }
}

/* Stat Cards */
.stat-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Highlight Cards */
.highlight-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Skill Badges */
.skill-badge {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Competency Cards - Icon Grid Layout */
.competency-card {
    background: white;
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.competency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.competency-card:hover::before {
    opacity: 1;
}

.competency-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.1);
}

.competency-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    /* Changed to circular */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: white;
    /* White background */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 3px solid #f8f9fa;
}

.competency-icon::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 50%;
    filter: blur(4px);
}

.competency-icon i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.15));
}

.competency-card:hover .competency-icon {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18), 0 4px 8px rgba(0, 0, 0, 0.12);
}


.competency-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.competency-card:hover .competency-title {
    color: var(--primary);
}

.competency-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Competency Icon Colors - Vibrant Brand Colors */
.competency-icon.icon-blue i {
    color: #2563EB;
}

.competency-icon.icon-google i {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 25%, #FBBC05 50%, #EA4335 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.competency-icon.icon-facebook i {
    color: #1877F2;
}

.competency-icon.icon-linkedin i {
    color: #0A66C2;
}

.competency-icon.icon-orange i {
    color: #F97316;
}

.competency-icon.icon-pink i {
    color: #EC4899;
}

.competency-icon.icon-teal i {
    color: #14B8A6;
}

.competency-icon.icon-purple i {
    color: #9333EA;
}

.competency-icon.icon-cyan i {
    color: #06B6D4;
}

.competency-icon.icon-amber i {
    color: #F59E0B;
}

.competency-icon.icon-red i {
    color: #EF4444;
}

.competency-icon.icon-green i {
    color: #10B981;
}

.competency-icon.icon-violet i {
    color: #8B5CF6;
}

.competency-icon.icon-rose i {
    color: #F43F5E;
}

.competency-icon.icon-lime i {
    color: #84CC16;
}

.competency-icon.icon-sky i {
    color: #0EA5E9;
}


/* Responsive Competency Cards */
@media (max-width: 768px) {
    .competency-card {
        padding: 24px 20px;
    }

    .competency-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .competency-title {
        font-size: 1rem;
    }

    .competency-description {
        font-size: 0.8125rem;
    }
}


/* Tool Tags */
.tool-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.tool-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Certification Section Cards */
.certification-section-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.certification-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certification-section-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.certification-section-card:hover::before {
    opacity: 1;
}

/* Company Header */
.cert-company-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.cert-company-icon-group {
    display: flex;
    gap: 8px;
}

.cert-company-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.cert-company-icon::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 8%;
    right: 8%;
    height: 35%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 10px;
    filter: blur(4px);
}

.cert-company-icon i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.certification-section-card:hover .cert-company-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.cert-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0;
    transition: color 0.3s ease;
}

.certification-section-card:hover .cert-company-name {
    color: var(--primary);
}

/* Certification List */
.cert-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(0, 0, 0, 0.02);
    transform: translateX(4px);
}

.cert-item i {
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cert-item:hover i {
    transform: scale(1.2);
}

.cert-item span {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
    font-weight: 500;
}

/* Brand-Specific Styles */
/* Google */
.google-cert::before {
    background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
}

.google-icon {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 75%, #EA4335 100%);
}

.google-cert .cert-item i {
    color: #4285F4;
}

.google-cert:hover {
    border-color: rgba(66, 133, 244, 0.2);
}

/* Microsoft & Apple */
.microsoft-apple-cert::before {
    background: linear-gradient(90deg, #00A4EF, #555555);
}

.microsoft-icon {
    background: linear-gradient(135deg, #F25022 0%, #7FBA00 33%, #00A4EF 66%, #FFB900 100%);
}

.apple-icon {
    background: linear-gradient(135deg, #555555 0%, #000000 100%);
}

.microsoft-apple-cert .cert-item:nth-child(1) i {
    color: #555555;
}

.microsoft-apple-cert .cert-item:nth-child(2) i {
    color: #00A4EF;
}

.microsoft-apple-cert:hover {
    border-color: rgba(0, 164, 239, 0.2);
}

/* Meta */
.meta-cert::before {
    background: linear-gradient(90deg, #0866FF, #0A7CFF);
}

.meta-icon {
    background: linear-gradient(135deg, #0866FF 0%, #0A7CFF 100%);
}

.meta-cert .cert-item i {
    color: #0866FF;
}

.meta-cert:hover {
    border-color: rgba(8, 102, 255, 0.2);
}

/* LinkedIn */
.linkedin-cert::before {
    background: linear-gradient(90deg, #0077B5, #00A0DC);
}

.linkedin-icon {
    background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
}

.linkedin-cert .cert-item i {
    color: #0077B5;
}

.linkedin-cert:hover {
    border-color: rgba(0, 119, 181, 0.2);
}

/* Amazon */
.amazon-cert::before {
    background: linear-gradient(90deg, #FF9900, #146EB4);
}

.amazon-icon {
    background: linear-gradient(135deg, #FF9900 0%, #146EB4 100%);
}

.amazon-cert .cert-item i {
    color: #FF9900;
}

.amazon-cert:hover {
    border-color: rgba(255, 153, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .certification-section-card {
        padding: 24px 20px;
    }

    .cert-company-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .cert-company-name {
        font-size: 1.25rem;
    }

    .cert-item span {
        font-size: 0.875rem;
    }
}


/* Timeline Styles */
.timeline-item {
    position: relative;
}

.timeline-content {
    position: relative;
}

@media (min-width: 768px) {
    .timeline-left {
        padding-right: 48px;
        text-align: right;
    }

    .timeline-right {
        padding-left: 48px;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 20px;
        height: 20px;
        background: white;
        border: 4px solid var(--primary);
        border-radius: 50%;
        z-index: 1;
    }
}

.timeline-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.timeline-date {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
}

/* Industry Tags */
.industry-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.industry-tag:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.industry-tag i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Gallery Styles */
.gallery-filter-btn {
    padding: 10px 24px;
    background: white;
    color: var(--gray-700);
    font-weight: 600;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.gallery-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* Client Cards */
.client-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Company Badges */
.company-badge {
    padding: 12px 16px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.company-badge:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
}

/* Website Links */
.website-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
}

.website-link:hover {
    background: var(--primary);
    color: white;
    transform: translateX(8px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.website-link i:first-child {
    color: var(--primary);
    font-size: 1.25rem;
}

.website-link:hover i:first-child {
    color: white;
}

/* Training Cards */
.training-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.training-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.training-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.training-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.training-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Vision Cards */
.vision-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.vision-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

/* Contact Styles */
.contact-info-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-4px);
}

/* Animations */
@keyframes blob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back to Top Button */
#back-to-top {
    display: none;
}

#back-to-top.show {
    display: flex;
}

/* Responsive Utilities */
@media (max-width: 640px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
}

/* ===================================
   Premium Enhancements
   =================================== */

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Enhanced Form Inputs */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

/* Smooth Page Transitions */
body {
    animation: fadeInPage 0.5s ease-in;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Enhanced Timeline */
.timeline-card {
    border-left: 4px solid transparent;
}

.timeline-card:hover {
    border-left-color: var(--primary);
}

/* Accessibility Improvements */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   FOOTER STYLES - Colorful Gradient Design
   ======================================== */

/* Footer Background - Static Dark */
footer {
    background: #1a1a2e;
    position: relative;
}

/* Footer Decorative Elements */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer Logo */
.footer-logo {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Footer Social Icons - Colorful Circular */
.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #667eea;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: white;
}

.footer-social-icon:hover::before {
    opacity: 1;
}

/* Brand-Specific Social Colors */
.linkedin-social::before {
    background: linear-gradient(135deg, #0077B5, #00A0DC);
}

.facebook-social::before {
    background: linear-gradient(135deg, #1877F2, #0866FF);
}

.twitter-social::before {
    background: linear-gradient(135deg, #1DA1F2, #0C85D0);
}

.instagram-social::before {
    background: linear-gradient(135deg, #E1306C, #FD1D1D, #F77737, #FCAF45);
}

.youtube-social::before {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.footer-social-icon i {
    position: relative;
    z-index: 1;
}

/* Footer Heading Icons */
.footer-heading-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 0.875rem;
}

/* Footer Links */
.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 2px 0;
    position: relative;
    font-size: 0.9375rem;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #FFD700;
    transform: translateX(4px);
}

.footer-link:hover::after {
    width: 100%;
}

/* Footer Contact Icons */
.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-gradient {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .footer-logo {
        width: 40px;
        height: 40px;
    }

    .footer-heading-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

/* ========================================
   ABOUT SECTION STYLES - Beautiful & Engaging
   ======================================== */

/* About Section Static Dark Background */
.about-section-gradient {
    background: #1a1a2e;
    position: relative;
}

/* Ensure text is visible on dark background */
.about-section-gradient .section-title {
    color: #ffffff !important;
}

.about-section-gradient .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

.about-section-gradient .section-divider {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* Multicolor Gradient Text Effect */
.gradient-text-multicolor {
    background: linear-gradient(90deg,
            #ff6b6b 0%,
            #f06595 15%,
            #cc5de8 30%,
            #845ef7 45%,
            #5c7cfa 60%,
            #339af0 75%,
            #22b8cf 90%,
            #20c997 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* About Decorative Background */
.about-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

/* Profile Card */
.about-profile-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Profile Image Wrapper */
.about-profile-image-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.about-profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.floating-badge i {
    font-size: 1rem;
}

.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30%;
    right: -15%;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 10%;
    left: -10%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   GLOBAL MOBILE-FIRST STYLES
   ======================================== */

/* Root Variables */
:root {
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Fluid Typography - Mobile First */
h1 {
    font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 3.5rem);
    line-height: 1.2;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
    line-height: 1.3;
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 2rem);
    line-height: 1.4;
    font-weight: 600;
}

p {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
}

/* Responsive Spacing */
.section-padding {
    padding: var(--spacing-lg) 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: var(--spacing-xl) 0;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: var(--spacing-2xl) 0;
    }
}

/* Touch-Friendly Interactive Elements */
a,
button,
input,
textarea,
select {
    min-height: 44px;
    min-width: 44px;
}

button,
.btn,
a.btn {
    cursor: pointer;
    transition: all var(--transition-base);
    -webkit-tap-highlight-color: transparent;
}

/* Focus Styles for Accessibility */
*:focus-visible {
    outline: 3px solid #4f46e5;
    outline-offset: 2px;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent Layout Shift */
.lazy-load {
    min-height: 200px;
    background: #f3f4f6;
}


/* About Tags */
.about-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mini Stats */
.about-mini-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.about-mini-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Mission Card */
.about-mission-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a1a;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Content Cards */
.about-content-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Section Icons */
.about-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin-right: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Timeline Styles */
.about-timeline {
    position: relative;
    padding-left: 2rem;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.3) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-dot.active {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-color: #FFD700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: #FFD700;
    transform: translateX(5px);
}

.timeline-year {
    font-size: 0.875rem;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.timeline-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

.timeline-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Quote Card */
.about-quote-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.about-quote-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

/* Expertise Items */
.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.3);
}

.expertise-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.expertise-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

.expertise-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles for About Section - Mobile First */
@media (max-width: 768px) {
    .about-section-gradient {
        padding: 3rem 0;
    }

    .about-profile-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .about-profile-card .grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-profile-image-wrapper {
        width: 200px;
        height: 200px;
        margin: 0 auto 1rem;
        position: relative;
    }

    .about-profile-image {
        border: 4px solid rgba(255, 255, 255, 0.3);
    }

    /* Mobile badges container */
    .about-profile-image-wrapper .floating-badge {
        position: static;
        display: inline-flex;
        margin: 0.25rem;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        animation: none;
    }

    .badge-1,
    .badge-2,
    .badge-3 {
        position: static !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }

    /* Center all profile content on mobile */
    .about-profile-card .md\:col-span-2 {
        text-align: center;
    }

    .about-profile-card h3 {
        font-size: 1.75rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .about-profile-card p {
        font-size: 1rem !important;
    }

    /* Center tags on mobile */
    .about-profile-card .flex-wrap {
        justify-content: center;
    }

    .about-mini-stat {
        padding: 0.75rem;
    }

    .about-mini-stat div:first-child {
        font-size: 1.5rem;
    }

    .about-mission-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .about-mission-card .flex {
        flex-direction: column;
        text-align: center;
    }

    .about-quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto 1rem;
    }

    .about-mission-card p {
        font-size: 1.25rem;
    }

    .about-content-card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .about-timeline {
        padding-left: 1.5rem;
    }

    .about-timeline::before {
        width: 2px;
    }

    .timeline-item {
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .timeline-dot {
        width: 12px;
        height: 12px;
        left: -1.5rem;
        border-width: 2px;
    }

    .timeline-content {
        padding: 0.75rem;
    }

    .timeline-year {
        font-size: 0.75rem;
    }

    .timeline-title {
        font-size: 1rem;
    }

    .timeline-desc {
        font-size: 0.875rem;
    }

    .about-section-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-right: 0.75rem;
    }

    .expertise-item {
        padding: 0.75rem;
    }

    .expertise-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .expertise-title {
        font-size: 1rem;
    }

    .expertise-desc {
        font-size: 0.875rem;
    }

    .about-quote-card {
        padding: 1rem;
    }

    .about-quote-card p {
        font-size: 0.9375rem;
    }

    .about-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .about-section-gradient {
        padding: 2rem 0;
    }

    .about-profile-card {
        padding: 1rem;
    }

    .about-profile-image-wrapper {
        width: 160px;
        height: 160px;
    }

    .about-profile-card h3 {
        font-size: 1.5rem !important;
    }

    .about-profile-card>div>div>p {
        font-size: 0.875rem !important;
    }

    .about-mini-stat {
        padding: 0.5rem;
    }

    .about-mini-stat div:first-child {
        font-size: 1.25rem;
    }

    .about-mini-stat div:last-child {
        font-size: 0.75rem;
    }

    .about-mission-card p:first-of-type {
        font-size: 1.125rem;
    }

    .about-mission-card p:last-of-type {
        font-size: 0.9375rem;
    }

    .timeline-year {
        font-size: 0.6875rem;
    }

    .timeline-title {
        font-size: 0.9375rem;
    }

    .timeline-desc {
        font-size: 0.8125rem;
    }

    .floating-badge {
        font-size: 0.6875rem !important;
        padding: 0.35rem 0.7rem !important;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    z-index: 50;
    transition: all 0.3s ease;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsappPulse 2s infinite;
    opacity: 0.7;
    top: 0;
    left: 0;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ===================================
   Services Slider Section
   =================================== */
#services {
    background: #ffffff;
    position: relative;
    z-index: 10;
}

#services-slider {
    will-change: transform;
}

.service-card {
    background: white;
    border-radius: 20px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-indicator {
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-indicator.active {
    width: 2rem !important;
}

/* Glass effect for overlays */
.service-card .bg-gradient-to-t {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

@media (max-width: 767px) {
    #services-slider {
        display: flex;
    }
}

/* ===================================
   Premium Dark Section Styles
   =================================== */

.dark-premium-section {
    background: radial-gradient(circle at top right, #1e293b, #0f172a, #020617);
    color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.dark-premium-section .section-title {
    color: #ffffff !important;
}

.dark-premium-section .section-subtitle {
    color: #cbd5e1 !important;
    /* light grayish blue */
}

.dark-premium-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.glass-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-premium:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(37, 99, 235, 0.2);
}

.icon-glow-poly {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.icon-glow-poly::after {
    content: "";
    position: absolute;
    inset: -4px;
    background: inherit;
    filter: blur(12px);
    opacity: 0.4;
    z-index: -1;
    border-radius: inherit;
}

.industry-pill-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.industry-pill-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.gallery-filter-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gallery-filter-premium.active,
.gallery-filter-premium:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.website-card-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #e2e8f0;
}

.website-card-premium:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateX(10px);
    color: white;
}

/* Award Specific Styles */
.award-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-card-premium::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.award-badge-floating {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.tech-tag-award {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.tech-tag-award:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.4);
    color: white;
}

.impact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.impact-list-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Visionary Dark Styles */
.vision-grid-premium {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (min-width: 1024px) {
    .vision-grid-premium {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vision-card-premium {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vision-card-premium:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(37, 99, 235, 0.1);
}

.vision-icon-glow {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.vision-card-premium:hover .vision-icon-glow {
    transform: scale(1.1) rotate(5deg);
}

.vision-quote-premium {
    position: relative;
    padding: 60px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 40px;
    margin-bottom: 80px;
    text-align: center;
}

.vision-quote-premium i {
    position: absolute;
    font-size: 120px;
    opacity: 0.05;
    color: var(--primary);
}

.vision-quote-premium .fa-quote-left {
    top: 20px;
    left: 20px;
}

.vision-quote-premium .fa-quote-right {
    bottom: 20px;
    right: 20px;
}

/* Testimonial Premium Styles */
.testimonial-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card-premium:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 40px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.testimonial-card-premium:hover .testimonial-quote-icon {
    opacity: 0.3;
    transform: scale(1.1) rotate(-10deg);
}

.testimonial-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-accent-blue {
    border-left: 4px solid #3b82f6;
}

.card-accent-orange {
    border-left: 4px solid #f97316;
}

.card-accent-green {
    border-left: 4px solid #10b981;
}

.card-accent-purple {
    border-left: 4px solid #8b5cf6;
}

.card-accent-pink {
    border-left: 4px solid #ec4899;
}

.card-accent-cyan {
    border-left: 4px solid #06b6d4;
}

.card-accent-yellow {
    border-left: 4px solid #eab308;
}


/* ===================================
   Testimonials & Slider Styles
   =================================== */
.testimonial-grid-premium {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    padding: 1rem 0;
}

.testimonial-card-premium {
    flex: 0 0 calc(33.333% - 1.334rem);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .testimonial-card-premium {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .testimonial-card-premium {
        flex: 0 0 100%;
        min-height: auto;
    }
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote-icon {
    font-size: 3rem;
    opacity: 0.15;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.testimonial-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-accent-blue {
    border-bottom: 4px solid var(--primary);
}

.card-accent-orange {
    border-bottom: 4px solid var(--secondary);
}

.card-accent-green {
    border-bottom: 4px solid var(--accent);
}

.card-accent-purple {
    border-bottom: 4px solid #9333ea;
}

.card-accent-pink {
    border-bottom: 4px solid #ec4899;
}

.card-accent-cyan {
    border-bottom: 4px solid #06b6d4;
}

.card-accent-yellow {
    border-bottom: 4px solid #f59e0b;
}

.slider-controls-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-btn-premium {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn-premium:hover {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.slider-dots-premium {
    display: flex;
    gap: 0.75rem;
}

.dot-premium {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-premium.active {
    width: 32px;
    background: var(--primary);
}

/* Tool Tag Styles */
.tool-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tool-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.tool-tag i {
    font-size: 1rem;
}

/* Company Badge Styles */
.company-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
    text-align: center;
}

.company-badge:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.company-badge i {
    font-size: 1.1rem;
    opacity: 0.8;
}