/* style.css */
:root {
   --primary-color: linear-gradient(
        90deg,
        #FF9933 0%,
        #FFFFFF 50%,
        #138808 100%
    );
    --secondary-color: #FF9933;
    --accent-color: #138808;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --nav-hover: #f0f0f0;
    --nav-active: #e6e6e6;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(
        90deg,
        #FF9933 0%,
        #FFFFFF 50%,
        #138808 100%
    );
    color: #000;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 8px;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Social Media Icons */
.social-icons a {
    font-size: 16px;
    margin: 0 6px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

/* Header */
.main-header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.emblem {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    margin: 0 auto;
}

.emblem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ministry-title h1 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    text-align: center;
    line-height: 1.2;
}

.ministry-title p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
    text-align: center;
}

/* Enhanced Navigation */
.main-nav {
    background: var(--primary-color);
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF9933, #138808);
}

.main-nav .navbar-nav {
    width: 100%;
    justify-content: center;
}

.main-nav .nav-item {
    margin: 0 5px;
    position: relative;
}

.main-nav .nav-link {
    color: #000;
    padding: 12px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.main-nav .nav-link span {
    margin-left: 8px;
}

.main-nav .nav-icon {
    font-size: 16px;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.main-nav .nav-link:hover {
    background-color: rgba(255,255,255,0.2);
    color: #000;
    transform: translateY(-2px);
}

.main-nav .nav-link:hover::after {
    width: 80%;
}

.main-nav .nav-link.active {
    background-color: rgba(255,255,255,0.3);
    color: #000;
    font-weight: 600;
}

.main-nav .nav-link.active::after {
    width: 80%;
}

/* Remove dropdown arrows */
.main-nav .dropdown-toggle::after {
    display: none !important;
}

/* Enhanced Dropdown Menu */
.main-nav .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    background-color: white;
    min-width: 200px;
    animation: fadeInDown 0.3s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-nav .dropdown-item {
    padding: 10px 20px;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.main-nav .dropdown-item .dropdown-icon {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 14px;
}

.main-nav .dropdown-item:hover {
    background-color: var(--nav-hover);
    color: #000;
    padding-left: 25px;
}

.main-nav .dropdown-item.active {
    background-color: var(--nav-active);
    color: var(--secondary-color);
    font-weight: 600;
}

/* Mobile Menu Button */
.navbar-toggler {
    border: none;
    padding: 4px 6px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .main-nav .navbar-nav {
        background-color: white;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-top: 10px;
    }
    
    .main-nav .nav-link {
        color: #333;
        border-bottom: 1px solid #eee;
        padding: 12px 15px;
    }
    
    .main-nav .nav-link:hover {
        background-color: var(--nav-hover);
        transform: none;
    }
    
    .main-nav .nav-link.active {
        background-color: var(--nav-active);
    }
    
    .main-nav .dropdown-menu {
        box-shadow: none;
        background-color: #f8f9fa;
        margin-top: 0;
        border-radius: 0;
        padding-left: 20px;
    }
    
    .main-nav .nav-link::after {
        display: none;
    }
    
    /* Also remove dropdown arrows in mobile view */
    .main-nav .dropdown-toggle::after {
        display: none !important;
    }
}
/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.slide-dot.active {
    background-color: white;
}

/* Welcome Section */
.welcome-section {
    background-color: var(--bg-light);
    padding: 30px 0;
}

.welcome-content {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.welcome-content h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.welcome-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.welcome-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.welcome-content .highlight {
    color: var(--primary-color);
    font-weight: bold;
}

/* News Section */
.news-section {
    padding: 30px 0;
}

.section-title {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.news-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: box-shadow 0.3s;
}

.news-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.news-date {
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: bold;
}

.news-title {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: bold;
    margin: 8px 0;
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-title a:hover {
    color: var(--secondary-color);
}

.news-card p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Associates Section */
.associates-section {
    background-color: var(--bg-light);
    padding: 30px 0;
}

.associate-logo {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.associate-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.associate-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.associate-logo:hover img {
    filter: grayscale(0%);
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: #6c757d; /* grey */
    padding: 30px 0 15px;
}

.footer-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    color: #6c757d;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #495057; /* darker grey on hover */
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.2);
    margin-top: 20px;
    padding-top: 15px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004080 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}

.page-header p {
    font-size: 16px;
    margin: 10px 0 0;
    opacity: 0.9;
}

/* Chairman Message Section */
.chairman-section {
    padding: 50px 0;
}

.chairman-profile {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 50px;
}

.chairman-photo {
    position: relative;
    background-image: url('https://ilcsindia.in/tri.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chairman-photo::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.photo-frame {
    width: 250px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 8px solid white;
    position: relative;
    z-index: 1;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chairman-info {
    padding: 40px;
}

.chairman-name {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.chairman-title {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.chairman-bio {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 0;
}

.chairman-bio .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* Message Content */
.message-section {
    padding: 30px 0 50px;
}

.message-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.message-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--bg-light);
    font-family: Georgia, serif;
    z-index: 0;
}

.message-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.message-text p {
    margin-bottom: 20px;
}

.message-text p:last-child {
    margin-bottom: 0;
}

.message-signature {
    margin-top: 30px;
    text-align: right;
}

.signature-name {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.signature-title {
    font-size: 16px;
    color: var(--text-light);
}

/* Vision Cards */
.vision-section {
    background-color: var(--bg-light);
    padding: 50px 0;
}

.vision-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.vision-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vision-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vision-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
    .top-bar {
        text-align: center;
    }
    .top-bar .row > div {
        margin-bottom: 10px;
    }
    .social-icons {
        margin-top: 10px;
    }
    .hero-slider {
        height: 300px;
    }
    .slide-content h2 {
        font-size: 18px;
    }
    .slide-content p {
        font-size: 12px;
    }
    .welcome-content {
        padding: 20px;
    }
    .welcome-content h2 {
        font-size: 20px;
    }
    .welcome-content p {
        font-size: 13px;
    }
    .associate-logo img {
        max-height: 60px;
    }
    .page-header {
        padding: 30px 0;
    }
    .page-header h1 {
        font-size: 24px;
    }
    .chairman-section {
        padding: 30px 0;
    }
    .photo-frame {
        width: 200px;
        height: 240px;
    }
    .chairman-info {
        padding: 30px 25px;
    }
    .chairman-name {
        font-size: 24px;
    }
    .chairman-title {
        font-size: 16px;
    }
    .message-content {
        padding: 30px 25px;
    }
    .message-text {
        font-size: 16px;
    }
    .vision-section {
        padding: 30px 0;
    }
}

@media (max-width: 576px) {
    .ministry-title h1 {
        font-size: 16px;
    }
    .ministry-title p {
        font-size: 12px;
    }
    .hero-slider {
        height: 200px;
    }
    .slide-content {
        padding: 15px;
    }
    .slide-content h2 {
        font-size: 16px;
    }
    .slide-content p {
        font-size: 11px;
    }
    .welcome-content h2 {
        font-size: 18px;
    }
    .welcome-content p {
        font-size: 12px;
    }
    .news-title {
        font-size: 14px;
    }
    .news-card p {
        font-size: 12px;
    }
    .associate-logo img {
        max-height: 50px;
    }
    .footer-title {
        font-size: 14px;
    }
    .footer-links a {
        font-size: 12px;
    }
    .page-header h1 {
        font-size: 20px;
    }
    .chairman-photo {
        padding: 20px;
    }
    .photo-frame {
        width: 180px;
        height: 216px;
    }
    .chairman-info {
        padding: 25px 20px;
    }
    .chairman-name {
        font-size: 20px;
    }
    .chairman-title {
        font-size: 14px;
    }
    .chairman-bio {
        font-size: 14px;
    }
    .message-content {
        padding: 25px 20px;
    }
    .message-text {
        font-size: 14px;
    }
    .message-content::before {
        font-size: 60px;
    }
    .signature-name {
        font-size: 18px;
    }
    .vision-icon {
        font-size: 30px;
    }
    .vision-title {
        font-size: 18px;
    }
    .vision-text {
        font-size: 14px;
    }
}

/* Add these styles to your existing style.css file */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('https://picsum.photos/seed/contact/1920/400');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 50px 0;
}

.section-title {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-info {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-info-text {
    flex: 1;
}

.contact-info-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-info-text p {
    font-size: 14px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control, .form-select {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 51, 102, 0.25);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Form Submission Message */
.form-message {
    display: none;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Branches Section */
.branches-section {
    padding: 50px 0;
    background-color: var(--bg-light);
}

.branch-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.branch-card:hover {
    transform: translateY(-5px);
}

.branch-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.branch-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.branch-info p {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
}

.branch-info p i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.branch-info p:last-child {
    margin-bottom: 0;
}

/* Map Section */
.map-section {
    padding: 50px 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
    background-color: var(--bg-light);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.accordion-header {
    border-radius: 10px;
}

.accordion-button {
    background-color: white;
    color: var(--primary-color);
    font-weight: 500;
    padding: 15px 20px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003366'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile Specific Adjustments for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 40px 0;
    }
    .contact-hero h1 {
        font-size: 26px;
    }
    .contact-hero p {
        font-size: 16px;
    }
    .section-title {
        font-size: 24px;
    }
    .contact-info {
        margin-bottom: 30px;
    }
    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 30px 0;
    }
    .contact-hero h1 {
        font-size: 22px;
    }
    .contact-hero p {
        font-size: 14px;
    }
    .section-title {
        font-size: 20px;
    }
    .contact-info h3 {
        font-size: 18px;
    }
    .contact-info-text h4 {
        font-size: 14px;
    }
    .contact-info-text p {
        font-size: 13px;
    }
    .map-container {
        height: 250px;
    }
}
/* Add these styles to your existing style.css file */

/* Downloads Section */
.downloads-section {
    padding: 50px 0;
}

.download-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.download-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.download-card h5 {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.download-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-download {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-download:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-download i {
    margin-right: 8px;
}

/* Mobile Specific Adjustments for Downloads Page */
@media (max-width: 768px) {
    .downloads-section {
        padding: 30px 0;
    }
    .download-card {
        padding: 20px;
    }
    .download-card i {
        font-size: 40px;
    }
    .download-card h5 {
        font-size: 18px;
    }
    .download-card p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .download-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    .download-card i {
        font-size: 36px;
    }
    .download-card h5 {
        font-size: 16px;
    }
    .download-card p {
        font-size: 14px;
    }
}
/* Add these styles to your existing style.css file */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004080 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}

.page-header p {
    font-size: 16px;
    margin: 10px 0 0;
    opacity: 0.9;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-right::after {
    left: -16px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.timeline-date {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.timeline-title {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.timeline-description {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

.timeline-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 15px 0;
}

/* Milestone Section */
.milestone-section {
    background-color: var(--bg-light);
    padding: 50px 0;
    margin-top: 50px;
}

.milestone-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.milestone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.milestone-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.milestone-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.milestone-text {
    font-size: 16px;
    color: var(--text-dark);
}

/* Mobile Specific Adjustments for Organization History Page */
@media (max-width: 768px) {
    .page-header {
        padding: 30px 0;
    }
    .page-header h1 {
        font-size: 24px;
    }
    /* Timeline adjustments for mobile */
    .timeline::after {
        left: 31px;
    }
    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-container::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }
    .timeline-left::after, .timeline-right::after {
        left: 21px;
    }
    .timeline-right {
        left: 0%;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 20px;
    }
    .timeline-content {
        padding: 15px 20px;
    }
    .timeline-title {
        font-size: 18px;
    }
    .timeline-description {
        font-size: 14px;
    }
    .milestone-icon {
        font-size: 30px;
    }
    .milestone-number {
        font-size: 28px;
    }
    .milestone-text {
        font-size: 14px;
    }
}
/* Add these styles to your existing style.css file */

/* Gallery specific styles */
:root {
    --card: #ffffff;
    --muted: #6b7280;
    --gap: 14px;
    --radius: 10px;
    --accent: #2563eb;
}

.container-inner { 
    width: min(1200px, 96%); 
    margin: 24px auto; 
}

.gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap);
}

@media (max-width: 1100px) { 
    .gallery { 
        grid-template-columns: repeat(4, 1fr); 
    } 
}

@media (max-width: 900px) {  
    .gallery { 
        grid-template-columns: repeat(3, 1fr); 
    } 
}

@media (max-width: 600px) {  
    .gallery { 
        grid-template-columns: repeat(2, 1fr); 
    } 
}

@media (max-width: 420px) {  
    .gallery { 
        grid-template-columns: repeat(1, 1fr); 
    } 
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.04), 0 6px 18px rgba(16, 24, 40, 0.06);
    transition: transform .18s ease, box-shadow .18s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08); 
}

.card img { 
    width: 100%; 
    height: 160px; 
    object-fit: cover; 
    display: block; 
    background: linear-gradient(90deg, #eee, #ddd); 
}

.caption { 
    padding: 10px 12px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 8px; 
}

.title { 
    font-size: 0.92rem; 
    color: #111827; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}

.meta { 
    font-size: 0.8rem; 
    color: var(--muted); 
}

.pagination-wrap { 
    margin-top: 22px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 12px; 
    padding: 18px 0; 
    flex-wrap: wrap; 
}

.pagination { 
    display: flex; 
    gap: 6px; 
    align-items: center; 
    flex-wrap: wrap; 
    justify-content: center; 
}

.page-btn {
    min-width: 40px; 
    height: 40px; 
    border-radius: 8px; 
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: white; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 600;
    cursor: pointer; 
    padding: 6px 10px; 
    font-size: 0.95rem; 
    color: #0f172a; 
    text-decoration: none;
}

.page-btn[aria-disabled="true"] { 
    opacity: 0.45; 
    cursor: not-allowed; 
    pointer-events: none; 
}

.page-btn.active { 
    background: var(--accent); 
    color: white; 
    border-color: transparent; 
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.12); 
}

.dots { 
    padding: 8px; 
    color: var(--muted); 
}

.empty {
    text-align: center; 
    padding: 60px 20px; 
    color: var(--muted);
}

/* Lightbox */
.lightbox {
    position: fixed; 
    inset: 0; 
    display: none; 
    align-items: center; 
    justify-content: center; 
    background: rgba(2, 6, 23, 0.7); 
    z-index: 1000; 
    padding: 20px;
}

.lightbox.show { 
    display: flex; 
}

.lightbox img { 
    max-width: 90%; 
    max-height: 90%; 
    border-radius: 8px; 
    box-shadow: 0 10px 40px rgba(2, 6, 23, 0.5); 
}

.lb-close {
    position: absolute; 
    top: 18px; 
    right: 18px; 
    background: white; 
    border-radius: 8px; 
    padding: 8px 10px; 
    cursor: pointer; 
    font-weight: 700; 
    border: none;
}

/* Add these styles to your existing style.css file */

/* Video gallery specific styles (mirrors image gallery) */
:root{
    --card: #ffffff;
    --muted: #6b7280;
    --gap: 14px;
    --radius: 10px;
    --accent: #2563eb;
}

.container-inner { 
    width: min(1200px, 96%); 
    margin: 24px auto; 
}

.gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap);
}

@media (max-width: 1100px) { 
    .gallery { 
        grid-template-columns: repeat(4, 1fr); 
    } 
}

@media (max-width: 900px) {  
    .gallery { 
        grid-template-columns: repeat(3, 1fr); 
    } 
}

@media (max-width: 600px) {  
    .gallery { 
        grid-template-columns: repeat(2, 1fr); 
    } 
}

@media (max-width: 420px) {  
    .gallery { 
        grid-template-columns: repeat(1, 1fr); 
    } 
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.04), 0 6px 18px rgba(16, 24, 40, 0.06);
    transition: transform .18s ease, box-shadow .18s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08); 
}

/* video tile thumb: show a small poster-like area */
.card .thumb {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #eee, #ddd);
    position: relative;
}

.card video {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: transform .12s;
}

.card:hover .play-overlay { 
    transform: scale(1.06); 
}

.caption { 
    padding: 10px 12px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 8px; 
}

.title { 
    font-size: 0.92rem; 
    color: #111827; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}

.meta { 
    font-size: 0.8rem; 
    color: var(--muted); 
}

.pagination-wrap { 
    margin-top: 22px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 12px; 
    padding: 18px 0; 
    flex-wrap: wrap; 
}

.pagination { 
    display: flex; 
    gap: 6px; 
    align-items: center; 
    flex-wrap: wrap; 
    justify-content: center; 
}

.page-btn {
    min-width: 40px; 
    height: 40px; 
    border-radius: 8px; 
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: white; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 600;
    cursor: pointer; 
    padding: 6px 10px; 
    font-size: 0.95rem; 
    color: #0f172a; 
    text-decoration: none;
}

.page-btn[aria-disabled="true"] { 
    opacity: 0.45; 
    cursor: not-allowed; 
    pointer-events: none; 
}

.page-btn.active { 
    background: var(--accent); 
    color: white; 
    border-color: transparent; 
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.12); 
}

.dots { 
    padding: 8px; 
    color: var(--muted); 
}

.empty { 
    text-align: center; 
    padding: 60px 20px; 
    color: var(--muted); 
}

/* Lightbox video player */
.lightbox {
    position: fixed; 
    inset: 0; 
    display: none; 
    align-items: center; 
    justify-content: center; 
    background: rgba(2, 6, 23, 0.85); 
    z-index: 1000; 
    padding: 20px;
}

.lightbox.show { 
    display: flex; 
}

.lightbox .player {
    width: min(1100px, 96%);
    max-height: 88vh;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.lb-close {
    position: absolute; 
    top: 18px; 
    right: 18px; 
    background: white; 
    border-radius: 8px; 
    padding: 8px 10px; 
    cursor: pointer; 
    font-weight: 700; 
    border: none;
}

.video-info { 
    padding: 10px 12px; 
    color: #fff; 
    background: rgba(0, 0, 0, 0.25); 
    font-size: 14px; 
}

/* Add these styles to your existing style.css file */

/* Team Section */
.team-section {
    text-align: center;
    padding: 50px 20px;
}

.team-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 cards in a row */
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .team-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-container {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image-wrapper {
    width: 200px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid #eee;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Error state for missing images */
.team-image-wrapper.image-error::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image-wrapper.image-error::after {
    content: "Image not available";
    position: absolute;
    color: #999;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
}

.team-image-wrapper.image-error img {
    display: none;
}

.team-card h3 {
    margin: 10px 0 5px;
    font-size: 1.2em;
    color: var(--primary-color);
}

.team-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95em;
}

/* Mobile Specific Adjustments for Team Page */
@media (max-width: 768px) {
    .team-section {
        padding: 30px 15px;
    }
    .team-section h2 {
        font-size: 1.8em;
    }
    .team-image-wrapper {
        width: 180px;
        height: 270px;
    }
    .team-card h3 {
        font-size: 1.1em;
    }
    .team-card p {
        font-size: 0.9em;
    }
}

@media (max-width: 576px) {
    .team-section {
        padding: 20px 10px;
    }
    .team-section h2 {
        font-size: 1.6em;
    }
    .team-image-wrapper {
        width: 160px;
        height: 240px;
    }
    .team-card h3 {
        font-size: 1em;
    }
    .team-card p {
        font-size: 0.85em;
    }
}