@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #003d82;
    --secondary-color: #0056b3;
    --accent-color: #007bff;
    --warning-color: #ffc107;
    --success-color: #198754;
    --danger-color: #dc3545;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --border-radius: 15px;
    --box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Top Bar Styles */
.top-bar {
    font-size: 0.875rem;
    border-bottom: 1px solid #e9ecef;
}

.contact-info span {
    color: #6c757d;
}

.social-links a {
    transition: all 0.2s ease;
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #003d82 0%, #007bff 100%);
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23003d82;stop-opacity:1" /><stop offset="100%" style="stop-color:%23007bff;stop-opacity:1" /></linearGradient></defs><rect width="1920" height="1080" fill="url(%23grad1)"/><polygon points="0,1080 400,900 800,950 1200,800 1600,850 1920,700 1920,1080" fill="rgba(255,255,255,0.05)"/><polygon points="0,1080 300,950 700,1000 1100,850 1500,900 1920,750 1920,1080" fill="rgba(255,255,255,0.03)"/><circle cx="1600" cy="200" r="100" fill="rgba(255,255,255,0.08)" opacity="0.5"/><circle cx="300" cy="300" r="150" fill="rgba(255,255,255,0.06)" opacity="0.3"/><circle cx="1200" cy="600" r="80" fill="rgba(255,255,255,0.04)" opacity="0.7"/></svg>') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,61,130,0.8) 0%, rgba(0,123,255,0.6) 100%);
    z-index: 2;
}

/* Statistics Section */
.stat-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Business Cards */
.business-card {
    transition: var(--transition);
    border-radius: var(--border-radius) !important;
    overflow: hidden;
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.business-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Custom Button Styles */
.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Footer Styles */
footer a:hover {
    color: var(--accent-color) !important;
    transition: color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-bar .contact-info {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .top-bar .social-links {
        margin-bottom: 1rem;
    }
    
    .hero-section .display-2 {
        font-size: 2.5rem;
    }
    
    .business-card img {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .hero-section .display-2 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Inner Page Styles */
.page-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, #003d82 0%, #007bff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #003d82 0%, #007bff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-background,
.service-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23003d82;stop-opacity:1" /><stop offset="100%" style="stop-color:%23007bff;stop-opacity:1" /></linearGradient></defs><rect width="1920" height="1080" fill="url(%23grad1)"/><polygon points="0,1080 400,900 800,950 1200,800 1600,850 1920,700 1920,1080" fill="rgba(255,255,255,0.05)"/><polygon points="0,1080 300,950 700,1000 1100,850 1500,900 1920,750 1920,1080" fill="rgba(255,255,255,0.03)"/><circle cx="1600" cy="200" r="100" fill="rgba(255,255,255,0.08)" opacity="0.5"/><circle cx="300" cy="300" r="150" fill="rgba(255,255,255,0.06)" opacity="0.3"/><circle cx="1200" cy="600" r="80" fill="rgba(255,255,255,0.04)" opacity="0.7"/></svg>') center/cover;
    z-index: 1;
}

.page-hero .hero-overlay,
.service-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,61,130,0.8) 0%, rgba(0,123,255,0.6) 100%);
    z-index: 2;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff !important;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Feature Cards */
.feature-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

/* Floating Animation */
.floating-card {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Service Detail Pages */
.service-hero-image {
    position: relative;
}

.service-hero-image img {
    transition: transform 0.3s ease;
}

.service-hero-image:hover img {
    transform: scale(1.02);
}

/* Countdown Timer */
.countdown-timer .bg-success {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.countdown-timer .bg-success:hover {
    transform: scale(1.05);
}

/* Accordion Customization */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,61,130,0.25);
}

/* Form Styling */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,61,130,0.25);
}

/* Icon Box Styling */
.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Badge Styling */
.badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
}

/* Modern Service Cards */
.modern-service-card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.modern-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card-header {
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,61,130,0.8) 0%, rgba(0,123,255,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.rounded-pill {
margin-top: 10px
}

.modern-service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--success-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.service-status-badge.coming-soon {
    background: var(--warning-color);
    color: #333;
}

.service-status-badge.development {
    background: var(--accent-color);
    color: white;
}

.service-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.modern-service-card .card-body {
    padding: 2rem;
}

.modern-service-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.modern-service-card .card-text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 1.5rem 0;
}

.service-features li {
    color: #6c757d;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--success-color);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.btn-service {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,61,130,0.3);
    color: white;
}

.services-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,61,130,0.05) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.services-intro p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .page-hero,
    .service-hero {
        min-height: 40vh;
        text-align: center;
    }
    
    .page-hero .display-3,
    .service-hero .display-3 {
        font-size: 2.5rem;
    }
    
    .floating-card {
        position: relative !important;
        transform: none !important;
        margin: 1rem auto;
    }
    
    .service-hero-image {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .page-hero .display-3,
    .service-hero .display-3 {
        font-size: 2rem;
    }
    
    .countdown-timer .row > div {
        margin-bottom: 1rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
}