/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #1e3c72;
    --secondary-color: #4a90e2;
    --accent-color: #64b5f6;
    --light-blue: #e3f2fd;
    --lighter-blue: #f5f9ff;
    --text-color: #2c3e50;
    --text-light: #5a6c7d;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(74, 144, 226, 0.1);
    --shadow-hover: 0 8px 25px rgba(74, 144, 226, 0.2);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #4a90e2 0%, #64b5f6 100%);
    --gradient-secondary: linear-gradient(135deg, #1e3c72 0%, #4a90e2 100%);
    --gradient-light: linear-gradient(135deg, #e3f2fd 0%, #f5f9ff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .navbar-nav {
    padding-right: 0;
}

[dir="rtl"] .language-selector {
    margin-left: 0;
    margin-right: auto;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}



/* Language Selector Dropdown */
.language-selector {
    position: relative;
}

.language-selector .btn {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
    min-width: 140px;
    justify-content: center;
}

.language-selector .btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    border-color: var(--secondary-color);
}

.language-selector .btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.language-selector .dropdown-menu {
    min-width: 160px;
    padding: 0.75rem 0;
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: var(--white);
    margin-top: 0.5rem;
    animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-selector .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    position: relative;
}

.language-selector .dropdown-item:hover {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e3f2fd 100%);
    color: var(--primary-color);
    transform: translateX(5px);
}

.language-selector .dropdown-item.active {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    color: white;
    font-weight: 600;
}

.language-selector .dropdown-item.active::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    font-weight: bold;
}

.language-selector .dropdown-item:not(.active):hover::before {
    content: '→';
    position: absolute;
    left: 1rem;
    color: var(--secondary-color);
    font-weight: bold;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin: 0;
    padding: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.85) 0%, rgba(74, 144, 226, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 2rem 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge i {
    color: #ffd700;
    font-size: 1rem;
}

/* Hero Features */
.hero-features {
    margin: 2rem 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.hero-feature i {
    color: #4ade80;
    font-size: 1.1rem;
    min-width: 20px;
}

/* Hero Visual Elements */
.hero-visual {
    position: relative;
    z-index: 2;
}

/* Hero Highlights */
.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
    position: relative;
}

.hero-highlights::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.hero-highlights::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite reverse;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 2rem;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.highlight-card:hover::before {
    left: 100%;
}

.highlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(100, 181, 246, 0.05) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-card:hover::after {
    opacity: 1;
}

.highlight-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2 0%, #64b5f6 50%, #42a5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 25px rgba(74, 144, 226, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.highlight-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.highlight-card:hover .highlight-icon::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(74, 144, 226, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #2196f3 0%, #42a5f5 50%, #64b5f6 100%);
}

.highlight-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.highlight-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.highlight-content h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #64b5f6);
    transition: width 0.4s ease;
}

.highlight-card:hover .highlight-content h4::after {
    width: 100%;
}

.highlight-card:hover .highlight-content h4 {
    transform: translateX(5px);
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.highlight-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
    font-weight: 400;
}

.highlight-card:hover .highlight-content p {
    color: #fff;
    transform: translateX(3px);
}

/* Staggered animation for cards */
.highlight-card:nth-child(1) {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.highlight-card:nth-child(2) {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.highlight-card:nth-child(3) {
    animation: slideInRight 0.8s ease-out 0.6s both;
}

/* Enhanced hover effects */
.highlight-card:hover .highlight-icon {
    animation: glow 2s ease-in-out infinite;
}

/* Particle effect for cards */
.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.highlight-card:hover::before {
    left: 100%;
}

/* Enhanced text effects */
.highlight-content h4 {
    position: relative;
    overflow: hidden;
}

.highlight-content h4::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.highlight-card:hover .highlight-content h4::before {
    left: 100%;
}















/* Hero Visual Enhancements */
.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.hero-visual::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    z-index: -1;
}

/* Certification Badges */
.certification-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.cert-badge i {
    color: #4ade80;
    font-size: 1.5rem;
    min-width: 30px;
}

.cert-badge span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Innovation Highlights */
.innovation-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.highlight-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}





/* Hero Title and Subtitle Enhancements */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    font-weight: 600;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
    font-weight: 600;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 3rem;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4a5568;
    font-weight: 400;
}

