/* Single Page Website Styles */
:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #0ea5e9;
    --accent-yellow: #fbbf24;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --danger-red: #ef4444;
    --info-cyan: #06b6d4;
    --dark-gray: #374151;
    --light-gray: #6b7280;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation Styles */
.navbar {
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-img {
    height: 40px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo {
    height: 30px;
    width: auto;
    max-width: 45px;
    object-fit: contain;
    border-radius: 6px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-yellow) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--accent-yellow) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--accent-yellow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 0.5s ease-in-out;
}

.hero-content .lead {
    transition: opacity 0.5s ease-in-out;
}

.hero-content .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease, opacity 0.5s ease-in-out, background-color 0.5s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Business Cards */
.business-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    position: relative;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.business-card:hover::before {
    transform: scaleX(1);
}

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

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

.business-card:hover .business-icon {
    transform: scale(1.1) rotate(5deg);
}

.companies-detail {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
}

.companies-detail ul li {
    padding: 5px 0;
    font-size: 0.9rem;
}

/* Contact Section Styles */
.contact-info-card,
.social-networks-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover,
.social-networks-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-item {
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.contact-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.social-item {
    transition: all 0.3s ease;
}

.social-item:hover {
    transform: translateX(10px);
}

.social-item .d-flex {
    transition: all 0.3s ease;
}

.social-item:hover .d-flex {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    overflow: hidden;
}

.modal-header {
    border-bottom: none;
    padding: 20px 30px;
}

.modal-body {
    padding: 30px;
}

.modal-body h6 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.modal-body p {
    line-height: 1.7;
    color: #555;
}

.modal-body hr {
    margin: 25px 0;
    border-color: #e9ecef;
}

/* Button Styles */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Spacing */
section {
    padding: 80px 0;
}

section h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

section .lead {
    font-size: 1.2rem;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Footer */
footer {
    background: linear-gradient(135deg, #1f2937, #111827) !important;
}

footer p {
    margin-bottom: 0;
    color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }

    .business-card {
        margin-bottom: 20px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .logo-img {
        height: 35px;
        max-width: 50px;
    }

    .footer-logo {
        height: 25px;
        max-width: 35px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .modal-body {
        padding: 20px;
    }

    .contact-info-card,
    .social-networks-card {
        margin-bottom: 20px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-blue);
}

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-blue), var(--info-cyan));
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue)) 1;
}

/* Print Styles */
@media print {

    .navbar,
    .btn,
    .modal {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
}
/* Contact Form Styles */
.contact-form-card {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-floating > label {
    color: #6c757d;
}

.form-control:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.25);
}

.form-select:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.25);
}

.is-valid {
    border-color: #198754;
}

.is-invalid {
    border-color: #dc3545;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

#contactForm .btn {
    transition: all 0.3s ease;
}

#contactForm .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.alert {
    border: none;
    border-radius: 10px;
}

.contact-form-header {
    text-align: center;
}

/* Form animation */
.contact-form-card {
    animation: slideInUp 0.6s ease-out;
}

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

/* Mobile responsiveness for contact form */
@media (max-width: 768px) {
    .contact-form-card {
        margin-top: 20px;
    }
    
    #contactForm .btn {
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* Social Links in Contact Section */
.social-networks-section {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
    margin-top: 15px;
}

.social-link {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }
}
