/* Custom styles for ARC Group Trading website */

/* Sticky navigation styles */
#main-nav {
    transition: all 0.3s ease;
}

#main-nav.sticky {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Additional hover effects */
.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Custom styling for form elements */
input:focus, textarea:focus, select:focus {
    border-color: #FF6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

/* Custom button styles */
.btn-arc-orange {
    background-color: #FF6600;
    color: white;
    transition: all 0.3s ease;
}

.btn-arc-orange:hover {
    background-color: #e05a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Hero section background overlay */
.hero-overlay {
    position: relative;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-overlay > * {
    position: relative;
    z-index: 2;
}

/* Service cards hover effect */
.service-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

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

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

@keyframes slideInFromBottom {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animate-slideIn {
    animation: slideInFromBottom 0.5s ease-out;
}

/* Custom styling for testimonials */
.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    color: rgba(255, 102, 0, 0.1);
    z-index: 0;
    line-height: 1;
}

/* Responsive image handling */
.img-responsive {
    max-width: 100%;
    height: auto;
}

/* Additional utility classes */
.text-arc-orange {
    color: #FF6600;
}

.bg-arc-orange {
    background-color: #FF6600;
}

.border-arc-orange {
    border-color: #FF6600;
}

.text-arc-black {
    color: #000000;
}

.bg-arc-black {
    background-color: #000000;
}

.text-arc-gray {
    color: #999999;
}

.bg-arc-gray {
    background-color: #999999;
}

.text-arc-yellow {
    color: #FFCC00;
}

.bg-arc-yellow {
    background-color: #FFCC00;
}