/* Google Fonts */
* {
    font-family: 'Cairo', sans-serif;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
}

.preloader-content h3 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.preloader-content p {
    font-size: 1.1rem;
}

.preloader-content .spinner-border {
    width: 4rem;
    height: 4rem;
    border-width: 0.3rem;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #333 !important;
}

.brand-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    color: #333 !important;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #667eea !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../../cover.webp') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
}

/* About Company Section */
.about-company-section {
    background: #f8f9fa;
}

.about-company-image img {
    transition: transform 0.3s;
    border-radius: 15px;
}

.about-company-image:hover img {
    transform: scale(1.05);
}

.about-company-content {
    padding: 2rem 0;
}

.about-company-stats {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-item {
    padding: 1rem;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666;
}

.feature-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.page-header h1 {
    color: white;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-section {
    background: white;
}

.about-image img {
    transition: transform 0.3s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* VMGO Section */
.vmgo-section {
    background: #f8f9fa;
}

.vmgo-card {
    transition: all 0.3s;
    height: 100%;
}

.vmgo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vmgo-icon {
    margin-bottom: 1.5rem;
}

.vmgo-card h3 {
    color: #333;
    font-weight: 600;
}

/* Values Section */
.value-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.value-card:hover h5 {
    color: white;
}

.value-card h5 {
    color: #333;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-card {
    background: white;
    border-radius: 15px;
}

.contact-card .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-card .form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
}

.contact-card .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.contact-card .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.contact-info-card {
    transition: all 0.3s;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-info-card h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #1a1a1a !important;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    transition: color 0.3s;
}

.footer a:hover {
    color: #667eea !important;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}

/* History Section */
.history-section {
    background: #f8f9fa;
}

.history-content p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #555;
}

/* Services Section */
.services-section {
    background: white;
}

.service-card {
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h4 {
    color: #333;
    font-weight: 600;
}

/* Products Section */
.products-section {
    background: #f8f9fa;
}

.product-card {
    transition: all 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.product-card:hover h5,
.product-card:hover p {
    color: white;
}

.product-card h5 {
    color: #333;
    font-weight: 600;
    margin-top: 1rem;
}

/* Team Section */
.team-section {
    background: white;
}

.team-card {
    transition: all 0.3s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-icon {
    margin-bottom: 1.5rem;
}

.team-card h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Achievements Section */
.achievements-section {
    background: #f8f9fa;
}

.achievement-card {
    transition: all 0.3s;
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.achievement-card:hover h5,
.achievement-card:hover p {
    color: white;
}

.achievement-card:hover .achievement-number h2 {
    color: white !important;
}

.achievement-number h2 {
    font-size: 3rem;
    font-weight: 700;
}

.achievement-card h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

