/* colors */
@import url('https://api.fontshare.com/v2/css?f=satoshi&display=swap');

:root {
    --primary: #007BFF;
    --primaryhover: #65b0ff;
    --h1: 48px;
    font-size: 900;
}

[data-aos] {
    overflow: hidden !important;
}

h1 {
    font-size: var(--h1);
    font-weight: 900;
    font-family: 'Satoshi', sans-serif;
}

body {
    font-family: 'Satoshi', sans-serif;
    overflow-x: hidden !important;
}

/* Custom CSS */
.navbar {
    height: 100px !important;
    /* background-color: transparent !important; */
    z-index: 10000;
    /* background-image: url(./assets/nav-gradient-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover; */
    position: sticky;
    top: 44px;
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-g {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5 !important;
    overflow: hidden;
}

.navbar-g img {
    object-fit: cover;
}

.hero-section {
    position: relative;
    /* Makes this section the reference for absolute positioning */
    overflow: hidden;
    /* Prevents background elements from overflowing */
}

.bg-gradient,
.bg-round {
    position: absolute;
    z-index: -100 !important;
    /* Places them behind the doctor image */
}

.bg-gradient {
    top: 80%;
    left: 40%;
    transform: translate(-100%, -70%) !important;
    width: 100%;
    /* max-width: 600px; */
    /* opacity: 0.7 !important; Optional: Adjust transparency */
}

.bg-round {
    top: 55%;
    left: 50%;
    transform: translate(-50%, -35%) !important;
    width: 100%;
    max-width: 1000px;
    /* opacity: 0.6 !important; Optional */
}

.doctor-img {
    position: relative;
    /* Ensures the image stays on top */
    z-index: 2;
    width: 100%;
    max-width: 500px;
    /* Adjust according to design */
}

.navbar-brand img {
    height: 65px;
}

@media(min-width:422px) and (max-width:472px) {
    .navbar-brand img {
        height: 60px;
    }
}

@media(min-width:371px) and (max-width:421px) {
    .navbar-brand img {
        height: 55px;
    }
}

@media(min-width:320px) and (max-width:370px) {
    .navbar-brand img {
        height: 45px;
    }
}

.navbar-brand {
    cursor: pointer;
    z-index: 10 !important;
}

.breadcrumb-about {
    z-index: 9990;
}

/* New Navigation Hover Styles */
.navbar-nav .nav-link {
    position: relative;
    padding: 8px 20px !important;
    margin: 0 5px;
    border-radius: 20px;
    transition: all 0.5s ease;
    z-index: 100 !important;
    color: black !important;
}

.navbar-nav .nav-link:hover {
    background-color: var(--primary);
    color: white !important;
}

.navbar .bi-search {
    font-size: 20px !important;
}

.hero-section {
    min-height: 80vh;
    /* background: linear-gradient(to right, #f8f9fa 50%, #e9ecef 50%); */
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    animation: fadeInDown 1s ease-out;
}

.hero-image {
    animation: fadeIn 1.5s ease-out;
    max-width: 100%;
    height: auto;
}

.btn-primary {
    background: linear-gradient(45deg, #4e73df, #2e59d9);
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 25px;
}

.btn-primary2 {
    background: linear-gradient(45deg, #4e73df, #2e59d9);
    border: none;
    padding: 0.50rem;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 25px;
    color: white;
}

.btn-outline-dark {
    border: 2px solid #212529;
    padding: 12px 30px;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add this CSS to your stylesheet */
.animate-navbar {
    animation: slideDown 1s ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-section {
    min-height: 60vh;
    /* background: url('./assets/nav-gradient-bg.png') no-repeat center center;
    background-size: cover; */
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.circle-bg {
    position: absolute;
    width: 800px;
    height: 800px;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.content-wrapper {
    position: relative;
    z-index: -1;
}

.content-wrapper_btns {
    z-index: 100 !important;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.buttons .btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.5s ease-in-out;
    /* Fixed */
    z-index: 9999 !important;
}

.buttons .btn-primary:hover {
    background-color: var(--primaryhover) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.buttons .btn-outline {
    border: 2px solid #000;
    padding: 12px 25px;
    border-radius: 25px;
    color: #000;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    /* Fixed */
}

.buttons .btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (max-width: 320px) {
    .buttons .btn-outline {
        padding: 12px 20px;
    }
}

.doctor-img {
    max-width: 100%;
    height: auto;
}

/* Footer Styles */
footer {
    background-color: #f8f9fa;
    padding: 50px 0 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: bold;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: var(--primary);
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-icon.facebook:hover {
    background-color: #3b5998;
    /* Facebook blue */
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #fcc24d, #F77737, #D62976, #FD1D1D);
    /* Instagram gradient */
}


.social-icon.whatsapp:hover {
    background-color: #25D366;
    /* WhatsApp green */
}

.social-icons a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.contact-info {
    text-align: right;
}

.contact-info div {
    margin-bottom: 5px;
}

.contact-info i {
    color: var(--primary);
    margin-right: 10px;
}

.opening-time {
    color: #666;
}

.footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 20px;
    margin-top: 30px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 1240px) {
    .bg-gradient {
        top: 80%;
        left: 20%;
    }
}

@media (max-width: 1024px) {
    .bg-gradient {
        top: 80%;
        left: -10%;
    }
}

@media (max-width: 992px) {
    .bg-gradient {
        top: 80%;
        left: 50%;
    }
}

@media (max-width: 768px) {
    .contact-info {
        text-align: left;
        margin-top: 0px;
    }

    .social-icons {
        margin: 0px 0;
        text-align: center;
        display: flex;
        justify-content: flex-start;

    }

    .footer-links {
        text-align: center;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    h1 {
        font-size: 30px !important;
    }

    .navbar-g {
        display: none !important;
    }

    .bg-gradient {
        top: 80%;
        left: 40%;
    }

    .navbar-collapse {
        background-color: white !important;
    }

    .footer-links a {
        margin: 0 15px !important;
    }
}

@media (max-width: 512px) {
    .bg-gradient {
        top: 140%;
        left: -10%;
    }

}

/* About Us */
.breadcrumb-item+.breadcrumb-item::before {
    content: "|";
    align-items: center;
}

.about-title {
    color: var(--primary);
    font-weight: 900;
    text-align: center;
    margin: 2rem 0;
}

.subtitle {
    color: var(--primary);
    font-weight: 900;
    margin: 2rem 0;
}

.about-text {
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.vision-section {
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.vision-number {
    color: #007bff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
}

.vision-title {
    margin-bottom: 1rem;
    font-weight: 900;
    text-align: left;
}

.contact-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background-color: #eef3f7;
}

.contact-text {
    font-size: 48px;
    font-weight: 900;
    color: #000;
}

.contact-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #0056b3;
    transform: translateX(5px);
}

/* product home section */
.featured-section {
    padding: 80px 0;
    /* background-color: #f8f9fa; */
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h1 {
    font-size: 48px;
    font-weight: bold;
}

.section-title h1 span {
    color: var(--primary);
}

.section-subtitle {
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.product-card {
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-in-out;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.product-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 40px 20px;
}

.product-specs {
    display: grid;
    grid-template-columns: auto 10px auto;
    /* Ensures spacing between label, colon, and value */
    row-gap: 5px;
    /* Adjust spacing between rows */
    background-color: #EEF3F7 !important;
    padding: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

}

.spec-item {
    display: contents;
    /* Keeps items inline in the grid */
}

.label {
    /* text-align: right; */
    font-weight: bold;
    min-width: 80px;
    /* Ensures alignment */
}

.colon {
    text-align: center;
    font-weight: bold;
    margin-right: 10px !important;
}

.value {
    text-align: left !important;
    color: var(--primary);
}


.view-more-btn {
    text-align: center;
    margin-top: 40px;
}

.view-more-btn .btn {
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 30px;
    transition: all 0.5s ease-in-out;
}

.view-more-btn .btn:hover {
    background-color: var(--primaryhover) !important;
    /* Lighter hover effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    /* Stronger shadow on hover */
    transform: translateY(-2px);
    /* Slight lift effect */
}

/* testimonial section */
.swiper-container {
    width: 100%;
    overflow: hidden;
    /* Prevents unwanted horizontal scrolling */
}

.testimonial-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h1 {
    font-size: 48px;
    font-weight: bold;
}

.section-title span {
    color: #0d6efd;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    max-width: 1000px;
    margin: 0 auto 60px;
    font-size: 18px;
}

.testimonial-card {
    background: #EEF3F7;
    border-radius: 20px;
    padding: 10px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stars {
    color: #0d6efd;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;

}

.testimonial-top {
    padding: 10px !important;
    border: 10% !important;
    background-color: white !important;
    margin-bottom: 30px;
}

.testimonial-top p {
    text-align: justify;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

.cta-section {
    padding: 100px 0;
    background-color: #EEF3F7;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cta-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    max-width: 600px;
}

.contact-btn {
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.contact-btn:hover {
    transform: translateX(5px);
    background-color: var(--primaryhover) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.arrow-icon {
    margin-left: 5px;
    display: inline-block;
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-title {
        font-size: 36px;
    }
}

.why-choose-section {
    padding: 80px 0;
    text-align: center;
}

.title-section {
    margin-bottom: 50px;
}

.title-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.title-section h1 span {
    color: var(--primary);
}

.center-icon {
    width: 400px;
    height: 400px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    border: 10px solid #EEF3F7;
}

.center-icon img {
    width: 240px;
    height: 240px;
    color: var(--primary);
}

.feature-item {
    background: #EEF3F7;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    width: 20px;
    height: 20px;
    color: var(--primary) !important;
}

.connecting-line {
    position: absolute;
    background: #e9ecef;
    height: 2px;
    width: 150px;
}

.why-choose-section {
    position: relative;
}

/* .center-icon {
    width: 120px;
    height: 120px;
} */

/* .center-icon img {
    width: 100%;
    height: auto;
} */

/* Feature Items Styling */
.feature-item {
    background: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.feature-item i {
    color: #007bff;
    font-size: 1.2rem;
}

/* Connecting Lines */
.feature-item::before {
    content: "";
    position: absolute;
    background: #007bff;
    width: 250px;
    height: 3px;
}

/* Line Positions */
.feature-top-left {
    top: 10%;
    left: 5%;
}

.feature-top-left::before {
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.feature-top-right {
    top: 10%;
    right: 5%;
}

.feature-top-right::before {
    right: 250px;
    top: 50%;
    transform: translateY(-50%);
}

.feature-bottom-left {
    bottom: 10%;
    left: 5%;
}

.feature-bottom-left::before {
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.feature-bottom-right {
    bottom: 10%;
    right: 5%;
}

.feature-bottom-right::before {
    right: 250px;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-item::before {
        width: 50px;
    }

    .feature-top-left,
    .feature-top-right,
    .feature-bottom-left,
    .feature-bottom-right {
        position: relative;
        text-align: center;
        margin: 10px auto;
    }

    .feature-top-left::before,
    .feature-top-right::before,
    .feature-bottom-left::before,
    .feature-bottom-right::before {
        display: none;
    }

}

/* Contact us */
.location-icon {
    color: #007bff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-icon {
    color: #007bff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

.submit-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
}

.office-card {
    padding: 20px;
    height: 100%;
}

.our-location {
    color: var(--primary);
}

.location-card {
    border-bottom: none !important;
    border-left: none !important;
    border-top: none !important;
    ;
    border-right: 1px #8e8d8d solid !important;
    border-radius: 0 !important;
}

.location-card-3 {
    border: none;
}

.form-control {
    border: none;
    border-radius: 8px;
    padding: 12px;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #007bff;
}

label {
    font-weight: 400;
    color: #212529;
}

.btn-primary:hover {
    background-color: #0056b3 !important;
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

/* Management */
.management-name-card {
    box-shadow:
        8px -4px 19px 0px #0000000A,
        31px -16px 35px 0px #00000008,
        70px -35px 47px 0px #00000005,
        124px -63px 56px 0px #00000003,
        194px -98px 61px 0px #00000000;
}

@media (max-width: 768px) {
    .management-name-card {
        box-shadow: none !important;
    }

}

.helper-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.helper-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #007BFF;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.helper-toggle:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.helper-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 220px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: none;
    transition: all 0.3s ease;
}

.helper-menu.active {
    display: block;
    animation: slideUp 0.3s forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.helper-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.helper-menu ul li {
    border-bottom: 1px solid #f0f0f0;
}

.helper-menu ul li:last-child {
    border-bottom: none;
}

.helper-menu ul li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.helper-menu ul li a:hover {
    background-color: #f8f9fa;
    color: #007BFF;
    padding-left: 25px;
}

/* .helper-widget {
    display: none; /* Hidden by default 
    opacity: 0;
    transition: opacity 0.3s ease;
} */

.helper-widget.show {
    display: block;
    opacity: 1;
}

#chatbot-box {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: #fff;
    border: 2px solid #007BFF;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#chatbot-header {
    background-color: #007BFF;
    display: flex;
    justify-content: space-between;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

#chatbot-content {
    padding: 10px;
    height: 300px;
    overflow-y: auto;
}

#chatbot-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-top: none;
}

#chatbot-send {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 8px;
    cursor: pointer;
    width: 100%;
}

.hidden {
    display: none !important;
}

.close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
    transition: transform 0.2s ease-in-out;
}

.close-btn:hover {
    transform: scale(1.2);
    color: #ff4d4d;
}












/* Responsive styles */
@media (max-width: 991.98px) {
    .navbar {
        height: auto !important;
        background-color: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        padding: 15px 0;
    }

    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    .nav-item {
        margin: 10px 0;
        text-align: center;
    }

    .nav-link {
        font-size: 18px;
        padding: 10px 0;
    }

    .nav-link:after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 22px;
    }

    .nav-link {
        font-size: 16px;
    }
}

/* Responsive adjustments Mansgement*/
@media (max-width: 992px) {
    .management-card {
        margin-bottom: 30px;
    }

    .management-image-container {
        margin-bottom: 25px;
        height: 350px;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }
}

@media (max-width: 768px) {
    .management-section {
        padding: 40px 0;
    }

    .section-title {
        margin-bottom: 30px;
        font-size: 2rem;
    }

    .management-image-container {
        height: 285px;
    }
}

@media (max-width: 576px) {
    .management-image-container {
        height: 220px;
    }

    .management-name {
        font-size: 1.5rem;
    }
}

@media (min-width: 481px) and (max-width: 500px) {
    .management-image-container {
        height: 390px;
    }

    .management-name {
        font-size: 1.5rem;
    }
}

@media (min-width: 451px) and (max-width: 480px) {
    .management-image-container {
        height: 380px;
    }

    .management-name {
        font-size: 1.5rem;
    }
}

@media (min-width: 426px) and (max-width: 450px) {
    .management-image-container {
        height: 340px;
    }

    .management-name {
        font-size: 1.5rem;
    }
}

@media (min-width: 400px) and (max-width: 425px) {
    .management-image-container {
        height: 290px;
    }

    .management-name {
        font-size: 1.5rem;
    }
}

@media (min-width: 370px) and (max-width: 400px) {
    .management-image-container {
        height: 290px;
    }

    .management-name {
        font-size: 1.5rem;
    }
}



.image img {
    height: 100%;
}

.image img {
    height: 100%;

}

/* Flash Message Styles */

#flash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Message box */
#flash-box {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.4s ease;
}

#flash-box h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

#flash-box p {
    color: #444;
    line-height: 1.6;
    font-size: 15px;
}

#flash-ok {
    margin-top: 20px;
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

#flash-ok:hover {
    background-color: #2980b9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 991px) {
    .offcanvas {
        background-color: blue !important;
    }
}

.product-fields .col-md-6 {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .product-fields .col-md-6 {
        margin-bottom: 10px;
    }
}


.respon2 {
    /* background-color: #fff !important; */
    background-color: rgba(255, 255, 255, 0.95) !important;

}

.respon {
    display: none;
}

@media (max-width: 991px) {
    .offcanvas {
        background-color: blue !important;
    }
}

@media (min-width:558px) and (max-width:768px) {
    .phone {
        font-size: 12px;
    }
}

@media(min-width:454px) and (max-width:557px) {
    .phone {
        font-size: 10px;
    }
}

@media(min-width:424px) and (max-width:454px) {
    .phone {
        font-size: 9px;
    }
}

@media(min-width:423px) and (max-width:424px) {
    .phone1 {
        font-size: 9px;
    }
}

@media(max-width:424px) {
    .phone {
        display: none;
    }

    .social-icons {
        display: flex;
        justify-self: start;
        text-align: start;
    }

    .respon2 {
        display: none;
    }

    .respon {
        display: block;
        /* background-color: #fff; */
        background-color: rgba(255, 255, 255, 0.95) !important;

    }

    .respon .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media(min-width:320px) and (max-width:423px) {
    .phone1 {
        font-size: 9px;
    }
}