 /* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f9f9f9;
}

/* Header Styles */
header {
    background-color: #ffffff;
    color: black;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Navigation Submenus */
.has-submenu {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 0 0 5px 5px;
    padding: 10px 0;
}

.submenu li {
    margin: 0;
    padding: 0;
}

.submenu a {
    padding: 10px 20px;
    color: #333;
    display: block;
    transition: background-color 0.3s;
}

.submenu a:hover {
    background-color: #f5f5f5;
    color: #3498db;
}

.dropdown-icon {
    margin-left: 5px;
    font-size: 0.8em;
    transition: transform 0.3s;
}

.signature {
    margin-top: 40px;
    font-style: italic;
}

.signature-name {
    font-weight: bold;
    font-size: 18px;
    color: #2c3e50;
}

/* Show submenu on hover */
.has-submenu:hover .submenu {
    display: block;
}

.has-submenu:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .has-submenu {
        position: static;
    }
    
    .submenu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .submenu a {
        padding: 8px 15px;
    }
    
    .dropdown-icon {
        float: right;
        margin-top: 5px;
    }
    
    /* Show submenu when parent is active */
    .has-submenu.active .submenu {
        display: block;
    }
    
    .has-submenu.active .dropdown-icon {
        transform: rotate(180deg);
    }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.logo-img {
    height: 50px;
    margin-right: 15px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: black;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

nav ul li a:hover {
    color: #3498db;
}

/* Image Slider/Carousel */
.slider {
    margin-top: 68px;
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    max-width: 500px;
    border-radius: 5px;
}

.slide-content h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.slider-nav button {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.slider-nav button.active {
    background-color: white;
}

/* About Us Section */
.about {
    padding: 3rem 0;
    background-color: #f5f5f5;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-text, .about-image, .courses2-image, .hero-image {
    flex: 1 1 300px;
    min-width: 300px;
}

.about-image {
    height: 300px;
    background-image: url('../assets/images/about_img2.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    order: 1;
}

.about-text {
    order: 2;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.courses2-image {
    height: 400px;
    background-image: url('../assets/images/courses2.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    order: 2;
}

/* Hero Section */
.hero {
    background-color: #6c757d;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-image {
    height: 300px;
    background-image: url('../assets/images/courses.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    order: 1;
}

.btn {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c0392b;
}

.btn-readmore {
  background-color: #999933;
  color: white; /* Text color */
  border: 1px solid #999933; /* Optional: Match border color */
}
.btn-readmore:hover {
  background-color: #888822; /* Darker shade on hover */
  color: white;
}

.course-list {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.course-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}


.director-message-header {
    padding: 20px 0;
    text-align: center;
}

.director-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}
.director-header h1 {
    font-weight: 700;
    color: #2c3e50;
}
.director-img {
    max-width: 200px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.director-message {
    text-align: left;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.director-name {
    color: #2c3e50;
    font-weight: 700;
    margin-top: 20px;
}
.director-title {
    color: #7f8c8d;
    font-style: italic;
}
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 30px 0;
    margin-top: 50px;
}
.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
        }
        
/* Features Section */
.features {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #f9f9f9;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.feature-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.feature-text {
    padding: 1.5rem;
}

.feature-card h3 {
    margin: 1rem 0;
    color: #2c3e50;
}

/* Footer */
footer {
    background-color: #999933;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

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

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

 /* Base Styles */
.info-booklet {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.info-booklet__title {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Download Link */
.info-booklet__download {
    display: block;
    text-align: center;
    margin: 15px 0;
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.info-booklet__download:hover {
    text-decoration: underline;
}

/* PDF Container (Responsive) */
.info-booklet__pdf-container {
    width: 100%;
    height: 0;
    padding-bottom: 141.42%; /* A4 aspect ratio (~1.414) */
    position: relative;
    margin: 20px 0;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* PDF Embed/Iframe */
.info-booklet__pdf-viewer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .info-booklet__pdf-container {
        padding-bottom: 56.25%; /* 16:9 for larger screens */
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .slide-content {
        left: 20px;
        bottom: 20px;
        max-width: 80%;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    nav.active {
        max-height: 500px;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .slider {
        height: 400px;
    }
    
    .about-content, .hero .about-content {
        flex-direction: column;
    }
    
    .about-image, .courses2-image, .hero-image {
        width: 100%;
        order: 1;
        margin-bottom: 2rem;
    }
    
    .about-text {
        order: 2;
    }
}

@media (max-width: 576px) {
    .slider {
        height: 300px;
        margin-top: 60px;
    }
    
    .slide-content {
        padding: 10px;
        left: 10px;
        bottom: 10px;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about h2 {
        font-size: 1.5rem;
    }
    
    .courses2-image{
        width: 60%;
        order: 1;
        margin-bottom: 2rem;
    }
}

/* Syllabus Page Specific Styles */
.page-banner {
    background-color: #999933;
    color: white;
    padding: 1rem 0;
    margin-top: 100px;
    border: none; 
    position: relative;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0);
}

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

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

.syllabus-intro {
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 16px;
}

.course-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.course-category {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.course-category h3 {
    color: #999933;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #999933;
}

.course-list {
    list-style-type: none;
}

.course-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.course-list li::before {
    content: "•";
    color: #999933;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.certificate-note {
    background: #f0f0f0;
    padding: 20px;
    border-left: 4px solid #999933;
    margin-top: 30px;
}

/* ALTEC Academy Specific Styles */
.academy-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 40px;
    margin: 30px 0;
}

.academy-header {
    text-align: center;
    margin-bottom: 40px;
}

.academy-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.academy-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    bottom: -10px;
    left: 20%;
    border-radius: 2px;
}

.academy-subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.academy-section {
    margin-bottom: 30px;
    padding: 20px;
    border-left: 4px solid #3498db;
    background-color: #f8fafc;
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.academy-section {
    margin-bottom: 30px;
    padding: 20px;
    border-left: 4px solid #3498db; /*#3498db*/
    background-color: #f8fafc;
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.academy-section:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.academy-section .section-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}


.directors-section {
    margin-bottom: 30px;
    padding: 20px;
    border-left: 0px solid #3498db;
    background-color: #f8fafc;
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.directors-section:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.directors-section .section-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}


.reading-section {
    margin-bottom: 30px;
    padding: 20px;
    border-left: 0px solid #3498db;
    background-color: #f8fafc;
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.reading-section:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.reading-section .section-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.reading-festival-image1 {
    height: 700px;
    background-image: url('../assets/images/reading_festival_poster_2024.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    order: 1;
}

.reading-festival-image2 {
    height: 700px;
    background-image: url('../assets/images/reading_festival_poster_2023.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    order: 1;
}

.reading-festival-image3 {
    height: 700px;
    background-image: url('../assets/images/reading_festival_poster_&_details.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    order: 1;
}

.highlight {
    background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 600;
}

.highlight-box {
            background-color: #f8f9fa;
            border-left: 4px solid #3498db;
            padding: 15px;
            margin: 20px 0;
        }
        .checklist {
            list-style-type: none;
            padding-left: 0;
        }
        .checklist li:before {
            content: "✅ ";
        }

.academy-footer {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #7f8c8d;
    border-top: 1px solid #eee;
    padding-top: 20px;
}



/* Unique Book Price List Styles - book-styles.css */
/* Color Theme: Deep Blue + Coral Accents */

.book-price-container {
    max-width: 800px;
    margin: 2rem auto;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(41, 52, 98, 0.1);
}

.book-price-header {
    color: #293462;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 10px;
}

.book-price-header:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #f76e11;
}

.book-price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 2rem;
    overflow: hidden;
}

.book-price-table thead th {
    background-color: #293462;
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.book-price-table tbody tr {
    transition: all 0.2s ease;
}

.book-price-table tbody tr:hover {
    background-color: rgba(153,153,51,0.1);
    transform: translateY(-2px);
}

.book-price-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e3f3;
    vertical-align: middle;
}

.book-price-table .section-divider {
    background-color: #3e497a;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.book-price {
    text-align: right;
    font-weight: 700;
    color: #f76e11;
    font-size: 1.1rem;
}

.book-price-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: #f76e11;
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.book-price-footer {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    border-top: 1px dashed #dee2e6;
    padding-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .book-price-container {
        padding: 1rem;
    }
    
    .book-price-header {
        font-size: 1.8rem;
    }
    
    .book-price-table thead {
        display: none;
    }
    
    .book-price-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #e0e3f3;
        border-radius: 6px;
    }
    
    .book-price-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem;
        border-bottom: 1px solid #e0e3f3;
    }
    
    .book-price-table td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #293462;
        margin-right: 1rem;
    }
    
    .book-price-table .section-divider {
        display: block;
        text-align: center;
    }
}

/* Base Styles */
.book-price-app {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  min-height: 100vh;
  padding: 2rem 1rem;
}

/* Card Container */
.book-price-card {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Header */
.book-price-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.book-price-header h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.book-price-header p {
  margin: 0.5rem 0 0;
  opacity: 0.9;
  font-weight: 300;
}

/* Table Styles */
.book-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.book-price-table thead th {
  background-color: var(--light);
  color: var(--dark);
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  position: sticky;
  top: 0;
  backdrop-filter: blur(5px);
}

.book-price-table tbody tr {
  transition: all 0.2s ease;
}

.book-price-table tbody tr:hover {
  background-color: rgba(153,153,51,0.1);
  transform: translateX(5px);
}

.book-price-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  vertical-align: middle;
}

/* Category Dividers */
.category-divider {
  background-color: rgba(153,153,51,0.2);
  color: #999933;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.category-divider td {
  padding: 0.8rem 1.5rem;
  border-bottom: none;
}

/* Price Styling */
.price-cell {
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.price-amount {
  font-size: 1.1rem;
}

.price-title{
    text-align:right;
}
.currency {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.badge-new {
  background-color: var(--accent);
  color: white;
}

.badge-popular {
  background-color: var(--success);
  color: white;
}

/* Footer */
.book-price-footer {
  padding: 1.5rem;
  text-align: center;
  background-color: var(--light);
  color: var(--gray);
  font-size: 0.9rem;
}

/* Search & Filter */
.search-filter {
  padding: 1rem 1.5rem;
  background-color: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-box {
  flex: 1;
  min-width: 200px;
  position: relative;
}


.filter-controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.filter-controls select {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  background-color: white;
}

.examiner-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.examiner-header {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3498db;
}

.examiner-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.examiner-name {
    color: #999933; /*#2980b9*/
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 600;
}

.examiner-title {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.examiner-qualifications {
    list-style-type: none;
    padding-left: 0;
}

.examiner-qualification {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.examiner-qualification:before {
    content: "•";
    color: #999933; /*#e74c3c;*/
    font-weight: bold;
    position: absolute;
    left: 0;
}

.examiner-subqualification {
    padding-left: 20px;
    color: #555;
    font-size: 0.95em;
}

.examiner-subqualification:before {
    content: "◦";
    color: #3498db;
    margin-right: 5px;
}

/* Base Styles */
.gallery-body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

/* Header Section */
.gallery-header {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.gallery-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.gallery-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main Content */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Filter Buttons */
.gallery-filter-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.gallery-filter-btn {
    padding: 8px 16px;
    background: rgb(153,153,51,1); /*3498db*/;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover, 
.gallery-filter-btn.gallery-active {
    background: rgb(153,153,51,0.8); /*#2980b9;*/
}

/* Gallery Grid */
.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-card-content {
    transform: translateY(0);
}

.gallery-card-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-card-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallary-card-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: block;
}

/* Footer */
.gallery-footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    flex-wrap: wrap;
}

.contact-box {
    width: 30%;
    border: 1px solid #e0e0e0;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.contact-heading {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.contact-icon {
    font-size: 24px;
    color: #4a6baf;
    margin-bottom: 10px;
}

.contact-content {
    color: #555;
    line-height: 1.6;
}

.contact-address, .contact-phone, .contact-email {
    margin-top: 10px;
}

.inquiry-container {
    max-width: 1000px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px;
    box-sizing: border-box;
}

.inquiry-map-section {
    flex: 1;
    min-width: 300px;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.inquiry-form-section {
    flex: 1;
    min-width: 300px;
    padding: 15px;
    box-sizing: border-box;
}

.inquiry-business-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.inquiry-address {
    color: #555;
    margin-bottom: 10px;
}

.inquiry-rating {
    color: #ff9800;
    margin-bottom: 15px;
}

.inquiry-map-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.inquiry-map-iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.inquiry-map-links {
    margin-bottom: 20px;
}

.inquiry-map-link {
    color: #1a73e8;
    text-decoration: none;
    margin-right: 15px;
}

.inquiry-nearby-places {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

.inquiry-form-group {
    margin-bottom: 15px;
}

.inquiry-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.inquiry-form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.inquiry-form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 100px;
    resize: vertical;
    box-sizing: border-box;
}

.inquiry-form-submit {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s;
}

.inquiry-form-submit:hover {
    background-color: #0d5bba;
}

.inquiry-form-submit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.inquiry-map-footer {
    font-size: 12px;
    color: #777;
    margin-top: 15px;
}

.inquiry-contact-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.inquiry-contact-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.inquiry-contact-item {
    margin-bottom: 12px;
}

.inquiry-contact-label {
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.inquiry-contact-value {
    color: #333;
}

.inquiry-success-message {
    color: green;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #e8f5e9;
    border-radius: 4px;
    display: none;
}

.inquiry-error-message {
    color: red;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #ffebee;
    border-radius: 4px;
    display: none;
}

/* Popup Styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
}

.popup-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.close-btn:hover {
  color: #ff0000;
}

.popup-button {
  background-color: #2c7be5;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
}

.popup-button:hover {
  background-color: #1a68d1;
}

@media (max-width: 768px) {
    .inquiry-container {
        flex-direction: column;
    }
    
    .inquiry-map-section, 
    .inquiry-form-section {
        width: 100%;
        min-width: auto;
    }
    
    .inquiry-map-iframe {
        height: 300px;
    }
}

/* Honeypot field */
.inquiry-honeypot {
    position: absolute;
    left: -9999px;
}
@media (max-width: 768px) {
    .contact-box {
        width: 100%;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid-container {
        grid-template-columns: 1fr;
    }
}
        
/* Responsive */
@media (max-width: 768px) {
  .book-price-header h1 {
    font-size: 1.8rem;
  }
  
  .book-price-table thead {
    display: none;
  }
  
  .book-price-table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .book-price-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
  }
  
  .book-price-table td:before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--primary);
    margin-right: 1rem;
  }
  
  .category-divider {
    display: block;
    text-align: center;
  }
  
  .category-divider td {
    display: block;
    text-align: center;
  }
  
  .price-cell {
    justify-content: space-between;
  }
  
  .search-filter {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .filter-controls {
    flex-wrap: wrap;
  }
}

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');


/* Responsive adjustments for academy section */
@media (max-width: 768px) {
    .academy-container {
        padding: 20px;
    }
    
    .academy-title {
        font-size: 2rem;
    }
    
    .academy-subtitle {
        font-size: 1rem;
    }
    
    
    .course-category {
        min-width: 100%;
    }
    .reading-festival-image1,
    .reading-festival-image2,
    .reading-festival-image3 {
        height: 160px;
        width: 100%;
        padding: 0px;
    }
    
    .page-banner{
        margin-top: 80px;
        margin-bottom: 0px;
        padding: 80px 20px 80px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 30px 0;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .syllabus-container {
        padding: 20px 0;
    }
}