/* Custom Icon Styles */

/* Global Settings */
html {
    scroll-behavior: smooth;
}

/* Global Typography */
h4 {
    margin-bottom: 15px;
}

/* Icon Colors */
.icon-primary {
    color: #7153d9;
}

.icon-secondary {
    color: #FF6B6B;
}

.icon-white {
    color: #ffffff;
}

.icon-gray {
    color: #666666;
}

/* Icon Sizes */
.icon-sm {
    font-size: 20px;
}

.icon-md {
    font-size: 36px;
}

.icon-lg {
    font-size: 42px;
}

.icon-xl {
    font-size: 48px;
}

.icon-xxl {
    font-size: 80px;
}

.icon-xxxl {
    font-size: 120px;
}

/* Service Icon Box */
.service-icon-box {
    background: #f5f5f5;
    padding: 60px;
    text-align: center;
    border-radius: 8px;
}

.service-icon-box h5 {
    margin-top: 20px;
    color: #666;
}

/* Feature Icon Wrapper */
.feature-icon-wrapper {
    display: inline-block;
}

/* Sidebar List Icons */
.sidebar-service li i,
.service-desc-list i {
    margin-right: 10px;
}

/* Gallery Styles */
.nav-tabs {
    border-bottom: 2px solid #e0e0e0;
}

.nav-tabs .nav-link {
    border: none;
    color: #666;
    font-weight: 600;
    padding: 15px 30px;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.nav-tabs .nav-link:hover {
    color: #7153d9;
    border-bottom: 2px solid #7153d9;
}

.nav-tabs .nav-link.active {
    color: #7153d9;
    border-bottom: 2px solid #7153d9;
    background: transparent;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.3s;
    border-radius: 8px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(113, 83, 217, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 8px;
}

.gallery-overlay i {
    font-size: 48px;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.video-item {
    border-radius: 8px;
    overflow: hidden;
}

.video-item iframe {
    border-radius: 8px;
}

.video-caption h5 {
    color: #333;
    font-weight: 600;
}

/* Modal Styles */
.modal-content {
    background: #fff;
    border-radius: 8px;
}

.modal-header {
    border-bottom: none;
}

.modal-body {
    padding: 0;
}

.modal-body img {
    border-radius: 0 0 8px 8px;
}

/* Social Media Icons */


.social-icon .whatsapp {
    background: #25D366;
}

.social-icon .whatsapp:hover {
    background: #1DA851;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 80px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    background: #1DA851;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
}

/* Appointment Page Styles */
.appointment-form-wrapper {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.appointment-title {
    color: #333;
    font-weight: 700;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    color: #666;
    background: #fff;
    transition: border-color 0.3s;
}

.form-select:focus {
    outline: none;
    border-color: #7153d9;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 5px 20px rgba(113, 83, 217, 0.2);
    transform: translateY(-5px);
}

.service-card-icon {
    margin-bottom: 15px;
}

.service-card h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
}

.doctor-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #7153d9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.doctor-card h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.doctor-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-form-wrapper {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.contact-title {
    color: #333;
    font-weight: 700;
}

.contact-info-single {
    display: flex;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info h4 {
    color: #333;
    font-weight: 600;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
}

.contact-info a {
    color: #7153d9;
    text-decoration: none;
}

.contact-info a:hover {
    color: #5a3fb0;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    border: 0;
    border-radius: 8px;
}

