/* Header Styles */
.header-modern {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Smooth scrolling and scroll offset for hash links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    /* Adjust this value based on your header height */
}

/* Alternative approach for better browser support */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Top Bar */
.header-top-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-contact-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.header-contact-info .contact-item {
    display: flex;
    align-items: center;
    color: #adb5bd;
}

.header-contact-info .contact-link {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-contact-info .contact-link:hover {
    color: #007bff;
    text-decoration: none;
}

.header-social-links {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.header-social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-social-links .social-link:hover {
    background: #007bff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    text-decoration: none;
}

.header-social-links .social-link i {
    font-size: 0.9rem;
}

/* Main Navigation */
.header-nav {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 1rem 0;
    position: relative;
}

.header-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/light_noise_diagonal.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

/* Logo */
.header-brand {
    padding: 0;
    margin: 0;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-circle {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.logo-img {
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.logo-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 400;
}

/* Navigation Menu */
.header-nav-menu {
    margin-right: auto;
    margin-left: 2rem;
}

.header-nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.header-nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.header-nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15);
}

/* Dropdown Menu */
.header-dropdown {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
}

.header-dropdown .dropdown-item {
    color: #333;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.header-dropdown .dropdown-item:hover {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    transform: translateX(5px);
}

.header-dropdown .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Header CTA */
.header-cta {
    margin-right: 1rem;
}

.header-cta-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.header-cta-btn:hover {
    background: #ffffff;
    color: #007bff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Mobile Toggle */
.header-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-toggler:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.header-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* Responsive Header */
@media (max-width: 991.98px) {
    .header-top-bar {
        padding: 0.75rem 0;
    }

    .header-contact-info {
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .header-social-links {
        justify-content: center;
    }

    .header-nav {
        padding: 0.75rem 0;
    }

    .header-logo {
        gap: 0.75rem;
    }

    .logo-circle {
        width: 45px;
        height: 45px;
    }

    .logo-title {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }

    .header-nav-menu {
        margin: 1rem 0;
        text-align: center;
    }

    .header-nav-link {
        margin: 0.25rem 0;
        padding: 0.75rem 1rem !important;
    }

    .header-dropdown {
        text-align: center;
        margin: 0.5rem auto;
        max-width: 280px;
    }

    .header-cta {
        margin: 1rem 0 0 0;
        text-align: center;
    }

    .header-cta-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 767.98px) {
    .header-contact-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .header-contact-info .contact-item {
        font-size: 0.8rem;
    }

    .header-social-links .social-link {
        width: 28px;
        height: 28px;
    }

    .header-social-links .social-link i {
        font-size: 0.8rem;
    }

    .logo-title {
        font-size: 1rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 575.98px) {
    .header-top-bar {
        padding: 0.5rem 0;
    }

    .header-nav {
        padding: 0.5rem 0;
    }

    .header-logo {
        gap: 0.5rem;
    }

    .logo-circle {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        min-width: 120px;
    }

    .logo-title {
        font-size: 0.9rem;
    }

    .logo-subtitle {
        font-size: 0.65rem;
    }
}

.footer-info {
    background-color: rgba(56, 62, 69, 0.1);
}

.nav-text {
    color: var(--bs-light);
}

.footer-fixed-height {
    height: 195px;
}

.circle {
    background-color: white;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-pattern {
    background-image: url('/assets/images/noise_lines.webp');
    background-repeat: repeat;
    background-size: auto;
}

.card-img-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.product-card {
    min-height: 300px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card img {
    min-height: 300px;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/light_noise_diagonal.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem 0;
}

.hero-badge {
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-actions .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

.hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

.hero-stats {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

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

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

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .product-card {
        min-height: auto;
    }

    .product-card img {
        min-height: 200px;
    }

    .product-card .card-body {
        padding: 1rem;
    }

    .hero-section {
        min-height: 60vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-actions .btn:last-child {
        margin-bottom: 0;
    }
}

/* Footer Styles */
.footer-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/noise_lines.webp');
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.05;
    pointer-events: none;
}

.footer-section {
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .circle {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo .circle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.footer-heading {
    color: #ffffff;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 1px;
}

.footer-subheading {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-link {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
    border-radius: 4px;
}

.footer-link:hover {
    color: #007bff;
    transform: translateX(-5px);
    text-decoration: none;
}

.footer-link.small {
    font-size: 0.85rem;
    color: #6c757d;
}

.footer-link.small:hover {
    color: #007bff;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #007bff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    text-decoration: none;
}

.social-link i {
    font-size: 1.1rem;
}

/* Contact Information */
.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.contact-details {
    flex: 1;
}

.contact-label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.contact-link:hover {
    color: #007bff;
    text-decoration: none;
}

.contact-text {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 2rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0;
}

.copyright {
    color: #6c757d;
    font-size: 0.9rem;
}

.copyright strong {
    color: #adb5bd;
}

.footer-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-badges .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.footer-badges .badge:hover {
    transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer-modern {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-heading::after {
        right: 50%;
        transform: translateX(50%);
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .footer-modern {
        padding: 3rem 0;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-logo {
        margin-bottom: 1.5rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
    }

    .footer-badges .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 575.98px) {
    .footer-modern {
        padding: 2rem 0;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link i {
        font-size: 1rem;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }

    .footer-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-badges .badge {
        width: fit-content;
    }
}

/* Footer Logo Styles */
.footer-logo .header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-circle {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-logo .logo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-logo .logo-img {
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo .logo-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.footer-logo .logo-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 400;
}

/* Responsive Footer Logo */
@media (max-width: 991.98px) {
    .footer-logo .header-logo {
        justify-content: center;
        gap: 0.75rem;
    }

    .footer-logo .logo-circle {
        width: 45px;
        height: 45px;
    }

    .footer-logo .logo-title {
        font-size: 1.1rem;
    }

    .footer-logo .logo-subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 767.98px) {
    .footer-logo .logo-title {
        font-size: 1rem;
    }

    .footer-logo .logo-subtitle {
        font-size: 0.7rem;
    }
}

@media (max-width: 575.98px) {
    .footer-logo .header-logo {
        gap: 0.5rem;
    }

    .footer-logo .logo-circle {
        width: 40px;
        height: 40px;
    }

    .footer-logo .logo-text {
        min-width: 120px;
    }

    .footer-logo .logo-title {
        font-size: 0.9rem;
    }

    .footer-logo .logo-subtitle {
        font-size: 0.65rem;
    }
}

/* Product Image Placeholder Styles */
.product-image-placeholder {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.product-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.product-icon-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.product-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.product-icon-bg {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.product-card:hover .product-icon-bg {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-color: rgba(255, 255, 255, 0.4);
    animation: pulse 1s infinite;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Pulse Animation */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Responsive Product Placeholder */
@media (max-width: 767.98px) {
    .product-image-placeholder {
        min-height: 200px;
    }

    .product-icon {
        font-size: 3rem;
    }

    .product-icon-bg {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 575.98px) {
    .product-image-placeholder {
        min-height: 150px;
    }

    .product-icon {
        font-size: 2.5rem;
    }

    .product-icon-bg {
        width: 60px;
        height: 60px;
    }
}

/* Responsive Product Placeholder */
@media (max-width: 767.98px) {
    .product-image-placeholder {
        min-height: 200px;
    }

    .product-icon {
        font-size: 3rem;
    }

    .product-icon-bg {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 575.98px) {
    .product-image-placeholder {
        min-height: 150px;
    }

    .product-icon {
        font-size: 2.5rem;
    }

    .product-icon-bg {
        width: 60px;
        height: 60px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/noise_lines.webp');
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.05;
    pointer-events: none;
}

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

.contact-hero-badges .badge {
    transition: all 0.3s ease;
    border: none;
    font-weight: 500;
}

.contact-hero-badges .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Info Section */
.contact-info-section {
    background: #ffffff;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 123, 255, 0.2);
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-icon-wrapper {
    position: relative;
}

.contact-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-card:hover .contact-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-info-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-details {
    color: #6c757d;
}

.contact-phone a,
.contact-email a,
.contact-whatsapp a {
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0;
}

.contact-phone a:hover,
.contact-email a:hover,
.contact-whatsapp a:hover {
    color: #007bff;
    transform: translateX(-5px);
    text-decoration: none;
}

.contact-hours,
.contact-response {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.5rem;
}



/* Map Section */
.map-section {
    background: #ffffff;
}

.map-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2rem;
}

.map-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

.map-container .card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/noise_lines.webp');
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.05;
    pointer-events: none;
}

.map-placeholder .text-center {
    position: relative;
    z-index: 2;
}

.map-placeholder i {
    color: #007bff;
    text-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    animation: mapPulse 2s infinite;
}

@keyframes mapPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Responsive Contact Page */
@media (max-width: 991.98px) {


    .map-title {
        font-size: 1.75rem;
    }

    .map-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 3rem 0;
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-hero-content .lead {
        font-size: 1rem;
    }

    .contact-info-card {
        margin-bottom: 1.5rem;
    }

    .contact-icon-circle {
        width: 70px;
        height: 70px;
    }

    .contact-info-title {
        font-size: 1.1rem;
    }



    .map-title {
        font-size: 1.5rem;
    }

    .map-placeholder {
        height: 300px;
    }

    .map-placeholder i {
        font-size: 3rem;
    }
}

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

    .contact-hero-badges .badge {
        display: block;
        margin-bottom: 0.5rem;
        width: 100%;
    }

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

    .contact-info-title {
        font-size: 1rem;
    }



    .map-placeholder {
        height: 250px;
    }

    .map-placeholder i {
        font-size: 2.5rem;
    }
}

/* About page custom styles */
.about-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 1.5rem;
    background: #fff;
}
.about-card:hover, .about-card:focus {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0.5rem 1.5rem rgba(13,110,253,0.08), 0 0.125rem 0.25rem rgba(0,0,0,0.04);
}
.about-badge {
    font-size: 1.1rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.04);
    transition: background 0.2s, color 0.2s;
}
.about-badge:hover {
    filter: brightness(1.1);
}
.contact-box {
    border: 1px solid #e3e6ea;
    background: #f8fafc;
}

/* Statistics Cards */
.stat-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.2);
}

.stat-number {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Value Icons */
.value-icon {
    transition: all 0.3s ease;
}

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

/* Activity Icons */
.activity-icon {
    transition: all 0.3s ease;
}

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

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #007bff, #0056b3);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 45%;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-content h5 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-content h6 {
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 123, 255, 0.2);
}

.testimonial-rating {
    color: #ffc107;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Certification Cards */
.certification-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.3);
}

.certification-card i {
    transition: all 0.3s ease;
}

.certification-card:hover i {
    transform: scale(1.1);
}

/* Certification Badges */
.certification-badges .badge {
    transition: all 0.3s ease;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
}

.certification-badges .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Timeline */
@media (max-width: 991.98px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .timeline {
        padding: 1rem 0;
    }
    
    .timeline-item {
        margin-bottom: 2rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .certification-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        margin-left: 40px;
    }
    
    .timeline-marker {
        left: 20px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-content {
        padding: 0.75rem;
    }
    
    .timeline-content h5 {
        font-size: 1rem;
    }
    
    .timeline-content h6 {
        font-size: 0.9rem;
    }
    
    .timeline-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .about-card { 
        margin-bottom: 1.5rem; 
    }
    .contact-box { 
        flex-direction: column !important; 
        gap: 0.5rem !important; 
    }
}

