/* 
   About Section CSS Styles
   Nashik Cambridge School Website
   Styles for About Us, Chairman's Desk, Facilities, ICT Infrastructure pages
*/

:root {
    /* Original color variables */
    --mountain-brown: #553231;
    --water-blue: #597C9E;
    --olive-green: #8DA05B;
    --premium-white: #F8F5F2;
    --golden-brown: #EAAD3D;
    --dark-navy: #1A112E;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition-premium: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --section-spacing: 120px;
    
    /* Leadership.html theme colors */
    --mountain-darker: #553231;
    --mountain: #6A3E3D;
    --mountain-lighter: #886564;
    --water-darker: #26496B;
    --water: #305B86;
    --water-lighter: #597C9E;
    --sun-darker: #B77A0A;
    --sun: #E5990C;
    --sun-lighter: #EAAD3D;
    --plant-darker: #5A6D28;
    --plant: #718832;
    --plant-lighter: #8DA05B;
    --monotone-dark: #1A112E;
    --monotone-light: #F3E8D3;
}

/* Progress Bar - Updated styling */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(to right, var(--sun), var(--water));
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Hero Section - Updated styling */
.hero-section {
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--premium-white);
 
    background-color: var(--monotone-dark);  /* Dark elegant color for a sophisticated look */
}
    overflow: hidden;
}

.chairman-hero {
  background-color: var(--monotone-dark); 
}

.facilities-hero {
background-color: #6A3E3D; 
   
}

.affiliation-hero {
    background: linear-gradient(45deg, rgba(38, 73, 107, 0.9), rgba(89, 124, 158, 0.7)), 
                url('https://www.ncsnskedu.in/images/slider/629180c2b06aeWhatsApp%20Image%202022-05-28%20at%208.51.56%20AM.jpeg') center/cover;
}

.ict-hero {
    background: linear-gradient(45deg, rgba(38, 73, 107, 0.9), rgba(89, 124, 158, 0.7)), 
                url('https://www.ncsnskedu.in/images/activities_imgs/63290dcd30adfDSC05063.JPG') center/cover;
}

/* Section Titles - Updated styling */
.section-title .subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sun);
    margin-bottom: 15px;
    display: block;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--mountain-brown);
    margin-bottom: 20px;
    position: relative;
}

.section-title.text-center h2:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--sun);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--dark-navy);
    opacity: 0.85;
    line-height: 1.6;
}

/* Image Stack */
.image-stack {
    position: relative;
    margin-bottom: 30px;
}

.image-stack__item {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.image-stack__item--top {
    width: 85%;
    z-index: 1;
    position: relative;
}

.image-stack__item--bottom {
    width: 70%;
    position: absolute;
    top: 30%;
    right: 0;
    z-index: 2;
}

/* Vision & Mission Cards - Updated styling */
.mission-card, .vision-card {
    padding: 30px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-premium);
    height: 100%;
    border-left: 3px solid transparent;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-card:hover {
    border-left: 3px solid var(--water);
}

.vision-card:hover {
    border-left: 3px solid var(--sun);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(48, 91, 134, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-premium);
}

.mission-card .icon-box i {
    color: var(--water);
}

.vision-card .icon-box i {
    color: var(--sun);
}

.mission-card:hover .icon-box {
    background: var(--water);
}

.vision-card:hover .icon-box {
    background: var(--sun);
}

/* Timeline - Updated styling */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: var(--water);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: calc(50% - 40px);
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition-premium);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.timeline-item.left .timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--water);
    z-index: 1;
}

.timeline-item.right .timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--water);
    z-index: 1;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #fff;
    z-index: 2;
}

.timeline-item.left .timeline-content::before {
    right: -46px;
}

.timeline-item.right .timeline-content::before {
    left: -46px;
}

.timeline-item.left .timeline-content::before, 
.timeline-item.right .timeline-content::before {
    background: #fff;
}

.date {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--water);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-navy);
}

/* Values Cards - Updated styling */
.value-card {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition-premium);
    height: 100%;
    border-top: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--sun);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(229, 153, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-premium);
}

.value-card:hover .value-icon {
    background: var(--sun);
}

.value-icon i {
    font-size: 28px;
    color: var(--sun);
    transition: var(--transition-premium);
}

.value-card:hover .value-icon i {
    color: white;
}

/* Chairman's Desk Page Styles - Updated styling */
.chairman-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.chairman-image-container {
    position: relative;
    background: var(--water);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.chairman-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.chairman-info {
    text-align: center;
}

.chairman-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 5px;
}

.chairman-info p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.signature {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: var(--sun);
    margin-top: 20px;
}

.chairman-message {
    padding: 40px;
    position: relative;
}

.message-quote {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 64px;
    color: rgba(182, 141, 64, 0.1);
}

.message-content {
    position: relative;
    z-index: 1;
}

.message-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--mountain-brown);
}

.greeting {
    font-weight: 600;
    margin-bottom: 20px;
}

