

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #3498db;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --dark-color: #2c3e50;
    --light-bg: #f8f9fa;
}




/* Navbar Styles */








/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Search Box */
.search-box {
    background: white;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.search-box .form-select,
.search-box .form-control {
    border: none;
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
}

.search-box .btn-search {
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.search-box .btn-search:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Search Section Form Controls */
.form-control-lg {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    padding: 0.75rem 1.2rem;
    transition: all 0.3s;
}

.form-control-lg:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
}

.form-select-lg {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    padding: 0.75rem 1.2rem;
    transition: all 0.3s;
    cursor: pointer;
}

.form-select-lg:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Specialty Cards */
.specialty-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    height: 100%;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.specialty-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.specialty-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.specialty-card p {
    color: #666;
    font-size: 1rem;
}

/* Doctor Cards */
.doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.doctor-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.doctor-info {
    padding: 1.5rem;
}

.doctor-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.doctor-specialty {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.doctor-details {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.doctor-details i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.btn-appointment {
    background: var(--success-color);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    width: 100%;
    transition: all 0.3s;
}

.btn-appointment:hover {
    background: #229954;
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Features Section */
.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.feature-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-item p {
    color: #666;
}

/* Footer */












.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* Sidebar Filters */
.sidebar-filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 20px;
}

/* Filter Header Card */
.filter-header-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-header-card h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.filter-header-card .btn-link {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0;
    font-weight: 600;
}

.filter-header-card .btn-link:hover {
    text-decoration: underline;
}

/* Individual Filter Cards */
.filter-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.filter-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.filter-card h6 {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--light-bg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-card h6 i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.filter-card .form-check {
    padding: 0 !important;
    margin-bottom: 0.7rem;
    display: flex !important;
    align-items: center !important;
}

.filter-card .form-check-input {
    cursor: pointer;
    width: 18px !important;
    height: 18px !important;
    margin-top: 0 !important;
    margin-right: 0.6rem !important;
    margin-left: 0 !important;
    flex-shrink: 0;
    position: relative !important;
    float: none !important;
}

.filter-card .form-check-label {
    cursor: pointer;
    font-size: 0.95rem;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s;
    margin-bottom: 0 !important;
}

.filter-card .form-check-label:hover {
    background-color: var(--light-bg);
    transform: translateX(3px);
}

.filter-card .form-check-label span:first-child {
    flex: 1;
    display: flex;
    align-items: center;
}

.filter-card .form-check-label .count {
    background: rgba(3, 169, 244, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 700;
    min-width: 45px;
    text-align: center;
    font-family: 'Hind Siliguri', Arial, sans-serif;
    display: inline-block;
    line-height: 1.2;
}

.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.form-check-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.filter-expand-btn {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.filter-expand-btn:hover {
    text-decoration: underline;
}

/* Price Range Slider */
.price-range {
    margin: 1rem 0;
}

.price-range input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--light-bg);
    border-radius: 5px;
    outline: none;
}

.price-range input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--secondary-color);
    border-radius: 50%;
    cursor: pointer;
}

.price-range input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--secondary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.price-display {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* Apply Filter Button Card */
.apply-filter-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.apply-filter-btn {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.apply-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Doctor List View Cards */
.doctor-list-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #eee;
}

.doctor-list-card:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.doctor-list-img {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
}

.doctor-list-info {
    padding: 0 1rem;
}

.doctor-list-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.doctor-list-specialty {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.doctor-list-info p {
    font-size: 0.9rem;
    color: #666;
}

.doctor-list-info i {
    margin-right: 0.5rem;
}

.doctor-list-action {
    padding: 0.5rem;
}

/* Doctor Profile Page Styles */
.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
}

/* Doctor Profile Card */
.doctor-profile-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.12);
    position: relative;
}

.profile-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    height: 100px;
    position: relative;
}

