/* Custom Font */
@font-face {
    font-family: 'BraveEightyone';
    src: url('Fonts/BRAVEEightyone-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00AAFF;
    --secondary-color: #F2F2F2;
    --dark-gray: #2C2C2C;
    --medium-gray: #4A4A4A;
    --light-gray: #D3D3D3;
    --brand-font: 'BraveEightyone', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--secondary-color);
}

/* Navigation Styles */
nav {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    padding: 0.6rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0088CC 100%);
    padding: 4rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background-image: url('images/Logoisotype.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: var(--brand-font);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-family: var(--brand-font);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-gray);
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    margin: 1rem auto;
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E0E0E0 100%);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.solution-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.solution-video video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Interactive Services Section */
.services-interactive {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.service-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E0E0E0 100%);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.service-header:hover {
    background: linear-gradient(135deg, #E0E0E0 0%, #D0D0D0 100%);
}

.service-header h3 {
    font-family: var(--brand-font);
    color: var(--dark-gray);
    font-size: 1.5rem;
    margin: 0;
    transition: color 0.3s ease;
}

.service-header .arrow {
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.service-card.active .service-header .arrow {
    transform: rotate(90deg);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.active .service-details {
    max-height: 700px;
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 2rem;
}

.service-card.active .service-details {
    padding: 2rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
}

.service-media {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-media video {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: block;
    background: #000;
}

/* How We Work Section */
.how-we-work {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E0E0E0 100%);
    max-width: 100%;
    padding: 4rem 2rem;
}

.how-we-work h2 {
    font-family: var(--brand-font);
}

.workflow-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.workflow-tab {
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-family: var(--brand-font);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.workflow-tab.active,
.workflow-tab:hover {
    background: var(--primary-color);
    color: white;
}

.workflow-content {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
}

.workflow-content.active {
    display: block;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 1.5rem;
}

.workflow-step {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.2);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0088CC 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: var(--brand-font);
    margin-bottom: 1rem;
}

.workflow-step h4 {
    font-family: var(--brand-font);
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.workflow-step p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Cards Section */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
}

.card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0088CC 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.card h3 {
    font-family: var(--brand-font);
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card ul li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
}

.card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E0E0E0 100%);
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    color: var(--dark-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--secondary-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--medium-gray);
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

/* Services Page */
.service-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-section h3 {
    font-family: var(--brand-font);
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--primary-color);
    padding-left: 1rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.gallery {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.gallery::-webkit-scrollbar {
    height: 8px;
}

.gallery::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 10px;
}

.gallery::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.gallery-item {
    min-width: 300px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0088CC 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E0E0E0 100%);
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.contact-item h3 {
    font-family: var(--brand-font);
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-item p,
.contact-item a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Email department cards */
.email-departments {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.dept-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dept-card h4 {
    font-family: var(--brand-font);
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.dept-card a {
    color: var(--primary-color);
    font-size: 0.85rem;
    word-break: break-all;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0088CC 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.05);
}

.contact-map {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    color: var(--secondary-color);
    text-align: center;
    padding: 2.5rem 2rem 1.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-content p {
    margin-bottom: 0.4rem;
}

.footer-logo-watermark {
    display: block;
    margin: 1.5rem auto 0;
    width: 180px;
    height: auto;
    opacity: 0.25;
    filter: grayscale(100%) brightness(200%);
    position: relative;
    z-index: 1;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0088CC 100%);
    color: white;
    border-radius: 10px;
    margin: 2rem 0;
}

.cta-section h2 {
    font-family: var(--brand-font);
    color: white;
    margin-bottom: 2rem;
}

.cta-section h2::after {
    background: linear-gradient(90deg, white 0%, transparent 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        padding: 1rem 0;
    }

    .hero-container,
    .solution-content,
    .service-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .service-details {
        grid-template-columns: 1fr;
    }

    .service-media video {
        max-width: 100%;
        height: auto;
        max-height: 260px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
    }

    .email-departments {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.5rem 1rem;
    }

    .logo {
        height: 40px;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}