* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #E6F3F8;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #fefffe;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.navbar-left, .navbar-right {
    display: flex;
    align-items: center;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 1rem;
    border-radius: 50%;
    background-color: #f0f2f5;
    width: 40px;
    height: 40px;
}

.logo {
    font-size: 1.5rem;
    padding-left: 20px;
    color: #0074D9;
    font-weight: 400;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #0074D9;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff4757;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 1rem;
    cursor: pointer;
    border: 2px solid #007bff;
    transition: border-color 0.3s ease;
}

.profile-pic:hover {
    border-color: #0056b3;
}

.emergency-btn {
    background-color: #ff4757;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}

.emergency-btn:hover {
    background-color: #ff6b6b;
    transform: scale(1.05);
}

.side-navbar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background-color: #fefffe;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
}

.side-navbar.open {
    left: 0;
}

.side-navbar ul {
    list-style-type: none;
    padding: 2rem 0;
}

.side-navbar ul li {
    padding: 1rem 2rem;
}

.side-navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.side-navbar ul li a:hover {
    color: #007bff;
}

.emergency-menu, .profile-menu {
    position: fixed;
    top: 70px;
    right: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2000;
    background-color: #fefffe;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    min-width: 200px;
}

.emergency-menu.open, .profile-menu.open {
    display: flex;
}

.menu-button {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 5px;
    background-color: #f8f9fa;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
}

.menu-button:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.menu-button i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.emergency-menu .menu-button {
    color: #ff4757;
}

.emergency-menu .menu-button:hover {
    background-color: #fff5f5;
}

.profile-menu .menu-button {
    color: #007bff;
}

.profile-menu .menu-button:hover {
    background-color: #f0f7ff;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-btn {
        display: block;
    }
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}
.ine-name{
    padding-left: 20px;
}
.footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    max-width: 500px;
    margin: 0 auto;
}

.footer-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    color: #555;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
}

.footer-button i {
    font-size: 22px;
    margin-bottom: 4px;
}

.footer-button:hover, .footer-button.active {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.1);
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
    .footer {
        display: block;
    }
    
    .footer-content {
        height: 70px;
    }
}

@media screen and (max-width: 380px) {
    .footer-content {
        height: 60px;
    }
    
    .footer-button {
        font-size: 10px;
    }
    
    .footer-button i {
        font-size: 20px;
    }
}

        .careovr-footer {
            width: 100%;
            background-color: #140B5C;
            color: #333;
            padding: 4rem 2rem 2rem;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }

        .careovr-footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-title{
            height: auto;
            width: 180px;
        }
        .careovr-footer-section h3 {
            color: #fefffe;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .careovr-footer-section ul {
            list-style: none;
            padding: 0;
        }

        .careovr-footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .careovr-footer-section ul li a {
            color: #AFAFB6;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .careovr-footer-section ul li a:hover {
            color: #ffd700;
        }

        .careovr-social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .careovr-social-icons a {
            color: #ffd800;
            font-size: 30px;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .careovr-social-icons a:hover {
            transform: translateY(-3px);
            color: #fefffe;
        }

        .careovr-footer-bottom {
            margin-top: 3rem;
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #eaeaea;
            font-size: 0.9rem;
            color: #fefffe;
        }

        .careovr-footer-bottom p {
            margin-bottom: 0.5rem;
        }

        .careovr-heart {
            color: #ff4757;
            display: inline-block;
            animation: careovr-heartbeat 1.5s infinite;
        }

        @keyframes careovr-heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        @media (max-width: 1024px) {
            .careovr-footer {
                padding: 3rem 1.5rem 1.5rem;
            }

            .careovr-footer-content {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }

            .careovr-footer-section h3 {
                font-size: 1.1rem;
            }

            .careovr-footer-section ul li {
                font-size: 0.9rem;
            }

            .careovr-footer-bottom {
                margin-top: 2rem;
                padding-top: 1.5rem;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 768px) {
            .careovr-footer {
                padding: 2.5rem 1rem 1rem;
            }

            .careovr-footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .careovr-footer-section h3 {
                font-size: 1rem;
                margin-bottom: 0.75rem;
            }

            .careovr-footer-section ul li {
                font-size: 0.85rem;
                margin-bottom: 0.4rem;
            }

            .careovr-social-icons {
                gap: 0.75rem;
            }

            .careovr-social-icons a {
                font-size: 24px;
            }

            .careovr-footer-bottom {
                margin-top: 1.5rem;
                padding-top: 1rem;
                font-size: 0.75rem;
            }
            .footer-title{
                height: auto;
                width: 180px;
                margin-bottom: 60px;
            }
        }

        @media (max-width: 480px) {
            .careovr-footer {
                padding: 2rem 0.75rem 0.75rem;
                border-top-left-radius: 20px;
                border-top-right-radius: 20px;
            }

            .careovr-footer-content {
                gap: 1rem;
            }

            .careovr-footer-section h3 {
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
            }

            .careovr-footer-section ul li {
                font-size: 0.8rem;
                margin-bottom: 0.3rem;
            }

            .careovr-social-icons a {
                font-size: 30px;
            }

            .careovr-footer-bottom {
                margin-top: 1rem;
                padding-top: 0.75rem;
                font-size: 0.7rem;
            }
        }


        #loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        #loading-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Code for FAQ */
        .faq-section {
            padding: 4rem 0;
            background-color: #f8f9fa;
        }
        
      
        
        .faq-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #333;
        }
        
        .faq-description {
            color: #666;
            margin-bottom: 1.5rem;
        }
        
        .btn-contact {
            background-color: #e67e22;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        
        .btn-contact:hover {
            background-color: #d35400;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
        }
        
        .accordion-button {
            background-color: white;
            color: #333;
            font-weight: 600;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: #4a90e2;
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.25);
        }
        
        .know-more {
            text-align: right;
            margin-top: 1rem;
        }
        
        .know-more-link {
            color: #4a90e2;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .know-more-link:hover {
            color: #2980b9;
        }
        
        @media (max-width: 991px) {
            .faq-intro {
                text-align: center;
                margin-bottom: 2rem;
            }
        }
        /* Code for FAQ Ends  */
        .rating {
            color: #ffc107;
        }
        
  .location {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}
.location svg {
    width: 16px;
    height: 16px;
    margin-right: 0.25rem;
}
