@import url(./font-awesome.css);
@import url(fonts.css?v=1.0.1);

:root {
    --primary-color: #ff69B4;
    --primary-dark-color: #d1477a;
    --primary-darker-color: #b8436b;
    --main-radius: 7px;
    --primary-rgb: 255, 105, 180;
}

a {
    text-decoration: none !important;
}

.bg-main-pink {
    background-color: var(--primary-color) !important;
}
.box-bg-pink
{
    background-color: rgb(250, 240, 244) !important;
}

.btn-main-pink {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-border-radius: var(--main-radius);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-dark-color);
    --bs-btn-hover-border-color: var(--primary-dark-color);
    --bs-btn-focus-shadow-rgb: var(--primary-rgb);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-darker-color);
    --bs-btn-active-border-color: var(--primary-darker-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

.br-7 {
    border-radius: var(--main-radius);
}

.center-h
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.item-hover {
    transition: all 0.3s ease;
}
.item-hover:hover , .item-hover:focus {
    background-color: #eeeeee;
    border-radius: var(--main-radius);
}

.cursor-pointer {
    cursor: pointer !important;
}

@media (min-width: 992px) {
    .navbar .has-mega-menu {position: static !important;}
    .navbar .mega-menu {top: unset !important;left: 0;right: 0;width: 100%;margin-top: 0;}
}

.one-line {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    display: block;
}





.footer-heading {
    font-weight: 700;
    color: #212529;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #dee2e6;
}
.footer-heading i {
    color: #6c757d;
}
.footer-menu {
    margin: 0;
    padding: 0;
}
.footer-menu li {
    margin-bottom: 10px;
}
.footer-menu a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-menu a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.footer-menu a:hover {
    color: #0d6efd;
    padding-right: 5px;
}
.footer-menu a:hover i {
    transform: translateX(-3px);
}
.social-links-simple {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.social-icon.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d);
}
.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc, #229ED9);
}
.social-icon.linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}
.social-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}
.contact-icon-simple {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}
.contact-icon-simple.location {
    background-color: #fff5f5;
    color: #dc3545;
}
.contact-icon-simple.phone {
    background-color: #f0fdf4;
    color: #28a745;
}
.contact-icon-simple.email {
    background-color: #eff6ff;
    color: #0d6efd;
}
.contact-icon-simple.clock {
    background-color: #fffbeb;
    color: #ffc107;
}
.contact-item-simple:hover .contact-icon-simple {
    transform: scale(1.1);
}
.heartbeat-animation {
    animation: heartbeat 1.5s infinite;
}
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.15);
    }
    20%, 40% {
        transform: scale(1.05);
    }
}
@media (max-width: 768px) {
    .footer-heading {
        font-size: 15px;
    }
    .footer-menu a {
        font-size: 15px;
    }
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .contact-icon-simple {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 15px;
    }
}
@media (max-width: 576px) {
    .modern-footer-light {
        margin-top: 40px;
    }
    .text-center img {
        width: 200px !important;
    }
    .footer-links-section,
    .contact-section {
        text-align: center;
    }
    .contact-item-simple .d-flex {
        justify-content: center;
        text-align: right;
    }
}