/* Company Stats */
.company-stats {
    margin: 4rem 0;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    height: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(74, 144, 226, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a90e2 0%, #64b5f6 50%, #42a5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 10px 25px rgba(74, 144, 226, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.3), rgba(100, 181, 246, 0.3));
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(74, 144, 226, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a90e2;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 600;
    line-height: 1.4;
}

/* Core Values */
.core-values {
    margin: 4rem 0;
}

.values-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #64b5f6);
    border-radius: 2px;
}

.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    height: 100%;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(74, 144, 226, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2 0%, #64b5f6 50%, #42a5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 10px 25px rgba(74, 144, 226, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.3), rgba(100, 181, 246, 0.3));
    border-radius: 50%;
    z-index: -1;
    animation: glow 2s ease-in-out infinite;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(74, 144, 226, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.value-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-card:hover h4 {
    color: #4a90e2;
}

.value-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Mission & Vision */
.mission-vision {
    margin: 4rem 0;
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    height: 100%;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.6s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    left: 100%;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(74, 144, 226, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.mission-header,
.vision-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mission-icon,
.vision-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a90e2 0%, #64b5f6 50%, #42a5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 
        0 8px 20px rgba(74, 144, 226, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 25px rgba(74, 144, 226, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.mission-header h4,
.vision-header h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3c72;
    margin: 0;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-header h4,
.vision-card:hover .vision-header h4 {
    color: #4a90e2;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* About CTA */
.about-cta {
    margin-top: 3rem;
}

.about-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.about-cta .btn:hover::before {
    left: 100%;
}

.about-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.3);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f9ff 100%);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(74,144,226,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 0;
}

.products-section .container {
    position: relative;
    z-index: 2;
}

.products-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
    position: relative;
}

.products-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #64b5f6);
    border-radius: 2px;
}

.products-section .section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    font-weight: 400;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(100, 181, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(74, 144, 226, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
    border-radius: 25px 25px 0 0;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(100, 181, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(2deg);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.8) 0%, rgba(74, 144, 226, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-card:hover .product-actions {
    transform: translateY(0);
}

.product-actions .btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-content p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-meta {
    margin-bottom: 1rem;
}

.product-category {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-actions-bottom {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-actions-bottom .btn {
    flex: 1;
    min-width: 120px;
}

/* Search and Filters */
.filters-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
}

.search-box .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-box .input-group-text {
    border: none;
    padding: 0.75rem 1rem;
}

.search-box .form-control {
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.search-box .form-control:focus {
    box-shadow: none;
}

.search-box .btn {
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.form-select {
    border-radius: 25px;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Results Summary */
.results-summary {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.results-summary h5 {
    margin: 0;
    font-weight: 500;
}

/* Product Code */
.product-code {
    display: inline-block;
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

/* No Products */
.no-products {
    padding: 3rem;
    text-align: center;
}

.no-products h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-products p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

/* Product Features */
.product-features {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 15px;
}

.feature-item {
    padding: 1rem;
}

.feature-icon {
    color: var(--secondary-color);
}

.feature-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(74,144,226,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
    position: relative;
}

.services-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #64b5f6);
    border-radius: 2px;
}

.services-section .section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    font-weight: 400;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(74, 144, 226, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4a90e2 0%, #64b5f6 50%, #42a5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 
        0 10px 25px rgba(74, 144, 226, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(74, 144, 226, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #2196f3 0%, #42a5f5 50%, #64b5f6 100%);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e3c72;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover h3 {
    color: #4a90e2;
    transform: translateY(-3px);
}

.service-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: #2d3748;
}

/* Service Detail Cards */
.service-detail-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-detail-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
}

.service-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-actions .btn {
    flex: 1;
    min-width: 150px;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.why-choose-us-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.section-header {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4a90e2, #64b5f6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-us-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
    position: relative;
}

.why-choose-us-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #64b5f6);
    border-radius: 2px;
}

.why-choose-us-section .section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Main Advantage Cards */
.advantage-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    height: 100%;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.6s ease;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card.primary {
    border-left: 5px solid #4a90e2;
}

.advantage-card.secondary {
    border-left: 5px solid #64b5f6;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(74, 144, 226, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.advantage-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.advantage-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2 0%, #64b5f6 50%, #42a5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 
        0 10px 25px rgba(74, 144, 226, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.3), rgba(100, 181, 246, 0.3));
    border-radius: 50%;
    z-index: -1;
    animation: glow 2s ease-in-out infinite;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(74, 144, 226, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.advantage-text {
    flex: 1;
}

.advantage-text h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-text h4 {
    color: #4a90e2;
}

.advantage-text p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.advantage-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

.advantage-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #4a90e2, #64b5f6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Secondary Advantage Items */
.advantage-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    height: 100%;
    text-align: center;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.6s ease;
}

.advantage-item:hover::before {
    left: 100%;
}

.advantage-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(74, 144, 226, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.advantage-item .advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a90e2 0%, #64b5f6 50%, #42a5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 8px 20px rgba(74, 144, 226, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.icon-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.3), rgba(100, 181, 246, 0.3));
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 25px rgba(74, 144, 226, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.advantage-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.advantage-item:hover h4 {
    color: #4a90e2;
}

.advantage-item p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advantage-highlight {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(100, 181, 246, 0.1));
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #1e3c72;
    font-weight: 600;
}

.advantage-highlight span {
    color: #4a90e2;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-3px);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a90e2, #64b5f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.trust-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 0.25rem;
}

.trust-content p {
    font-size: 0.85rem;
    color: #4a5568;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 2rem 0;
}

.process-step {
    padding: 2rem 1rem;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.process-step h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem;
    border-radius: 15px;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== CERTIFICATES SECTION ===== */
.certificates-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f9ff 100%);
    position: relative;
    overflow: hidden;
}

.certificates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,0 30,8.66 30,21.65 15,30 0,21.65 0,8.66" fill="none" stroke="rgba(74,144,226,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    z-index: 0;
}

.certificates-section .container {
    position: relative;
    z-index: 2;
}

.certificates-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
    position: relative;
}

.certificates-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #64b5f6);
    border-radius: 2px;
}

.certificates-section .section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    font-weight: 400;
}

.certificate-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.certificate-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.6s ease;
}

.certificate-item:hover::before {
    left: 100%;
}

.certificate-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(74, 144, 226, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.certificate-item img {
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(30%);
}

.certificate-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.certificate-item p {
    margin-top: 1.5rem;
    font-weight: 700;
    color: #1e3c72;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.certificate-item:hover p {
    color: #4a90e2;
    transform: translateY(-2px);
}

/* Certificate Cards */
.certificate-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.certificate-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: var(--transition);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--transition);
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.certificate-content {
    padding: 1.5rem;
}

.certificate-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.certificate-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.certificate-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.certificate-meta {
    margin-bottom: 1rem;
}

.valid-until {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.certificate-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.certificate-actions .btn {
    flex: 1;
    min-width: 120px;
}

/* Quality Commitment */
.quality-commitment {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 15px;
}

.commitment-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.commitment-content .lead {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commitment-list li {
    padding: 0.75rem 0;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.commitment-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Certification Process */
.certification-process {
    padding: 2rem 0;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.process-step h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Certificate CTA */
.cert-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem;
    border-radius: 15px;
}

.cert-cta h2 {
    margin-bottom: 1rem;
}

.cert-cta .lead {
    margin-bottom: 2rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M0,25 Q12.5,0 25,25 T50,25 T75,25 T100,25" fill="none" stroke="rgba(74,144,226,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
    position: relative;
}

.contact-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #64b5f6);
    border-radius: 2px;
}

.contact-section .section-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Contact Form Container */
.contact-form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-form-container:hover::before {
    left: 100%;
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2 0%, #64b5f6 50%, #42a5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 10px 25px rgba(74, 144, 226, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.form-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.3), rgba(100, 181, 246, 0.3));
    border-radius: 50%;
    z-index: -1;
    animation: glow 2s ease-in-out infinite;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Form Groups */
.form-group {
    position: relative;
    z-index: 2;
}

.form-label {
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: block;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #4a90e2;
    font-size: 1.1rem;
    z-index: 3;
    transition: all 0.3s ease;
}

.form-control {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(74, 144, 226, 0.1);
    border-radius: 15px;
    padding: 1rem 1.5rem 1rem 3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    width: 100%;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    outline: none;
}

.form-control:focus + .input-icon {
    color: #1e3c72;
    transform: translateY(-50%) scale(1.1);
}

.form-control::placeholder {
    color: #718096;
    font-style: italic;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Form Actions */
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.form-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.form-actions .btn:hover::before {
    left: 100%;
}

.form-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.3);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #718096;
}

.form-note i {
    color: #4a90e2;
    font-size: 1rem;
}

/* Contact Info Container */
.contact-info-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    height: 100%;
}

.contact-info-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-info-container:hover::before {
    left: 100%;
}

/* Info Header */
.info-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a90e2 0%, #64b5f6 50%, #42a5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 8px 20px rgba(74, 144, 226, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.info-header p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Contact Items */
.contact-info {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(74, 144, 226, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a90e2 0%, #64b5f6 50%, #42a5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 
        0 8px 20px rgba(74, 144, 226, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 25px rgba(74, 144, 226, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-details h4 {
    color: #4a90e2;
}

.contact-details p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: #1e3c72;
    transform: translateX(5px);
}

.contact-link i {
    font-size: 0.8rem;
}

/* Contact Hours */
.contact-hours {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hours-header i {
    color: #4a90e2;
    font-size: 1.5rem;
}

.hours-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3c72;
    margin: 0;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item .day {
    font-weight: 600;
    color: #1e3c72;
    font-size: 0.95rem;
}

.hour-item .time {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Social Media Section */
.social-media-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Map Container */
.map-container {
    margin-top: 3rem;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    margin-top: 0;
    padding-top: 3rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--secondary-color);
    width: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991.98px) {
    /* Hero Section Responsive */
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        min-width: 160px;
    }
    
    /* Hero Visual Responsive */
    .hero-visual {
        margin-top: 2rem;
    }
    
    .hero-highlights {
        gap: 1rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .highlight-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .highlight-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Hero Features Responsive */
    .hero-features {
        margin-bottom: 2rem;
    }
    
    .hero-feature {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }
    
    .hero-feature i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    /* Certification Badges Responsive */
    .certification-badges {
        gap: 0.75rem;
    }
    
    .cert-badge {
        padding: 0.75rem 1rem;
    }
    
    /* Innovation Highlights Responsive */
    .innovation-highlights {
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Why Choose Us Responsive */
    .why-choose-us-section .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 2rem;
    }
    
    .advantage-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto;
    }
    
    .advantage-stats {
        justify-content: center;
    }
    
    .advantage-features {
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .trust-item {
        justify-content: center;
    }
    
    /* Footer Responsive */
    .footer {
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    /* Hero Section Responsive */
    .hero-section {
        min-height: 100vh;
        padding-top: 1rem;
        padding-bottom: 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .language-selector {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    /* Mobile Hero Enhancements */
    .hero-content {
        text-align: center;
        padding: 1rem 0;
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-badge {
        margin: 0 auto 1rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-features {
        margin: 1.5rem 0;
    }
    
    .hero-feature {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .hero-highlights {
        gap: 1.5rem;
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .hero-highlights::before,
    .hero-highlights::after {
        display: none;
    }
    
    .highlight-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .highlight-content h4 {
        font-size: 1.2rem;
    }
    
    .highlight-content p {
        font-size: 0.9rem;
    }
    

    

    
    .certification-badges {
        gap: 0.5rem;
    }
    
    .cert-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .cert-badge i {
        font-size: 1.2rem;
        min-width: 25px;
    }
    
    .innovation-highlights {
        gap: 0.75rem;
    }
    
    .highlight-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .highlight-text h4 {
        font-size: 1rem;
    }
    
    .highlight-text p {
        font-size: 0.8rem;
    }
    
    /* Mobile Indicators */

    
    /* Why Choose Us Mobile Responsive */
    .why-choose-us-section .section-title {
        font-size: 2rem;
    }
    
    .why-choose-us-section .section-subtitle {
        font-size: 1rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    .advantage-text h4 {
        font-size: 1.4rem;
    }
    
    .advantage-text p {
        font-size: 0.9rem;
    }
    
    .advantage-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .advantage-features {
        flex-direction: column;
        align-items: center;
    }
    
    .advantage-item {
        padding: 2rem 1.5rem;
    }
    
    .advantage-item h4 {
        font-size: 1.2rem;
    }
    
    .advantage-item p {
        font-size: 0.9rem;
    }
    
    .trust-indicators {
        padding: 1.5rem;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    /* Hero Section Responsive */
    .hero-section {
        min-height: 100vh;
        padding-top: 0.5rem;
        padding-bottom: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Hero Buttons */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .product-content {
        padding: 1rem;
    }
    
    /* Small Screen Hero Enhancements */
    .hero-content {
        padding: 0.5rem 0;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .hero-feature {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-feature i {
        font-size: 1rem;
        min-width: 18px;
    }
    
    .hero-highlights {
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .hero-highlights::before,
    .hero-highlights::after {
        display: none;
    }
    
    .highlight-card {
        padding: 1.25rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .highlight-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .highlight-card:hover .highlight-icon {
        transform: scale(1.1) rotate(3deg);
    }
    
    .highlight-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .highlight-content h4::after {
        display: none;
    }
    
    .highlight-content p {
        font-size: 0.85rem;
    }
    

    

    
    .cert-badge {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .cert-badge i {
        font-size: 1rem;
        min-width: 20px;
    }
    
    .highlight-item {
        padding: 0.5rem;
    }
    
    .highlight-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .highlight-text h4 {
        font-size: 0.9rem;
    }
    
    .highlight-text p {
        font-size: 0.75rem;
    }
    
    /* Timeline responsive */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-marker {
        left: 20px !important;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .team-photo img {
        width: 120px;
        height: 120px;
    }
    
    /* Why Choose Us Small Screen Responsive */
    .why-choose-us-section {
        padding: 3rem 0;
    }
    
    .why-choose-us-section .section-title {
        font-size: 1.8rem;
    }
    
    .why-choose-us-section .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .advantage-card {
        padding: 1.5rem 1rem;
    }
    
    .advantage-content {
        gap: 1rem;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .advantage-text h4 {
        font-size: 1.2rem;
    }
    
    .advantage-text p {
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .advantage-item {
        padding: 1.5rem 1rem;
    }
    
    .advantage-item .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .advantage-item h4 {
        font-size: 1.1rem;
    }
    
    .advantage-item p {
        font-size: 0.85rem;
    }
    
    .advantage-highlight {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .advantage-highlight span {
        font-size: 1rem;
    }
    
    .trust-indicators {
        padding: 1rem;
        gap: 1rem;
    }
    
    .trust-item {
        padding: 0.75rem;
    }
    
    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .trust-content h5 {
        font-size: 0.9rem;
    }
    
    .trust-content p {
        font-size: 0.8rem;
    }
    
    /* About Section Responsive */
    .about-section {
        padding: 3rem 0;
    }
    
    .about-text .lead {
        font-size: 1.1rem;
    }
    
    .company-stats {
        margin: 2rem 0;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .values-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .value-card h4 {
        font-size: 1.2rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
    
    .mission-vision {
        margin: 2rem 0;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-header h4,
    .vision-header h4 {
        font-size: 1.4rem;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 1rem;
    }
    
    .about-cta .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    /* Contact Section Responsive */
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .form-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .form-control {
        padding: 0.8rem 1.2rem 0.8rem 2.5rem;
        font-size: 0.95rem;
    }
    
    .input-icon {
        font-size: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .form-actions .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .contact-info-container {
        padding: 2rem;
    }
    
    .info-header h3 {
        font-size: 1.4rem;
    }
    
    .info-header p {
        font-size: 0.9rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-link {
        font-size: 0.85rem;
    }
    
    .contact-hours {
        padding: 1.5rem;
    }
    
    .hours-header h4 {
        font-size: 1.2rem;
    }
    
    .hour-item .day {
        font-size: 0.9rem;
    }
    
    .hour-item .time {
        font-size: 0.85rem;
    }
    
    /* Footer Responsive for Small Screens */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .footer .social-links {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
    }
    50% {
        box-shadow: 0 10px 25px rgba(74, 144, 226, 0.8), 0 0 20px rgba(74, 144, 226, 0.3);
    }
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

.shadow-sm {
    box-shadow: var(--shadow) !important;
}

.rounded-lg {
    border-radius: 15px !important;
}

/* ===== SCROLL BEHAVIOR ===== */
html {
    scroll-behavior: smooth;
}

/* ===== TIMELINE STYLES ===== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.2);
}

.timeline-content {
    width: 45%;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--dark-gray);
    margin: 0;
}

/* Team Member Styles */
.team-member {
    padding: 1rem;
}

.team-photo img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.team-member:hover .team-photo img {
    transform: scale(1.05);
}

.team-member h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Statistics Styles */
.stat-item {
    padding: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--dark-gray);
    font-weight: 500;
    margin: 0;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== LOADING ANIMATION ===== */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
} 