/* Base styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header styles */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.logo {
    height: 60px;
    margin-right: 20px;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f5a623;
}

nav {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease;
    font-weight: 500;
    display: inline-block;
}

.nav-item a:hover {
    color: #f5a623;
}

/* Home link specific styles */
.nav-item:first-child a {
    font-weight: 600;
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-trigger::after {
    content: '▾';
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-trigger::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #333;
    min-width: 250px;
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #333;
}

.nav-item:hover .dropdown-menu {
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    transition: background-color 0.3s ease;
}

.dropdown-link:hover {
    background-color: rgba(245, 166, 35, 0.1);
}

.dropdown-link i {
    font-size: 1.2em;
    color: #f5a623;
    width: 24px;
    text-align: center;
}

.dropdown-link span {
    display: flex;
    flex-direction: column;
}

.dropdown-link strong {
    font-size: 1em;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.dropdown-link small {
    font-size: 0.8em;
    color: #aaa;
}

.dropdown-link:hover strong {
    color: #f5a623;
}

/* Enhanced dropdown animations */
.dropdown-menu .dropdown-link {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.dropdown-menu.show .dropdown-link {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu.show .dropdown-link:nth-child(1) { transition-delay: 0.1s; }
.dropdown-menu.show .dropdown-link:nth-child(2) { transition-delay: 0.15s; }
.dropdown-menu.show .dropdown-link:nth-child(3) { transition-delay: 0.2s; }
.dropdown-menu.show .dropdown-link:nth-child(4) { transition-delay: 0.25s; }

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #f5a623;
}

/* Navigation active state */
nav a.active {
    color: #f5a623;
    position: relative;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f5a623;
}

/* Hero section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
    background-color: #000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background-color: #000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 20px;
    animation: fadeIn 1s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Services section */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.service-icon {
    font-size: 2em;
    color: #f5a623;
    margin-bottom: 20px;
    text-align: center;
}

.learn-more {
    margin-top: 15px;
    color: #f5a623;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.service-link:hover .learn-more {
    transform: translateX(5px);
}

.service-link h2 {
    color: #333;
    margin-bottom: 15px;
}

.service-link p {
    color: #666;
}

.service h2 {
    text-align: center;
    color: #333;
    margin-bottom: 15px;
}

.service p {
    text-align: justify;
    color: #666;
    line-height: 1.6;
}

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 12px 24px;
    background-color: #f5a623;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #e6951a;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.social-icons a {
    color: white;
    margin: 0 15px;
    font-size: 1.5em;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #f5a623;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }
    
    .services {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .service {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }
    
    nav a {
        display: block;
        margin: 10px 0;
    }
    
    .contact-form {
        padding: 10px;
    }
}

.company-info {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.company-info h3 {
    color: #f5a623;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.company-info p {
    margin: 5px 0;
    color: #fff;
    font-size: 1.1em;
    line-height: 1.4;
}

/* Use Cases section */
.use-cases {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.use-cases h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.use-case-content {
    padding: 25px;
}

.use-case h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.use-case h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #f5a623;
}

.use-case p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .use-cases {
        padding: 60px 20px;
    }

    .use-cases h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Service Page Styles */
.service-page {
    padding-top: 80px;
}

.service-hero {
    background-color: #333;
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-icon {
    font-size: 4em;
    color: #f5a623;
    margin-bottom: 20px;
}

.service-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 1.2em;
    opacity: 0.9;
}

.service-details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-overview {
    text-align: center;
    margin-bottom: 60px;
}

.service-overview h2 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.service-overview p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.feature i {
    font-size: 2.5em;
    color: #f5a623;
    margin-bottom: 20px;
}

.feature h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

.service-process {
    text-align: center;
}

.service-process h2 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    position: relative;
    padding: 30px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #f5a623;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background-color: #f8f9fa;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-section p {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f5a623;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e6951a;
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5em;
    }

    .service-overview h2,
    .service-process h2,
    .cta-section h2 {
        font-size: 2em;
    }

    .service-features,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .feature,
    .step {
        padding: 20px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(58, 74, 90, 0.9);
    border: none;
    color: #e6e9ed;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(58, 74, 90, 1);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(58, 74, 90, 0.95);
    z-index: 9998;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-item {
    margin: 15px 0;
    text-align: center;
}

.mobile-menu .nav-item a {
    font-size: 1.2em;
    display: block;
    padding: 12px;
    color: #e6e9ed;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu .nav-item a:hover {
    color: #5d7a9c;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.mobile-menu .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 10px 0;
    transform: none;
    width: 100%;
}

.mobile-menu .dropdown-link {
    padding: 12px;
    margin: 5px 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.mobile-menu .dropdown-link i {
    margin-right: 10px;
}

.mobile-menu .dropdown-link span {
    display: block;
    text-align: left;
}

.mobile-menu .dropdown-link span strong {
    display: block;
    margin-bottom: 5px;
}

.mobile-menu .dropdown-link span small {
    display: block;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    header nav {
        display: none;
    }

    .language-switcher {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1000;
        background-color: rgba(58, 74, 90, 0.8);
        padding: 10px;
        border-radius: 5px;
    }

    header h1 {
        font-size: 2em;
        margin-top: 40px;
    }

    .hero {
        height: 50vh;
        margin-top: 60px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .services {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 20px;
    }

    .service {
        width: 100%;
        padding: 20px;
    }

    .service-icon {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2em;
    }

    .hero {
        height: 40vh;
    }

    .service {
        padding: 15px;
    }

    .service h2 {
        font-size: 1.5em;
    }

    .service p {
        font-size: 0.9em;
    }
} 