/* Main Colors */
:root {
    --primary: #0095DA;
    --primary-dark: #0056b3;
    --secondary: #28a745;
    --dark: #343a40;
    --light: #f8f9fa;
    --light-blue: #e6f7ff;
    --gray: #6c757d;
    --border: #dee2e6;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4, .col-md-6, .col-md-8 {
    padding: 0 15px;
    box-sizing: border-box;
}

.col-md-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-8 {
    flex: 0 0 66.67%;
    max-width: 66.67%;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}

/* Header and Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    margin: 0 10px;
}

.navbar-nav a {
    color: var(--dark);
    font-weight: 500;
}

.navbar-nav a:hover {
    color: var(--primary);
}

/* Blue Banner */
.blue-banner {
    background-color: var(--primary);
    color: white;
    padding: 10px 0;
    text-align: center;
}

.blue-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.blue-banner a {
    color: white;
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0 40px;
    color: white;
    position: relative;
    min-height: 500px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.get-started {
    font-weight: 600;
    padding: 0.8rem 1.8rem;
}

/* Search Box */
.search-box {
    position: relative;
    z-index: 3;
    margin-top: 40px;
}

.search-container {
    background: rgba(0, 149, 218, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: relative;
}

.ai-search-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.ai-search-tag i {
    margin-right: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.search-container .d-flex {
    display: flex;
    align-items: center;
}

.search-container select {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 5px 0 0 5px;
    margin-right: 0;
    background-color: white;
    font-weight: 500;
}

.search-container input {
    flex: 1;
    padding: 14px;
    border: 1px solid var(--border);
    border-left: none;
    border-right: none;
    margin-right: 0;
    font-size: 1rem;
}

.search-container button {
    padding: 14px 20px;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.search-container button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.search-examples {
    margin-top: 10px;
}

.search-examples small {
    opacity: 0.8;
    font-style: italic;
}

/* Section Styling */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

section {
    padding: 60px 0;
}

/* Services Grid */
.services-section, .conditions-section, .procedures-section {
    background-color: var(--light);
}

.services-grid, .conditions-grid, .procedures-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card, .condition-card, .procedure-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover, .condition-card:hover, .procedure-card:hover {
    transform: translateY(-5px);
}

.service-icon, .condition-icon, .procedure-icon {
    background-color: var(--light-blue);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-card h3, .condition-card h3, .procedure-card h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--dark);
}

/* Section Header with Controls */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section-header h2, .section-header h3 {
    margin: 0;
}

.section-controls {
    display: flex;
    gap: 10px;
}

.section-controls button {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-controls button:hover {
    background-color: var(--primary);
    color: white;
}

/* Best Care Section */
.best-care-section {
    background-color: var(--light-blue);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.stat-icon {
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.stat-title {
    font-size: 1.2rem;
    color: var(--gray);
    margin: 0;
}

.featured-in {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.featured-in img {
    height: 50px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.featured-in img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Hospitals Section */
.hospital-card-main {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
}

.hospital-logo {
    background-color: white;
    padding: 40px;
    text-align: center;
    flex: 0 0 40%;
}

.hospital-name {
    color: #e74c3c;
    font-size: 1.5rem;
    margin: 0;
}

.hospital-brand {
    font-size: 2.5rem;
    color: #0d47a1;
    margin: 10px 0;
}

.hospital-brand span {
    color: #333;
}

.hospital-tagline {
    color: var(--gray);
    margin: 0;
}

.hospital-info {
    padding: 40px;
    flex: 1;
}

.hospital-title {
    font-size: 1.8rem;
    margin: 0 0 5px;
}

.hospital-address {
    color: var(--gray);
    margin: 0 0 20px;
}

.hospital-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating i {
    color: #ffc107;
}

/* Other Hospitals */
.hospitals-grid {
    display: flex;
    gap: 30px;
}

.hospital-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    width: 100%;
}

.hospital-card .hospital-logo {
    padding: 0;
    margin-bottom: 20px;
}

.hospital-card .hospital-name {
    color: var(--dark);
    font-size: 1.5rem;
}

.reviews {
    color: var(--gray);
}

/* Surgeons Section */
.surgeons-grid {
    display: flex;
    gap: 30px;
}

.surgeon-card {
    background-color: var(--light-blue);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    width: 100%;
}

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

.surgeon-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.surgeon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.surgeon-name {
    font-size: 1.5rem;
    margin: 0 0 10px;
}

.surgeon-specialty {
    color: var(--gray);
    margin: 0 0 10px;
}

.surgeon-experience {
    font-weight: 600;
    margin: 0 0 10px;
}

.surgeon-rating {
    color: var(--secondary);
    margin: 0 0 20px;
}

.surgeon-rating i {
    color: var(--secondary);
}

.view-profile {
    color: var(--primary);
    font-weight: 600;
    display: inline-block;
}

/* Anohra Section */
.anohra-section {
    background-color: var(--light-blue);
    padding: 40px 0;
}

.anohra-title {
    font-size: 2rem;
    color: #00bcd4;
    margin: 0 0 10px;
}

.anohra-title span {
    color: var(--dark);
}

.anohra-description {
    font-size: 1.1rem;
    margin: 0;
    max-width: 600px;
}

.anohra-image {
    max-width: 100%;
}

/* Doctor Search Section */
.doctor-search-section {
    padding: 80px 0;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.view-profile-btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
}

/* Emergency Service Section */
.emergency-service-section {
    background-color: var(--light-blue);
    position: relative;
    padding: 60px 0;
}

.emergency-badge {
    display: inline-block;
    background-color: rgba(0, 149, 218, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.emergency-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.how-it-works {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--primary);
    position: relative;
    padding-left: 20px;
}

.how-it-works::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: var(--primary);
    border-radius: 5px;
}

.step {
    display: flex;
    margin-bottom: 20px;
}

.step-icon {
    flex: 0 0 50px;
    height: 50px;
    margin-right: 20px;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    margin: 0 0 5px;
}

.step-content p {
    margin: 0;
    color: var(--gray);
}

.qr-generate-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
}

.qr-generate-card h3 {
    font-size: 1.5rem;
    margin: 0 0 20px;
}

.qr-generate-card p {
    margin: 0 0 30px;
    color: var(--gray);
}

.generate-qr-btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    width: 100%;
}

/* Enterprise/Hospital Services */
.enterprise-services-section,
.hospital-services-section {
    padding: 80px 0;
}

.service-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.service-cards .service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    width: 100%;
    text-align: left;
}

.service-cards .service-icon {
    background-color: var(--light-blue);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-cards h3 {
    font-size: 1.3rem;
    margin: 0 0 5px;
}

.service-cards h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin: 0 0 15px;
}

.service-cards p {
    color: var(--gray);
    margin: 0 0 20px;
}

.learn-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-block;
}

/* Footer */
.site-footer {
    background-color: #263238;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-brand {
    flex: 0 0 30%;
    padding-right: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
}

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a:hover {
    color: white;
}

.footer-column address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column address p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-column address i {
    margin-right: 10px;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .col-md-4, .col-md-6, .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .stats-container, .surgeons-grid, .service-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card, .surgeon-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }
    
    .hospital-card-main {
        flex-direction: column;
    }
    
    .hospital-logo, .hospital-info {
        padding: 20px;
    }
    
    .footer-brand {
        flex: 0 0 100%;
        margin-bottom: 30px;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: 60px 0 30px;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .search-container {
        flex-direction: column;
    }
    
    .search-container select, .search-container input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .search-container button {
        width: 100%;
    }
    
    .services-grid, .conditions-grid, .procedures-grid {
        gap: 15px;
    }
    
    .service-card, .condition-card, .procedure-card {
        width: calc(33.33% - 10px);
        padding: 15px;
    }
    
    .service-icon, .condition-icon, .procedure-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-card h3, .condition-card h3, .procedure-card h3 {
        font-size: 0.9rem;
    }
    
    .hospitals-grid {
        flex-direction: column;
    }
    
    .hospital-card {
        margin-bottom: 20px;
    }
    
    .footer-column {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
} 