@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');
        
:root {
    --primary: #2563eb;      /* Main blue */
    --primary-dark: #1d4ed8; /* Darker blue */
    --primary-light: #3b82f6; /* Lighter blue */
    --secondary: #ff9800;    /* Main amber/orange */
    --secondary-dark: #ed8c02; /* Darker amber */
    --secondary-light: #ffb74d; /* Lighter amber */
    --light: #1e293b;        /* Dark blue-gray for "light" sections */
    --dark: #0f172a;         /* Darker blue for dark sections */
    --accent: #10b981;       /* Green accent */
    --text-light: #f8fafc;   /* Light text */
    --text-muted: #ccd1da;   /* Muted text */
    --card-bg: #1e293b;      /* Card background */
    --card-darker: #0f172a;  /* Darker card background */
    --section-bg: #0f172a;   /* Section background */
    --border-color: #334155; /* Border color */
    --border-light: #475569; /* Lighter border color */
    --overlay-dark: rgba(15, 23, 42, 0.1); /* Dark overlay */
    --overlay-light: rgba(37, 99, 235, 0.2); /* Light overlay */
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background-color: var(--dark);
    color: var(--text-light);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .nav-link, .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: var(--dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-light) !important;
}

.navbar-brand span {
    color: var(--secondary);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-light);
    padding: 0.75rem 1rem;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--secondary);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile navbar styles */
@media (max-width: 991.98px) {
    .navbar-brand {
        font-size: 1rem;
    }
    .navbar-collapse {
        background: rgba(18, 24, 38, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-collapse .navbar-nav {
        padding: 0.5rem 0;
    }
    
    .navbar-collapse .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 5px;
    }
    
    .navbar-collapse .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .navbar-collapse .btn {
        margin: 0.5rem 1rem !important;
        width: calc(100% - 2rem);
        text-align: center;
    }
}

.nav-link {
    margin: 0 0rem;
    padding: 0.5rem 0.7rem !important;
    transition: all 0.3s ease;
    color: var(--text-light) !important;
    position: relative;
}
.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: all 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

.btn-secondary {
    background: var(--secondary);
    border: none;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

/* Page Header */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 110, 253, 0.15);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 1.5rem;
}

.page-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-left: 8px;
}

.badge-pulse {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    position: relative;
}

.badge-pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.8);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 600px;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 4px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
}

.section-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-info-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(13, 110, 253, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
}

.contact-info-text {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1rem;
}

.contact-form {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 15px;
    color: var(--text);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(13, 110, 253, 0.5);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    color: var(--text);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text);
}

.form-select:focus {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(13, 110, 253, 0.5);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    color: var(--text);
}

.btn-submit {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* About Page Styles */
.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 11, 16, 0.1) 0%, rgba(7, 11, 16, 0.8) 100%);
}

.about-content {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    height: 100%;
    backdrop-filter: blur(10px);
}

.about-accent {
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.about-text {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-stats {
    margin: 30px 0;
}

.about-stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    text-align: center;
}

.about-stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(13, 110, 253, 0.2);
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.about-stat-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 5px;
}

.team-container {
    margin-top: 50px;
}

.team-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(13, 110, 253, 0.2);
}

.team-image-container {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 11, 16, 0) 0%, rgba(7, 11, 16, 0.9) 100%);
}

.team-content {
    padding: 25px;
    position: relative;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
}

.team-position {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.team-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.team-social-link:hover {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    transform: translateY(-3px);
}

.values-container {
    margin-top: 50px;
}

.value-card {
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(13, 110, 253, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
}

.value-text {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1rem;
}

.timeline-section {
    padding: 100px 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
    top: 20px;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background: var(--card-bg);
    position: relative;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(13, 110, 253, 0.2);
}

.timeline-year {
    position: absolute;
    top: -15px;
    left: 20px;
    padding: 5px 15px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 10px;
    color: var(--text);
}

.timeline-text {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: var(--dark);
}

.client-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

.client-logo img {
    max-height: 100%;
    max-width: 100%;
}

/* Footer */
footer {
    background: #070b10;
    color: var(--text-light);
    padding: 80px 0 30px;
    position: relative;
}

.footer-heading {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 3px;
}

.footer-link {
    display: block;
    color: var(--text-light);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--text);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--text-light);
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    transform: translateY(-3px);
}

.copyright {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-up.active, .fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .page-title {
        font-size: 2.7rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .page-header {
        padding: 150px 0 80px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 21px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 130px 0 70px;
        text-align: center;
    }
    
    .page-badge {
        justify-content: center;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .contact-info-card {
        margin-bottom: 20px;
    }
    
    .team-card {
        margin-bottom: 30px;
    }
    
    .value-card {
        margin-bottom: 20px;
    }
    
    .section {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 20px;
    }
} 