/* Custom CSS for HealTrack Website */

/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Custom Animations */
.hover-scale {
    transition: transform 0.3s ease;
    display: inline-block;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Custom Button Styles */
.btn-gradient {
    background: linear-gradient(to right, #4a6cf7, #2e55fa);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #2e55fa, #1a46f7);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 85, 250, 0.2);
}

/* Custom Form Styles */
input:focus, textarea:focus {
    border-color: #4a6cf7 !important;
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1) !important;
}

/* Custom Card Styles */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Custom Section Styles */
.section-divider {
    position: relative;
    height: 4px;
    width: 60px;
    background: linear-gradient(to right, #4a6cf7, #2e55fa);
    margin: 20px auto 40px;
    border-radius: 2px;
}

/* Custom Image Styles */
.img-shadow {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Custom List Styles */
.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.custom-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: linear-gradient(to right, #4a6cf7, #2e55fa);
    border-radius: 50%;
}

/* Custom Testimonial Styles */
.testimonial-card {
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 60px;
    color: rgba(74, 108, 247, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Custom FAQ Styles */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-active .faq-content {
    max-height: 500px;
}

.faq-active .fa-chevron-down {
    transform: rotate(180deg);
}

/* Custom Footer Styles */
.footer-link {
    position: relative;
    display: inline-block;
}

.footer-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.footer-link:hover:after {
    width: 100%;
}

/* Custom Responsive Styles */
@media (max-width: 768px) {
    .section-divider {
        margin: 15px auto 30px;
        width: 40px;
    }
}

/* Custom Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Selection Color */
::selection {
    background-color: rgba(74, 108, 247, 0.2);
    color: #4a6cf7;
}

/* Logo styles */
.logo-header {
    height: 100px !important; /* Increased from 60px to 100px */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-footer {
    height: 80px !important; /* Increased from 48px to 80px */
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5)); /* Adding a subtle white glow */
    margin-bottom: 10px; /* Adding some space below the logo */
}

/* Healthcare Image Styles */
.healthcare-image {
    box-shadow: 0 0 30px rgba(74, 108, 247, 0.3);
    transition: all 0.5s ease;
    border: 4px solid white;
}

.healthcare-image:hover {
    box-shadow: 0 0 40px rgba(74, 108, 247, 0.5);
    transform: scale(1.02);
}

/* Hero Section Styles */
.hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }
} 