/* Ahad Multispeciality Hospital - Master Stylesheet */

:root {
    --primary-color: #004573;      /* Ahad Deep medical blue */
    --secondary-color: #058789;     /* Ahad green*/
    --accent-color: #07bdfa;        /* Accent cyan */
    --light-blue: #1e75bd;          /* Light blue for accents */
    --light-bg: #f1f2f6;            /* Light gray background */
    --text-color: #010114;          /* Dark text */
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 15px 35px rgba(0,0,0,0.15); /* NEW: Premium float shadow */
    --transition: all 0.3s ease;
    --med-shadow-sm: 0 10px 15px rgba(0, 69, 115, 0.4);
    --med-shadow-lg: 0 20px 20px rgba(0, 69, 115, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Alice", serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}


/* ==========================================================================
   PREMIUM HEADER - DIGITAL PROMOTION UPGRADE
   ========================================================================== */

/* Header Core Variables */
:root {
    --header-font: 'Plus Jakarta Sans', sans-serif;
    --dark-navy: #00223d; /* Darker than primary for the top strip */
}

.premium-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    font-family: var(--header-font);
}

/* --- The Top Urgent Strip --- */
.top-strip {
    background: var(--dark-navy);
    color: white;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* The Emergency Pulse Effect */
.emergency-pulse {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff4757;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.emergency-pulse i {
    animation: pulse-red 2s infinite;
}

.emergency-pulse a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.emergency-pulse a:hover {
    color: #ff4757;
}

@keyframes pulse-red {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.strip-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-tag {
    color: #a4b0be;
    font-weight: 500;
}

.scheme-tag {
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f !important;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.scheme-tag:hover {
    background: #f1c40f;
    color: var(--dark-navy) !important;
}

.admin-tag {
    color: rgba(255,255,255,0.3);
}

.admin-tag:hover {
    color: white;
}

/* --- The Main Navbar Portal --- */
.main-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0, 45, 115, 0.08);
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

/* Premium Logo Area */
.logo-zone a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-zone img {
    height: 75px;
    transition: transform 0.3s;
}

.logo-zone:hover img {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 28px;
    font-weight: 1000;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: 2.2px;
}

.brand-sub {
    font-size: 11px;
    font-weight: 800;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-top: 0;
}

/* Center Navigation Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 1px;
    margin: 0;
    padding: 0;
    text-align: center;
}

.nav-menu ul li a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 15px;
    padding: 5px 5px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--primary-color);
    background: rgba(0, 69, 115, 0.05);
}

/* High-Converting Right Zone */
.conversion-zone {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-right: 20px;
}

/* The Help Desk Block */
.help-desk-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border-right: 2px solid #eee;
    padding-right: 25px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(7, 189, 250, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
}

.help-desk-btn:hover .icon-circle {
    background: var(--accent-color);
    color: white;
    transform: rotate(15deg);
}

.call-text {
    display: flex;
    flex-direction: column;
}

.call-text .small-text {
    font-size: 11px;
    color: #7f8fa6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.call-text .number-text {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
}

/* The Irresistible CTA Button */
.book-appointment-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 69, 115, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.book-appointment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 69, 115, 0.3);
    color: white;
}

.book-appointment-btn i {
    transition: transform 0.3s;
}

.book-appointment-btn:hover i {
    transform: translateX(5px);
}

/* Mobile Overrides */
.mobile-menu-trigger {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    background: #f1f2f6;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .hide-mobile { display: none !important; }
    .mobile-menu-trigger { display: flex; }
    .conversion-zone { gap: 15px; }
    .book-appointment-btn { padding: 12px 20px; font-size: 14px; }
    .brand-title { font-size: 22px; }
}

@media (max-width: 480px) {
    .top-strip-inner { justify-content: center; }
    .book-appointment-btn span { display: none; }
    .book-appointment-btn i { margin: 0; }
    .book-appointment-btn { padding: 12px 15px; }
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 10px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background: var(--accent-color);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero Section & Page Banners (UPGRADED DOT GRID) */
.hero, .page-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* NEW: High-Tech Precision Clinical Dot Grid */
.hero:before, .page-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 20px;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

/* Cards (UPGRADED HOVER PHYSICS) */
.card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

/* Department Grid */
/* --- Elite Department UI System --- */
.dept-flex-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 35px;
}

.dept-item-premium {
    display: flex;
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    border: 1px solid var(--card-border, #eef2f6);
    box-shadow: var(--med-shadow-sm); /* Using your defined blue shadow */
    position: relative;
    text-align: left;
}

.dept-item-premium:hover {
    border-color: var(--primary-color);
    box-shadow: var(--med-shadow-lg); /* Using your defined deep blue shadow */
    transform: translateY(-8px);
    background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
}

.dept-icon-frame {
    width: 85px; 
    height: 85px;
    background: var(--light-bg);
    border-radius: 20px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 2rem; 
    color: var(--primary-color);
    flex-shrink: 0; 
    transition: 0.4s;
}

.dept-item-premium:hover .dept-icon-frame {
    background: var(--primary-color);
    color: #fff;
}

.dept-info-box { 
    margin-left: 25px; 
    flex-grow: 1; 
}

.dept-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 800;
    color: var(--secondary-color); /* Matches your brand green */
    display: block;
    margin-bottom: 5px;
}

.dept-name-heading {
    font-size: 1.4rem; 
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.dept-summary-text { 
    font-size: 0.9rem; 
    color: #526484; 
    line-height: 1.6; 
    margin-bottom: 15px; 
}

.dept-service-pills { 
    display: flex; 
    gap: 10px; 
}

.dept-service-pills span {
    font-size: 0.65rem; 
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(0, 69, 115, 0.06);
    padding: 5px 12px;
    border-radius: 5px;
    transition: 0.3s;
}

.dept-item-premium:hover .dept-service-pills span {
    background: var(--primary-color);
    color: white;
}

/* Responsive Fix for Department Cards */
@media (max-width: 992px) {
    .dept-flex-container { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .dept-item-premium { flex-direction: column; text-align: center; }
    .dept-info-box { margin-left: 0; margin-top: 20px; }
    .dept-service-pills { justify-content: center; }
}

/* Doctor Cards */
.doctor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.doctor-card {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.doctor-card .doctor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--light-bg);
}

.doctor-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-card h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.doctor-card .qualification {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
}

.doctor-card .specialization {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 0 15px;
}

.doctor-card .schedule {
    background: var(--light-bg);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 13px;
}

.doctor-card .schedule i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* Appointment Form */
.appointment-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 0;
}

.appointment-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(7, 189, 250, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Health Topics A-Z */
.az-index {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
    justify-content: center;
}

.letter-link {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: var(--light-bg);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: var(--transition);
}

.letter-link:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

.letter-section {
    margin: 40px 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.letter-section h2 {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    margin: 0;
    font-size: 1.5rem;
}

.topic-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1px;
    background: #e0e0e0;
    list-style: none;
}

.topic-list li {
    background: var(--white);
}

.topic-list li a {
    display: block;
    padding: 15px 20px;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 35px;
}

.topic-list li a:before {
    content: '•';
    position: absolute;
    left: 15px;
    color: var(--accent-color);
    font-size: 20px;
}

.topic-list li a:hover {
    background: var(--light-bg);
    color: var(--accent-color);
    padding-left: 40px;
}

/* News & Events */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    min-width: 60px;
}

.news-date .day {
    font-size: 20px;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.news-date .month {
    font-size: 14px;
    text-transform: uppercase;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.news-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.news-content h3 a:hover {
    color: var(--accent-color);
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.news-meta i {
    color: var(--accent-color);
    margin-right: 5px;
}

.news-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .section-title:after {
    background: var(--white);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    color: var(--white);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: gold;
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    color: var(--white);
}

.testimonial-author p {
    font-size: 13px;
    opacity: 0.9;
}

/* PREMIUM HEALTH LIBRARY SECTION */
.health-ultra {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f9ff, #ffffff);
}

.health-search-box {
    max-width: 650px;
    margin: 40px auto;
    position: relative;
}

.health-search-box input {
    width: 100%;
    padding: 18px 25px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    outline: none;
}

.search-results {
    background: white;
    border-radius: 15px;
    margin-top: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.result-item {
    padding: 15px 20px;
    cursor: pointer;
    transition: 0.2s ease;
}

.result-item:hover {
    background: #f0f7ff;
}

.symptom-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.symptom-mini {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.symptom-mini:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.symptom-mini i {
    color: var(--accent-color);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px,1fr));
    gap: 25px;
}

.featured-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border-radius: 18px;
    text-decoration: none;
    background: white;
    color: #333;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    min-height: 150px;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.featured-icon {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-icon i {
    color: white;
    font-size: 24px;
}

.featured-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.featured-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding-top: 60px;
}

.footer-main {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-main .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-col p {
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
}

.certification {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cert-badge {
    background: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.2);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.footer-col ul li a i {
    font-size: 12px;
    color: var(--accent-color);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-details p i {
    color: var(--accent-color);
    width: 20px;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    background: var(--secondary-color);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 999;
}

#back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* RESPONSIVE BREAKPOINTS (Preserved from your original) */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons .btn {
        margin: 0 7px 15px;
    }
    
    .footer-main .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .contact-info span {
        display: none;
    }
    
    .contact-info span:first-child {
        display: inline;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-main .container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    /* Chairman Content Fixes */
    .chairman-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        text-align: center !important;
    }
    
    .chairman-content img {
        max-width: 180px;
        margin: 0 auto;
    }
    
    .message-card {
        padding: 30px 20px !important;
    }
    
    .chairman-content h2 {
        text-align: center;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }

    .message-card {
        padding: 20px 15px !important;
    }
    
    .chairman-content p {
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr !important;
    }
    .mv-card {
        margin-bottom: 20px;
    }
}


