/* General Styles */
body {
    padding-top: 76px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Logo */
.logo-img {
    height: 50px;
    width: auto;
}

/* Hero Slider */
.hero {
    margin-top: -76px;
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.7);
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 80%;
    z-index: 2;
}

.slider-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-content .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
}

.swiper-pagination-bullet-active {
    background: #3498db;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-title {
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Appointment Form */
.form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 12px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #3498db;
}

/* Consultation Fee */
.consultation-fee {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
}

.consultation-fee .amount {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

/* Payment Success Modal */
.success-animation {
    text-align: center;
    padding: 20px;
}

.success-animation i {
    font-size: 80px;
    color: #28a745;
    animation: scale-up 0.5s ease;
}

.transaction-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

#transactionId {
    font-family: monospace;
    font-weight: bold;
    color: #2c3e50;
}

/* Buttons */
.btn-primary {
    background-color: #3498db;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Navbar */
.navbar-brand img {
    height: 50px;
    width: auto;
}

/* Animations */
@keyframes scale-up {
    0% {
        transform: scale(0);
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-content h1 {
        font-size: 2.5rem;
    }

    .slider-content h2 {
        font-size: 1.8rem;
    }

    .slider-content .lead {
        font-size: 1.2rem;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3498db;
}

::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

/* New Styles */
.section-title {
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #3498db;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #27ae60;
    margin-right: 1rem;
}

.condition-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.condition-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.condition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.condition-card:hover .condition-image img {
    transform: scale(1.1);
}

.condition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 152, 219, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.condition-card:hover .condition-overlay {
    opacity: 1;
}

.condition-icon {
    font-size: 2.5rem;
    color: white;
}

.condition-card h3 {
    color: #2c3e50;
    margin: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

.condition-card ul {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.condition-card ul li {
    margin-bottom: 0.5rem;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.condition-card ul li:before {
    content: '•';
    color: #3498db;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .condition-image {
        height: 160px;
    }
    
    .condition-card h3 {
        font-size: 1.1rem;
    }
    
    .condition-card ul li {
        font-size: 0.9rem;
    }
}

.clinic-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.clinic-info h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.clinic-info ul li {
    margin-bottom: 0.5rem;
}

.clinic-info ul li i {
    color: #3498db;
    margin-right: 0.5rem;
}

#appointmentForm {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 5px;
    padding: 0.75rem;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.btn-primary {
    background-color: #3498db;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}


.section-title {
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #3498db;
    margin: 1rem auto;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
