/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

/* Navigation Styles */
.navbar-brand img {
    height: 3rem;
}

/* Button Styles */
.btn-primary-custom {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-outline-custom {
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
}

/* Card Styles */
.feature-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 20px;
    margin: 10px;
    backdrop-filter: blur(10px);
}

/* Service Icon Styles */
.service-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Process Section Styles */
.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #1e3a5f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

/* Stats Styles */
.stats-number {
    font-size: 3rem;
    font-weight: bold;
    color: #1e3a5f;
}

/* Compliance Section Styles */
.compliance-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
}

.compliance-guarantee {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #1e3a5f;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.compliance-section-bg {
    background-color: #2c5282;
}

/* Principle Card Styles */
.principle-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: #e3f2fd;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Contact Section Styles */
.contact-icon-circle {
    width: 100px;
    height: 100px;
}

/* Footer Logo Styles */
.footer-logo {
    height: 5rem;
}

.footer-icon-circle {
    width: 60px;
    height: 60px;
}

/* Value Section Card Styles */
.value-icon-circle {
    width: 80px;
    height: 80px;
    min-width: 80px;
}

/* Compliance Service Icons */
.compliance-service-icon {
    width: 60px;
    height: 60px;
}

.compliance-icon-red {
    color: #dc3545;
}

/* Custom Primary Text Color */
.text-primary {
    color: #1e3a5f !important;
}

/* Custom Primary Background Color */
.bg-primary {
    background-color: #1e3a5f !important;
}

/* Custom Primary Button Colors */
.btn-primary {
    background-color: #1e3a5f !important;
    border-color: #1e3a5f !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: #2c5282 !important;
    border-color: #2c5282 !important;
    color: white !important;
}

.btn-primary:focus, .btn-primary.focus {
    background-color: #2c5282 !important;
    border-color: #2c5282 !important;
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 95, 0.5) !important;
}

.btn-primary:active, .btn-primary.active {
    background-color: #1a3049 !important;
    border-color: #1a3049 !important;
}

.btn-outline-primary {
    color: #1e3a5f !important;
    border-color: #1e3a5f !important;
}

.btn-outline-primary:hover {
    background-color: #1e3a5f !important;
    border-color: #1e3a5f !important;
    color: white !important;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 95, 0.5) !important;
}

.btn-outline-primary:active, .btn-outline-primary.active {
    background-color: #1e3a5f !important;
    border-color: #1e3a5f !important;
    color: white !important;
}

/* Section Animation Styles */
.section-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.2s ease-out;
}

.section-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for child elements */
.section-animate .container > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.section-animate.animate-in .container > *:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.section-animate.animate-in .container > *:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.section-animate.animate-in .container > *:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.section-animate.animate-in .container > *:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.section-animate.animate-in .container > *:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* Hero section should be visible immediately */
.hero-section {
    opacity: 1 !important;
    transform: none !important;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