.message-highlight {
    padding: 20px;
    margin: 30px 0;
    background: rgba(48, 91, 134, 0.05);
    border-left: 4px solid var(--water);
    font-style: italic;
}

.closing {
    margin-top: 30px;
    font-style: italic;
}

/* Philosophy cards - Updated styling */
.philosophy-card {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-premium);
    height: 100%;
    border-left: 3px solid transparent;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--water);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: rgba(48, 91, 134, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-premium);
}

.philosophy-card:hover .philosophy-icon {
    background: var(--water);
}

.philosophy-icon i {
    font-size: 24px;
    color: var(--water);
    transition: var(--transition-premium);
}

.philosophy-card:hover .philosophy-icon i {
    color: white;
}

/* Initiative cards - Updated styling */
.initiative-card {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition-premium);
    height: 100%;
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.initiative-icon {
    width: 70px;
    height: 70px;
    background: rgba(229, 153, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-premium);
}

.initiative-card:hover .initiative-icon {
    background: var(--sun);
}

.initiative-icon i {
    font-size: 28px;
    color: var(--sun);
    transition: var(--transition-premium);
}

.initiative-card:hover .initiative-icon i {
    color: white;
}

/* CBSE Affiliation Reports Page Styles */
.document-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-premium);
    height: 100%;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.document-header {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: var(--water-blue);
    color: white;
}

.document-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.document-icon i {
    font-size: 20px;
    color: white;
}

.document-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin: 0;
}

.document-info {
    padding: 20px 30px;
}

.document-meta {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.document-meta li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.document-meta li i {
    margin-right: 10px;
    color: var(--golden-brown);
}

.document-actions {
    display: flex;
    padding: 0 30px 30px;
    gap: 10px;
}

.btn-view, .btn-download {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-premium);
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-view {
    background: var(--water-blue);
    color: white;
}

.btn-view:hover {
    background: #1d4d6d;
}

.btn-download {
    background: var(--golden-brown);
    color: white;
}

.btn-download:hover {
    background: #a07a36;
}

.btn-view i, .btn-download i {
    margin-right: 8px;
}

/* PDF Modal */
.pdf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pdf-modal.active {
    opacity: 1;
    visibility: visible;
}

.pdf-modal-content {
    width: 90%;
    max-width: 1000px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pdf-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--mountain-brown);
    color: white;
}

.pdf-modal-header h3 {
    margin: 0;
    font-size: 20px;
}

.pdf-close-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-premium);
}

.pdf-close-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.pdf-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.pdf-nav-btn {
    padding: 8px 15px;
    border-radius: 4px;
    border: none;
    background: var(--water-blue);
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-premium);
}

.pdf-nav-btn:hover {
    background: #1d4d6d;
}

.pdf-nav-btn i {
    margin: 0 5px;
}

#pageInfo {
    font-size: 14px;
    color: #555;
}

.zoom-select {
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
    cursor: pointer;
}

.pdf-container {
    padding: 20px;
    display: flex;
    justify-content: center;
    background: #f9f9f9;
    max-height: 70vh;
    overflow-y: auto;
}

#pdfCanvas {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section - Updated styling */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: white;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition-premium);
}

.faq-question:hover {
    background: rgba(229, 153, 12, 0.05);
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin: 0;
    color: var(--water-darker);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-premium);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-premium);
}

.faq-answer p {
    padding-bottom: 20px;
    margin: 0;
}

/* Facilities Page Styles */
.facility-card {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition-premium);
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.facility-icon {
    width: 70px;
    height: 70px;
    background: rgba(42, 92, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-premium);
    position: relative;
    z-index: 2;
}

.facility-card.active .facility-icon,
.facility-card:hover .facility-icon {
    background: var(--water-blue);
}

.facility-icon i {
    font-size: 28px;
    color: var(--water-blue);
    transition: var(--transition-premium);
}

.facility-card.active .facility-icon i,
.facility-card:hover .facility-icon i {
    color: white;
}

.facility-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--mountain-brown);
    position: relative;
    z-index: 2;
}

.facility-card p {
    position: relative;
    z-index: 2;
    transition: var(--transition-premium);
}

.facility-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition-premium);
}

.facility-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-card.active .facility-hover,
.facility-card:hover .facility-hover {
    opacity: 0.1;
}

.tour-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tour-image-container {
    position: relative;
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-premium);
}

.tour-card:hover .tour-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.tour-play-btn {
    width: 80px;
    height: 80px;
    background: var(--golden-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: var(--transition-premium);
}

.tour-play-btn:hover {
    transform: scale(1.1);
    background: var(--water-blue);
    color: white;
}

.tour-caption {
    padding: 15px;
    text-align: center;
    background: #fff;
}

.tour-caption p {
    margin: 0;
    font-weight: 500;
}

.testimonial-card {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition-premium);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    margin-bottom: 20px;
    color: var(--golden-brown);
    font-size: 24px;
}

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

.author-name {
    font-weight: 600;
    color: var(--mountain-brown);
}