.verified-badge {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: white;
    color: var(--success-color);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.verified-badge i {
    font-size: 1.3rem;
}

.profile-content {
    padding: 0 2rem 2rem 2rem;
    margin-top: -30px;
}

.doctor-profile-img {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    border: 4px solid white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.doctor-profile-info {
    padding: 0.8rem 0 0 0;
}

.doctor-profile-name {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.doctor-profile-specialty {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.doctor-profile-specialty i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Profile Meta */
.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #555;
    font-size: 0.92rem;
}

.meta-item i {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Profile Stats */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-bg);
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s;
}

.stat-box:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
    min-width: 0;
}

.stat-value {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.2rem;
}

/* Profile Section Cards */
.profile-section-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.section-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--light-bg);
}

.section-heading i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Specialty Items */
.specialty-item {
    padding: 0.8rem 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

.specialty-item:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateX(5px);
}

.specialty-item i {
    font-size: 1.3rem;
}

/* Chamber Card */
.chamber-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-color);
}

.chamber-header h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.chamber-header p {
    color: #666;
    font-size: 0.95rem;
}

.chamber-schedule {
    margin-top: 1.5rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-item .day {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.schedule-item .time {
    color: var(--secondary-color);
    font-weight: 500;
}

.schedule-item.closed {
    background: #f8d7da;
}

.schedule-item.closed .time {
    color: var(--danger-color);
}

/* Review Items */
.review-item {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.reviewer-info h6 {
    font-weight: 600;
    color: var(--dark-color);
}

.review-rating i {
    font-size: 1.1rem;
}

.review-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Appointment Card */
.appointment-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.appointment-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.fee-info {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.fee-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.fee-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #229954);
    border: none;
    font-weight: 600;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Contact Info Card */
.contact-info-card,
.quick-info-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.card-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--light-bg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 25px;
}

.contact-item span {
    color: #666;
    font-size: 0.95rem;
}

/* Quick Info Items */
.quick-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.quick-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.quick-info-item .label {
    font-weight: 600;
    color: var(--dark-color);
}

.quick-info-item .value {
    color: #666;
    text-align: right;
}

/* Education Timeline */
.education-timeline {
    position: relative;
    padding-left: 3.5rem;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: var(--light-bg);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border: 4px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    z-index: 1;
}

.timeline-content h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
}

.timeline-content small {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Service Badges */
.service-badge {
    padding: 1rem 1.2rem;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    border-left: 3px solid var(--secondary-color);
}

.service-badge:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateX(5px);
}

.service-badge i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.service-badge span {
    font-weight: 500;
    color: var(--dark-color);
    font-size: 0.95rem;
}

/* Hospital List Card Styles */
.hospitals-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hospital-list-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid #eee;
    display: flex;
    overflow: hidden;
}

.hospital-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.hospital-list-img {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    width: 200px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hospital-list-img i {
    font-size: 5rem;
    color: rgba(255,255,255,0.9);
}

.hospital-list-info {
    flex: 1;
    padding: 1.5rem;
}

.hospital-list-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.4;
}

.hospital-type {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.hospital-type i {
    margin-right: 0.5rem;
}

.hospital-list-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.hospital-list-info p i {
    margin-right: 0.5rem;
    width: 16px;
}

.hospital-list-info strong {
    color: var(--dark-color);
    font-weight: 600;
}

.hospital-list-action {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.hospital-list-action .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.hospital-list-action .btn-outline-primary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.hospital-list-action .btn-outline-primary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.hospital-list-action .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
}

.hospital-list-action .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Hospital Profile Styles */
.hospital-profile-img {
    width: 140px;
    height: 140px;
    min-width: 140px;
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.hospital-profile-img i {
    font-size: 4.5rem;
    color: white;
}

.hospital-profile-name {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Facility Items */
.facility-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s;
}

.facility-item:hover {
    transform: translateX(5px);
    background: rgba(52, 152, 219, 0.1);
}

.facility-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.facility-item span {
    font-weight: 500;
    color: var(--dark-color);
    font-size: 0.95rem;
}

/* Review Summary */
.review-summary {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.rating-bar span:first-child {
    min-width: 60px;
}

.rating-bar span:last-child {
    min-width: 40px;
    text-align: right;
}

.rating-bar .progress {
    height: 8px;
}

/* Quick Info Items */
.quick-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.quick-info-item:last-child {
    border-bottom: none;
}

.quick-info-item i {
    font-size: 1.3rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.quick-info-item div {
    flex: 1;
}

.quick-info-item strong {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.quick-info-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.emergency-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.emergency-banner p {
    font-size: 1rem;
}

.emergency-banner .btn-light {
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Ambulance List Styles */
.ambulances-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ambulance-list-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid #eee;
    display: flex;
    overflow: hidden;
}

.ambulance-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.ambulance-list-img {
    background: linear-gradient(135deg, var(--danger-color), #c0392b);
    width: 200px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ambulance-list-img i {
    font-size: 5rem;
    color: rgba(255,255,255,0.9);
}

.ambulance-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.ambulance-list-info {
    flex: 1;
    padding: 1.5rem;
}

.ambulance-list-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.4;
}

.ambulance-type {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.ambulance-type i {
    margin-right: 0.5rem;
}

.ambulance-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
}

.ambulance-list-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.ambulance-list-info p i {
    margin-right: 0.5rem;
    width: 16px;
}

.ambulance-list-info strong {
    color: var(--dark-color);
    font-weight: 600;
}

.ambulance-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-badge {
    background: var(--light-bg);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-color);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid #e0e0e0;
}

.feature-badge i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.ambulance-list-action {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.ambulance-list-action .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.ambulance-list-action .btn-outline-primary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.ambulance-list-action .btn-outline-primary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.ambulance-list-action .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
}

.ambulance-list-action .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Blood Donation Banner */
.blood-donation-banner {
    background: linear-gradient(135deg, #c0392b 0%, #8e44ad 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 5px 20px rgba(192, 57, 43, 0.3);
}

.blood-donation-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.blood-donation-banner p {
    font-size: 1rem;
}

.blood-donation-banner .btn-light {
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
}

/* Blood Donor List Styles */
.donors-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.donor-list-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid #eee;
    display: flex;
}

.donor-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.donor-header {
    background: linear-gradient(135deg, var(--danger-color), #c0392b);
    width: 180px;
    min-width: 180px;
    padding: 2rem 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255,255,255,0.3);
}

.donor-avatar i {
    font-size: 2.5rem;
    color: white;
}

.blood-group-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Verified Badge for Donors */
.verified-badge-donor {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: pulse-verify 2s infinite;
}

.verified-badge-donor i {
    font-size: 1.5rem;
    color: #27ae60;
}

@keyframes pulse-verify {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(39, 174, 96, 0.6);
    }
}

.blood-group-a-plus { background: #e74c3c; }
.blood-group-a-minus { background: #c0392b; }
.blood-group-b-plus { background: #3498db; }
.blood-group-b-minus { background: #2980b9; }
.blood-group-o-plus { background: #27ae60; }
.blood-group-o-minus { background: #229954; }
.blood-group-ab-plus { background: #9b59b6; }
.blood-group-ab-minus { background: #8e44ad; }

.donor-body {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.donor-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* Donor Info Rows */
.donor-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.6rem;
}

.donor-info-item {
    font-size: 0.9rem;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.donor-info-item i {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Legacy support for old styles */
.donor-age,
.donor-location,
.donor-phone {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.donor-age i,
.donor-location i,
.donor-phone i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.donor-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.meta-badge {
    background: var(--light-bg);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.meta-badge i {
    font-size: 0.9rem;
}

.meta-available {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
}

.meta-available i {
    color: var(--success-color);
}

.meta-not-available {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger-color);
}

.meta-not-available i {
    color: var(--danger-color);
}

.donor-footer {
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
}

.donor-footer .btn {
    font-weight: 600;
    padding: 0.7rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.donor-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Responsive Design - 100% Pixel Perfect */

/* Tablet & Large Mobile (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {

    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    
    
    .doctor-card h5,
    .specialty-card h5 {
        font-size: 1.1rem;
    }
    
    .hospital-list-img {
        width: 180px;
        min-width: 180px;
    }
    
    .hospital-list-info h4 {
        font-size: 1.2rem;
    }
    
    .doctor-list-card {
        padding: 1.2rem;
    }

}


/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {

    /* Global Mobile Styles */
    
    
    /* Navbar Mobile */
    
    
    
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    /* Search Box Mobile */
    .search-box {
        border-radius: 15px;
        padding: 0.3rem;
    }
    
    .search-box .form-select,
    .search-box .form-control {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .search-box .btn-search {
        width: 100%;
        margin-top: 10px;
        padding: 0.7rem;
    }
    
    /* Form Controls Mobile */
    .form-control-lg,
    .form-select-lg {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 1.6rem;
    }
    
    /* Sidebar Filters Mobile */
    .sidebar-filters {
        position: relative;
        top: 0;
        margin-bottom: 1.5rem;
        gap: 0.8rem;
    }
    
    .filter-card {
        padding: 1rem;
    }
    
    .filter-card h6 {
        font-size: 1rem;
    }
    
    .filter-header-card {
        padding: 0.9rem 1rem;
    }
    
    .filter-header-card h5 {
        font-size: 1.1rem;
    }
    
    .apply-filter-card {
        padding: 1rem;
    }
    
    .apply-filter-btn {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    /* Doctor Cards Mobile */
    .doctor-card {
        padding: 1rem;
    }
    
    .doctor-card h5 {
        font-size: 1rem;
    }
    
    .doctor-card p {
        font-size: 0.85rem;
    }
    
    /* Doctor List Card Mobile */
    .doctor-list-card {
        flex-direction: column;
        padding: 0;
    }
    
    .doctor-list-img {
        width: 100%;
        height: 120px;
        font-size: 3.5rem;
    }
    
    .doctor-list-info {
        padding: 1rem;
    }
    
    .doctor-list-info h4 {
        font-size: 1.1rem;
    }
    
    .doctor-list-info p {
        font-size: 0.85rem;
    }
    
    .doctor-list-action {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
        text-align: center;
    }
    
    .doctor-list-action .btn {
        width: 100%;
        font-size: 0.85rem;
    }
    
    /* Hospital List Card Mobile */
    .hospital-list-card {
        flex-direction: column;
    }
    
    .hospital-list-img {
        width: 100%;
        min-width: 100%;
        height: 140px;
    }
    
    .hospital-list-img i {
        font-size: 3.5rem;
    }
    
    .hospital-list-info {
        padding: 1rem;
    }
    
    .hospital-list-info h4 {
        font-size: 1.1rem;
    }
    
    .hospital-list-info p {
        font-size: 0.85rem;
    }
    
    .hospital-list-action {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .hospital-list-action .btn {
        width: 100%;
        font-size: 0.85rem;
    }
    
    /* Hospital Profile Mobile */
    .hospital-profile-img {
        width: 100px;
        height: 100px;
        min-width: 100px;
    }
    
    .hospital-profile-img i {
        font-size: 3.5rem;
    }
    
    .hospital-profile-name {
        font-size: 1.3rem;
    }
    
    .facility-item {
        padding: 0.6rem;
    }
    
    .facility-item i {
        font-size: 1.2rem;
    }
    
    .facility-item span {
        font-size: 0.85rem;
    }
    
    .review-summary {
        padding: 1.2rem;
    }
    
    .rating-bar {
        font-size: 0.8rem;
    }
    
    /* Ambulance List Mobile */
    .emergency-banner h3 {
        font-size: 1.2rem;
    }
    
    .emergency-banner .btn-light {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .ambulance-list-card {
        flex-direction: column;
    }
    
    .ambulance-list-img {
        width: 100%;
        min-width: 100%;
        height: 140px;
    }
    
    .ambulance-list-img i {
        font-size: 3.5rem;
    }
    
    .ambulance-list-info {
        padding: 1rem;
    }
    
    .ambulance-list-info h4 {
        font-size: 1.1rem;
    }
    
    .ambulance-price {
        font-size: 1.2rem;
    }
    
    .ambulance-list-info p {
        font-size: 0.85rem;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .ambulance-list-action {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .ambulance-list-action .btn {
        width: 100%;
        font-size: 0.85rem;
    }
    
    /* Blood Donor Mobile */
    .blood-donation-banner h3 {
        font-size: 1.2rem;
    }
    
    .blood-donation-banner .btn-light {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .donor-list-card {
        flex-direction: column;
    }
    
    .donor-header {
        width: 100%;
        min-width: 100%;
        padding: 1.5rem 1rem;
    }
    
    .donor-avatar {
        width: 60px;
        height: 60px;
    }
    
    .donor-avatar i {
        font-size: 2rem;
    }
    
    .blood-group-badge {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        top: 10px;
        left: 10px;
    }
    
    .verified-badge-donor {
        width: 30px;
        height: 30px;
        bottom: 10px;
        right: 10px;
    }
    
    .verified-badge-donor i {
        font-size: 1.3rem;
    }
    
    .donor-body {
        padding: 1rem;
    }
    
    .donor-name {
        font-size: 1.1rem;
    }
    
    .donor-info-row {
        gap: 0.6rem;
        margin-bottom: 0.5rem;
    }
    
    .donor-info-item {
        font-size: 0.85rem;
    }
    
    .donor-info-item i {
        font-size: 0.9rem;
    }
    
    .donor-age,
    .donor-location,
    .donor-phone {
        font-size: 0.85rem;
    }
    
    .meta-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .donor-footer {
        padding: 0 1rem 1rem;
    }
    
    /* Profile Page Mobile */
    .doctor-profile-card {
        margin-bottom: 1.5rem;
    }
    
    .doctor-profile-img {
        height: 100px;
        width: 100px;
        font-size: 3.5rem;
    }
    
    .doctor-profile-name {
        font-size: 1.3rem;
    }
    
    .profile-designation {
        font-size: 0.9rem;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .stat-box {
        padding: 0.8rem;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .appointment-card {
        position: relative;
        top: 0;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-card {
        margin-bottom: 1.5rem;
    }
    
    .education-timeline {
        padding-left: 2rem;
    }
    
    .timeline-badge {
        left: -2.5rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .timeline-content h5 {
        font-size: 1rem;
    }
    
    .service-badge {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .chamber-card h6 {
        font-size: 1rem;
    }
    
    .review-item {
        padding: 1rem;
    }
    
    /* Specialty Cards Mobile */
    .specialty-card {
        padding: 1.2rem;
    }
    
    .specialty-icon {
        font-size: 2.5rem;
    }
    
    .specialty-card h5 {
        font-size: 1.1rem;
    }
    
    .specialty-card p {
        font-size: 0.85rem;
    }
    
    /* Stats Section Mobile */
    .stats-box {
        padding: 1.2rem;
    }
    
    .stats-box h3 {
        font-size: 1.8rem;
    }
    
    .stats-box p {
        font-size: 0.9rem;
    }
    
    /* Footer Mobile */
    
    
    
    
    
    
    /* Buttons Mobile */
    .btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-lg {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    /* Badges Mobile */
    .badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Pagination Mobile */
    .pagination .page-link {
        padding: 0.4rem 0.7rem;
        font-size: 0.85rem;
    }

}


/* Extra Small Devices (max-width: 575px) */
@media (max-width: 575px) {

    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-section p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    
    
    .doctor-list-info h4,
    .hospital-list-info h4 {
        font-size: 1rem;
    }
    
    .stat-box {
        padding: 0.7rem;
    }
    
    .form-control-lg,
    .form-select-lg {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }

}


/* Extra Extra Small Devices (max-width: 375px) */
@media (max-width: 375px) {

    .hero-section h1 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    
    
    .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .doctor-list-info h4,
    .hospital-list-info h4 {
        font-size: 0.95rem;
    }

}


/* ========================================
   DONOR PROFILE PAGE STYLES
   Modern & Professional Design
   ======================================== */

/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(44, 95, 125, 0.05));
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-section .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

/* Donor Profile Card */
.donor-profile-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.donor-profile-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

/* Donor Profile Banner */
.donor-profile-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #8e44ad 100%);
    height: 200px;
    position: relative;
    overflow: hidden;
}

.donor-profile-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.donor-profile-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

.donor-profile-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
}

.donor-profile-content {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    padding: 2rem;
    height: 100%;
}

/* Donor Profile Image */
.donor-profile-img {
    width: 140px;
    height: 140px;
    min-width: 140px;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.donor-profile-card:hover .donor-profile-img {
    transform: translateY(30px) scale(1.05);
}

.donor-profile-img i {
    font-size: 5rem;
    color: #e74c3c;
}

/* Verified Badge for Profile */
.verified-badge-profile {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: pulse-badge 2s infinite;
}

.verified-badge-profile i {
    font-size: 1.8rem;
    color: #27ae60;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
    }
    50% {
        box-shadow: 0 5px 25px rgba(39, 174, 96, 0.8);
    }
}

/* Donor Profile Details */
.donor-profile-details {
    flex: 1;
    color: white;
    padding-bottom: 1rem;
}

.blood-group-large {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(255,255,255,0.5);
    }
}

.donor-profile-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.donor-profile-meta {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.donor-profile-meta i {
    font-size: 1.2rem;
}

/* Donor Status Badges */
.donor-status-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.status-badge {
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.status-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.status-available {
    background: rgba(39, 174, 96, 0.9);
    color: white;
}

.status-verified {
    background: rgba(255, 255, 255, 0.95);
    color: #27ae60;
}

.status-badge i {
    font-size: 1.1rem;
}

/* Donor Stats Grid */
.donor-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(to bottom, #f8f9fa, white);
}

.donor-stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.donor-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #e74c3c;
}

.stat-icon-donor {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.stat-value-donor {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.stat-label-donor {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Profile Section Card */
.section-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-card-title i {
    color: #e74c3c;
    font-size: 1.6rem;
}

/* Donation History Timeline */
.donation-history-timeline {
    position: relative;
}

.donation-history-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.donation-history-item::before {
    content: '';
    position: absolute;
    left: 52px;
    top: 60px;
    bottom: -20px;
    width: 3px;
    background: linear-gradient(to bottom, #e74c3c, transparent);
}

.donation-history-item:last-child::before {
    display: none;
}

.donation-date-badge {
    width: 80px;
    min-width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.donation-history-item:hover .donation-date-badge {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

.donation-month {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.donation-year {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.2rem;
}

.donation-details {
    flex: 1;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
    transition: all 0.3s ease;
}

.donation-details:hover {
    background: rgba(231, 76, 60, 0.05);
    transform: translateX(5px);
}

.donation-details h6 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.donation-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

/* Health Information */
.health-info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(39, 174, 96, 0.05);
    border-radius: 10px;
    border-left: 3px solid #27ae60;
    transition: all 0.3s ease;
}

.health-info-item:hover {
    background: rgba(39, 174, 96, 0.1);
    transform: translateX(5px);
}

.health-info-item i {
    font-size: 1.5rem;
}

.health-info-item span {
    font-weight: 500;
    color: #2c3e50;
}

/* Availability Schedule */
.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.availability-day {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.availability-day:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.day-name {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.day-time {
    font-size: 0.9rem;
    padding: 0.5rem;
    border-radius: 8px;
    font-weight: 500;
}

.day-time.available {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.day-time.unavailable {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Donor Contact Card */
.donor-contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    position: sticky;
    top: 20px;
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card-title i {
    color: #e74c3c;
}

.contact-info-list {
    margin-bottom: 1.5rem;
}

.contact-info-item-donor {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info-item-donor:hover {
    background: rgba(231, 76, 60, 0.05);
    transform: translateX(5px);
}

.contact-info-item-donor i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-top: 0.2rem;
}

.contact-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.contact-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Donor Quick Info Card */
.donor-quick-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.quick-info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-info-title i {
    color: #e74c3c;
}

.quick-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.quick-info-item-donor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.quick-info-item-donor:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #666;
    font-size: 0.95rem;
}

.info-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    text-align: right;
}

.blood-group-badge-sm {
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}

/* Emergency Notice Card */
.emergency-notice-card {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
    margin-bottom: 2rem;
}

.emergency-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: pulse-emergency 2s infinite;
}

@keyframes pulse-emergency {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255,255,255,0);
    }
}

.emergency-icon i {
    font-size: 2rem;
    color: white;
}

.emergency-notice-card h6 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.emergency-notice-card p {
    font-size: 0.95rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.emergency-notice-card .btn-danger {
    background: white;
    color: #e74c3c;
    font-weight: 700;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.emergency-notice-card .btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Share Profile Card */
.share-profile-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.share-profile-card h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.share-profile-card h6 i {
    color: #e74c3c;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.messenger {
    background: #0084ff;
}

.share-btn.link {
    background: #666;
}

/* ========================================
   CONTACT PAGE STYLES
   Modern & Professional Design
   ======================================== */

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, #2c5f7d 0%, #3498db 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.contact-hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.contact-hero-section p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 0;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: auto;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2c5f7d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: #3498db;
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2c5f7d);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.5);
}

.contact-info-icon i {
    font-size: 2.5rem;
    color: white;
}

.contact-info-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-info-card a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: #2c5f7d;
    text-decoration: underline;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.contact-form-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-form-card .form-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
    background: white;
    transform: translateY(-2px);
}

.contact-form-card textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #3498db, #2c5f7d);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.5);
    background: linear-gradient(135deg, #2c5f7d, #3498db);
}

.btn-contact-submit i {
    margin-right: 0.5rem;
}

/* Map Container */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-container:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.map-placeholder {
    text-align: center;
    padding: 3rem;
}

.map-placeholder i {
    font-size: 5rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.map-placeholder h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.map-placeholder p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 0;
}

/* Contact Stats Section */
.contact-stats-section {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 30px;
}

.contact-stat-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2c5f7d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.contact-stat-icon i {
    font-size: 2rem;
    color: white;
}

.contact-stat-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.contact-stat-box p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.faq-accordion .accordion-button {
    background: white;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #3498db, #2c5f7d);
    color: white;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}

/* Social Media Links */
.social-connect-section {
    background: linear-gradient(135deg, #2c5f7d, #3498db);
    padding: 4rem 0;
    margin-top: 4rem;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-connect-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.social-connect-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.social-connect-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.social-media-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.social-media-btn {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.social-media-btn:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.social-media-btn.facebook {
    background: #1877f2;
}

.social-media-btn.twitter {
    background: #1da1f2;
}

.social-media-btn.youtube {
    background: #ff0000;
}

.social-media-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-media-btn.linkedin {
    background: #0077b5;
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {

    .contact-hero-section {
        padding: 60px 0 50px;
    }
    
    .contact-hero-section h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero-section p {
        font-size: 1.1rem;
    }
    
    .contact-info-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-form-card h3 {
        font-size: 1.6rem;
    }

}


@media (max-width: 767px) {

    .contact-hero-section {
        padding: 50px 0 40px;
    }
    
    .contact-hero-section h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero-section p {
        font-size: 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-info-icon i {
        font-size: 2rem;
    }
    
    .contact-info-card h5 {
        font-size: 1.2rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-form-card h3 {
        font-size: 1.4rem;
    }
    
    .btn-contact-submit {
        width: 100%;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
    
    .map-placeholder h4 {
        font-size: 1.2rem;
    }
    
    .contact-stat-box {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-stat-box h3 {
        font-size: 2rem;
    }
    
    .social-connect-section h2 {
        font-size: 1.8rem;
    }
    
    .social-connect-section p {
        font-size: 1rem;
    }
    
    .social-media-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

}

