/* Company Pages Styles */

/* Titlebar Section */
.titlebar {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.titlebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
    z-index: 1;
}

.titlebar-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.titlebar h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.titlebar p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.titlebar-scroll-link {
    display: inline-block;
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.titlebar-scroll-link:hover {
    color: #0d72b9;
    transform: translateY(-5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Banner Section */
.banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner .container {
    position: relative;
    z-index: 2;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #f59e0b;
}

.service-icon svg {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 20px;
}

.process-number {
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1);
}

/* Methodology Cards */
.methodology-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.methodology-card:hover {
    transform: translateY(-5px);
    border-color: #f59e0b;
}

.methodology-icon svg {
    transition: all 0.3s ease;
}

.methodology-card:hover .methodology-icon svg {
    transform: scale(1.1);
}

/* Value Items */
.value-item {
    text-align: center;
    padding: 20px;
}

.value-icon {
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

/* Team Members */
.team-member {
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    transition: all 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

/* Stats Section */
.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    color: #f59e0b;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Global Offices */
.global-offices .bg-slate-200 {
    transition: all 0.3s ease;
    cursor: pointer;
}

.global-offices .bg-slate-200:hover {
    background-color: #f59e0b !important;
    color: white;
}

.global-offices .bg-slate-200:hover h3,
.global-offices .bg-slate-200:hover p {
    color: white !important;
}

/* Success/Error Messages */
.fixed.top-4.right-4 {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner h2 {
        font-size: 2rem !important;
    }
    
    .banner h6 {
        font-size: 1rem !important;
    }
    
    .service-card,
    .methodology-card {
        margin-bottom: 20px;
    }
    
    .process-step,
    .value-item {
        margin-bottom: 30px;
    }
    
    .contact-form {
        padding: 20px;
        margin-top: 0 !important;
    }
}

/* Animation Classes */
.animation-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animation-element.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0f72b7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0f72b7;
} 