.author-relation {
    font-size: 14px;
    color: #666;
}

/* ICT Infrastructure Page Styles */
.image-with-overlay {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transition: var(--transition-premium);
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tech-icon {
    width: 40px;
    height: 40px;
    background: var(--golden-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-text {
    font-weight: 600;
    font-size: 20px;
}

.ict-table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ict-table {
    margin: 0;
}

.ict-table thead {
    background: var(--water-blue);
    color: white;
}

.ict-table th {
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    border: none;
}

.ict-table td {
    padding: 15px 20px;
    vertical-align: middle;
    border-color: #eee;
}

.table-row {
    transition: var(--transition-premium);
}

.table-row.active,
.table-row:hover {
    background-color: rgba(42, 92, 125, 0.05);
}

.ict-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ict-icon {
    width: 40px;
    height: 40px;
    background: rgba(42, 92, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ict-icon i {
    color: var(--water-blue);
    font-size: 16px;
}

.ict-name {
    font-weight: 600;
    color: var(--mountain-brown);
}

.benefit-card {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-premium);
    height: 100%;
    border-top: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--sun);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(182, 141, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-premium);
}

.benefit-card:hover .benefit-icon {
    background: var(--golden-brown);
}

.benefit-icon i {
    font-size: 24px;
    color: var(--golden-brown);
    transition: var(--transition-premium);
}

.benefit-card:hover .benefit-icon i {
    color: white;
}

.program-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-premium);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.program-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(42, 92, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-premium);
}

.program-card:hover .program-icon {
    background: var(--water-blue);
}

.program-icon i {
    font-size: 24px;
    color: var(--water-blue);
    transition: var(--transition-premium);
}

.program-card:hover .program-icon i {
    color: white;
}

.program-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--mountain-brown);
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.program-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.program-features li i {
    margin-right: 8px;
    color: var(--golden-brown);
}

.future-plans-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.future-plans-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #eee;
}

.future-plans-list li:last-child {
    border-bottom: none;
}

.future-plans-list li i {
    margin-right: 10px;
    color: var(--golden-brown);
}

.future-tech-image {
    position: relative;
}

.tech-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--golden-brown);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-weight: 600;
}

/* CTA Section - Updated styling */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(45deg, var(--water-darker), var(--water));
    color: var(--premium-white);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sun) 25%, transparent 25%) -50px 0,
                linear-gradient(225deg, var(--sun) 25%, transparent 25%) -50px 0,
                linear-gradient(315deg, var(--sun) 25%, transparent 25%),
                linear-gradient(45deg, var(--sun) 25%, transparent 25%);
    background-size: 100px 100px;
    background-color: transparent;
    opacity: 0.05;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    opacity: 0.9;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: var(--sun);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-premium);
    border: none;
    cursor: pointer;
}

.btn-premium:hover {
    background: #fff;
    color: var(--sun-darker);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-premium i {
    margin-left: 10px;
    transition: var(--transition-premium);
}

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

/* Footer */
.site-footer {
    background: var(--mountain-brown);
    color: var(--premium-white);
    padding: 80px 0 0;
}

.footer-logo {
    height: 60px;
}

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

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

.social-icons a:hover {
    background: var(--golden-brown);
    transform: translateY(-3px);
}

.site-footer h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.site-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--golden-brown);
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-premium);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 10px;
    color: var(--golden-brown);
    transition: var(--transition-premium);
}

.footer-links a:hover {
    color: var(--golden-brown);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    margin-right: 15px;
    color: var(--golden-brown);
}

.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--golden-brown);
    color: white;
    cursor: pointer;
    transition: var(--transition-premium);
}

.newsletter-form button:hover {
    background: var(--water-blue);
}

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

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Back to top - Updated styling */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--sun);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-premium);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--water);
    transform: translateY(-5px);
    color: white;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .image-stack__item--bottom {
        width: 80%;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-item.left, .timeline-item.right {
        left: 0;
    }
    
    .timeline-item.left .timeline-content::after,
    .timeline-item.right .timeline-content::after {
        left: -40px;
        right: auto;
    }
    
    .timeline-item.left .timeline-content::before,
    .timeline-item.right .timeline-content::before {
        left: -36px;
        right: auto;
    }
    
    .chairman-image-container {
        padding-bottom: 60px;
    }
    
    .chairman-message {
        padding: 30px;
    }
    
    .program-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .program-features li {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .value-card, .philosophy-card, .initiative-card, .facility-card, .benefit-card {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .document-header, .document-info {
        padding: 15px 20px;
    }
    
    .document-actions {
        flex-direction: column;
        padding: 0 20px 20px;
    }
    
    .document-icon {
        width: 40px;
        height: 40px;
    }
    
    .pdf-modal-content {
        width: 95%;
    }
    
    .pdf-controls {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tech-text {
        font-size: 16px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .breadcrumb-custom {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .ict-table th, .ict-table td {
        padding: 10px 15px;
    }
    
    .ict-name {
        font-size: 14px;
    }
}
