/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Background Image */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./Gallery/bg\ 4.jpeg') no-repeat center center;
    background-size: cover;
    z-index: -1;
    opacity: 0.7; /* Increased visibility */
}

.content-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Transparent Content Sections */
.top-bar,
.navbar,
.ceo-section,
.slider-section,
.quick-links-section,
.footer {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #dae1f1;
}

/* Header Styles */
.top-bar {
    background-color: rgb(250, 194, 129);
    color: blanchedalmond;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 62, 114, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    border: 2px solid #1a3e72;
}

.logo-title {
    font-size: clamp(18px, 4vw, 25px);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: #1a3e72;
}

.contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: bold;
    color: #1a3e72;
}

.contact-item i {
    margin-right: 8px;
    color: #131614;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #1900ff;
    text-decoration: underline;
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 62, 114, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: relative;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: #1a3e72;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #1a3e72;
    text-decoration: none;
    padding: 18px 20px;
    display: block;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(14px, 1.2vw, 16px);
}

.nav-links a:hover {
    color: #ffcc00;
}

.nav-links li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: #ffcc00;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links li:hover::after {
    width: 100%;
}


.nav-container {
    display: flex;
    justify-content: space-between; /* space between links and complaint button */
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between; /* space between links and complaint button */
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between; /* space between links and complaint button */
    align-items: center;
}

/* complaint button styling */
.complaint-nav-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    white-space: nowrap; /* keeps text in one line */
}

.complaint-nav-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}




/* CEO Section */
.ceo-section {
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(245,245,245,0.95) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.ceo-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
}

.ceo-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 15px;
}

.ceo-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid #ffcc00;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ceo-image img:hover {
    transform: scale(1.02);
}

.ceo-message {
    flex: 2;
    min-width: 250px;
    padding: 15px;
}

.ceo-message h2 {
    color: #1a3e72;
    margin-bottom: 20px;
    font-size: clamp(20px, 2vw, 24px);
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.ceo-message h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #ffcc00;
    bottom: 0;
    left: 0;
}

.ceo-message p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #444;
    font-size: clamp(14px, 1.2vw, 15px);
}

.ceo-name {
    font-weight: bold;
    color: #1a3e72;
    font-size: clamp(15px, 1.2vw, 17px);
    margin-top: 20px;
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 204, 0, 0.1);
    border-left: 3px solid #ffcc00;
}

.ceo-title {
    color: #666;
    font-style: italic;
    font-size: clamp(13px, 1.1vw, 14px);
    margin-top: 5px;
    display: block;
}

/* Dashboard Container */
.dashboard-container {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

/* Notifications Container */
.notifications-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 13px;
    width: 260px;
    flex-shrink: 0;
}

.notifications-container .header {
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
}

.notification {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px;
    background: linear-gradient(to right, #dfefff, #eaf6ff);
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transform: translateX(-100%);
    opacity: 0;
    animation: slideIn 0.5s forwards;
}

.notification:nth-child(2) { animation-delay: 0.1s; }
.notification:nth-child(3) { animation-delay: 0.2s; }
.notification:nth-child(4) { animation-delay: 0.3s; }
.notification:nth-child(5) { animation-delay: 0.4s; }

.notification .date {
    background-color: #3498db;
    color: white;
    border-radius: 6px;
    padding: 6px 10px;
    text-align: center;
    font-weight: bold;
    margin-right: 10px;
}

.notification .date div {
    font-size: 14px;
}

.notification .content {
    flex-grow: 1;
}

.notification .type {
    color: #0074cc;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 4px;
    display: inline-block;
    text-decoration: none;
}

.notification .desc {
    font-size: 14px;
    color: #333;
}

.notification .close-btn {
    color: red;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Statistics Dashboard */
.stats-dashboard {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.stats-header h3 {
    color: #1a3e72;
    font-size: clamp(14px, 1.2vw, 16px);
    margin-bottom: 8px;
}

.stats-subtitle {
    color: #666;
    font-size: clamp(12px, 1.1vw, 14px);
    margin-bottom: 5px;
}

.stats-label {
    color: #1a3e72;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(26, 62, 114, 0.1);
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stats-card {
    background: white;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.summary-card .stat-item {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 14px;
}

.stat-value {
    font-weight: 600;
    color: #1a3e72;
    cursor: pointer;
}

.chart-card h4 {
    color: #1a3e72;
    margin-bottom: 15px;
    font-size: 15px;
}

.chart-container {
    height: 150px;
    margin-bottom: 15px;
}

.chart-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.data-item {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.data-item span:first-child {
    margin-right: 8px;
    color: #666;
}

.data-value {
    font-weight: 600;
    color: #1a3e72;
    cursor: pointer;
}

.data-item::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 2px;
    background: var(--color);
}

/* Slider Section */
.slider-section {
    max-width: 800px; /* Reduced width */
    margin: 25px auto;
    /* border-radius: 12px; */
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 400px; /* Slightly reduced height */
    position: relative;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9); /* Subtle darkening for better text contrast */
    transition: transform 0.5s ease;
}

.slide:hover img{
    transform: scale(1.02); /* Slight zoom effect on hover */
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 25px;
    text-align: center;
}

.slide-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5)
}

.slide-caption p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 25px;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    color: #1a3e72;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

/* Quick Links Section */
.quick-links-section {
    margin: 25px 0;
    border-radius: 8px;
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #1a3e72;
    font-size: clamp(24px, 3vw, 32px);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #ffcc00;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.quick-links-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.quick-link-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    color: #1a3e72;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 62, 114, 0.1);
}

.quick-link-btn:hover {
    background-color: #1a3e72;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 62, 114, 0.2);
}

.quick-link-btn i {
    font-size: 20px;
    color: #ffcc00;
    transition: color 0.3s;
}

.quick-link-btn:hover i {
    color: white;
}

.quick-link-btn span {
    font-weight: 500;
    font-size: 15px;
}

/* Footer */
.footer {
    margin-top: 50px;
    border-top: 1px solid rgba(26, 62, 114, 0.1);
    padding: 40px 0 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: #1a3e72;
    margin-bottom: 25px;
    font-size: clamp(18px, 1.5vw, 20px);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #ffcc00;
    bottom: 0;
    left: 0;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-badge img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffcc00;
}

.footer-badge span {
    font-weight: 600;
    color: #1a3e72;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #ffcc00;
    transform: translateX(5px);
}

.footer-links a i {
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-btn {
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-btn.facebook { background: #3b5998; }
.social-btn.twitter { background: #1da1f2; }
.social-btn.linkedin { background: #0077b5; }
.social-btn.youtube { background: #ff0000; }

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-card {
    background: rgba(255, 204, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #ffcc00;
}

.contact-card .contact-item {
    margin-bottom: 15px;
    color: #1a3e72;
}

.contact-card .contact-item:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    background: rgba(26, 62, 114, 0.9);
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 20px;
}

.footer-bottom .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.footer-bottom .footer-links a:hover {
    color: #ffcc00;
    transform: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .top-bar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo-section {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .nav-container {
        padding: 15px 0;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        padding: 12px 15px;
    }
    
    .dashboard-container {
        flex-direction: column;
    }
    
    .notifications-container {
        width: 100%;
    }
    
    .slider {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .slider {
        height: 300px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .slider {
        height: 250px;
    }
    
    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom .footer-links {
        justify-content: center;
    }
    
    .quick-links-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
