 /* Base Styles */
:root {
     /* New Niklisema Color Scheme */
    --primary-color: #1a1a1a;       /* Deep black */
    --secondary-color: #d4af37;     /* Gold/Niklisema gold */
    --accent-color: #b8860b;        /* Darker gold for accents */
    --light-color: #ffffff;         /* Pure white */
    --dark-color: #0d0d0d;          /* Slightly darker black */
    --text-color: #333333;          /* Dark gray for text */
    --text-light: #f8f8f8;          /* Light text for dark backgrounds */
    
    /* Additional gold shades for gradients */
    --gold-light: #f1e5ac;
    --gold-dark: #a67c00;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
     background-color: var(--light-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--accent-color); /*trial*/
}

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

/* Header Styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
     color: var(--light-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: bold;
}

.school-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.hover-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.hover-effect:hover::after {
    width: 100%;
}
/*trial css*/
/* Testimonial quotes */
.testimonial-quote i {
    color: rgba(212, 175, 55, 0.2);
}

/* Marquee Bar */
.marquee-bar {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 0;
    overflow: hidden;
    position: fixed;
    top: 80px;
    width: 100%;
    z-index: 999;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.hamburger {
    width: 30px;
    height: 3px;
    background-color: white;
    position: relative;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
     background-color: var(--secondary-color);
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.mobile-nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 80px);
    background-color: var(--primary-color);
    transition: right 0.3s ease;
    z-index: 998;
    padding: 2rem;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
     color: var(--secondary-color);
    font-size: 1.1rem;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
      background: linear-gradient(rgba(216, 213, 213, 0.384), rgba(211, 208, 208, 0.192)), 
                url('/images/hero-bg.jpg') center/cover no-repeat;
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 120px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.typing-text {
    font-size: 3rem;
    margin-bottom: 2rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.typing-text span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    margin: 0.5rem 0;
    border-right: 3px solid var(--secondary-color);
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--secondary-color) }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: bold;
    border-radius: 50px;
    margin-top: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      background-color: var(--accent-color);
}

/* Image Slider */
.image-slider {
    padding: 4rem 0;
    background-color: var(--light-color);
    overflow: hidden;
}

.slider-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: calc(300px * 10);
}

.slide {
    width: 300px;
    flex-shrink: 0;
    padding: 0 15px;
    transition: transform 0.3s;
}

.slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slide:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 5)); }
}

/* Pulsing Effects */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Footer Styles */
.main-footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 3rem 0 0;
    position: relative;
}

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

.footer-section {
    padding: 0 1rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-section p {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    transition: color 0.3s;
}

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

.social-media-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
     background-color: rgba(212, 175, 55, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-marquee {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 0;
    overflow: hidden;
}

.footer-marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 135px;
    right: 30px;
    z-index: 100;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .typing-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section {
        margin-top: 120px;
        height: 80vh;
    }
    
    .typing-text {
        font-size: 2rem;
        min-height: 150px;
    }
    
    .marquee-bar {
        top: 70px;
    }
    
    .mobile-nav {
        top: 70px;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 70vh;
    }
    
    .typing-text {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
/*additional css*/

/*trial*/
/* Form elements */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/*trial css*/
/* Pulsing effects */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
/* Page Hero */
.page-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), 
                url('/images/about-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 120px;
}

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

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

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-size: 2.5rem;
    color: var(--primary-color);
}

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

/* Academic Section */
.academic-section {
    padding: 5rem 0;
    background-color: white;
}

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

.academic-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.academic-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.academic-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    min-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
}

.testimonial-author {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: var(--text-light);
    font-style: italic;
}

/* Facts Section */
.facts-section {
    padding: 5rem 0;
    background-color: white;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.fact-card {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 10px;
}

.fact-card h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.fact-card p {
    color: var(--text-light);
    font-weight: 600;
}

/* News Section */
.news-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.news-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
}

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

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.read-more:hover::after {
    width: 100%;
}

/* About Page Styles */
.history-section {
    padding: 5rem 0;
    background-color: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 1rem 2rem;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-year {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
}

.timeline-content {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.mission-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Leadership Section */
.leadership-section {
    padding: 5rem 0;
    background-color: white;
}

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

.leader-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-image {
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.leader-info {
    padding: 1.5rem;
    text-align: center;
}

.leader-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.leader-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.leader-quote {
    font-style: italic;
    color: var(--primary-color);
    margin: 1rem 0;
    position: relative;
}

.leader-quote::before,
.leader-quote::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Facilities Section */
.facilities-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.facility-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.facility-card:hover {
    transform: translateY(-10px);
}

.facility-image {
    height: 200px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.facility-content {
    padding: 1.5rem;
}

.facility-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Achievements Section */
.achievements-section {
    padding: 5rem 0;
    background-color: white;
}

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

.achievement-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.achievement-card:hover {
    transform: translateY(-10px);
}

.achievement-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.achievement-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Gallery Page Styles */
.gallery-filters {
    padding: 2rem 0;
    background-color: white;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: var(--light-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active {
    background-color: var(--secondary-color);
    color: white;
}

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

.gallery-grid-section {
    padding: 2rem 0 5rem;
    background-color: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 51, 102, 0.8);
    color: white;
    padding: 1rem;
    transition: bottom 0.3s;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.director-spotlight {
    padding: 5rem 0;
    background-color: white;
}

.director-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.director-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-info h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.director-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.director-quote {
    font-style: italic;
    color: var(--primary-color);
    margin: 1.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.director-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: var(--secondary-color);
}

.staff-gallery {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.staff-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.staff-card:hover {
    transform: translateY(-10px);
}

.staff-image {
    height: 250px;
    overflow: hidden;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.staff-info {
    padding: 1.5rem;
    text-align: center;
}

.staff-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 5rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 0.3rem;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.social-media h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.contact-form-container {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.map-section {
    padding: 0 0 5rem;
    background-color: var(--light-color);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.faq-section {
    padding: 5rem 0;
    background-color: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    background-color: var(--light-color);
    border: none;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer.active {
    padding: 1rem;
    max-height: 500px;
}

/* Admissions Page Styles */
.admissions-process {
    padding: 5rem 0;
    background-color: white;
}

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

.process-card {
    position: relative;
    background-color: var(--light-color);
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    counter-increment: step-counter;
}

.process-number::before {
    content: counter(step-counter);
}

.process-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.requirements-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.requirement-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.requirement-card:hover {
    transform: translateY(-10px);
}

.requirement-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.requirement-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.requirement-card ul {
    list-style: none;
    text-align: left;
}

.requirement-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.requirement-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.fees-section {
    padding: 5rem 0;
    background-color: white;
}

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

.fee-table {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.fee-table h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.fee-table table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table th,
.fee-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.fee-table th {
    background-color: var(--primary-color);
    color: white;
}

.fee-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.5);
}

.fee-table tr:hover {
    background-color: rgba(255, 204, 0, 0.1);
}

.downloads-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.download-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.download-card:hover {
    transform: translateY(-10px);
}

.download-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.download-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.download-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s;
}

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

.open-days-section {
    padding: 5rem 0;
    background-color: white;
}

.open-day-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.open-day-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.open-day-card p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .director-card {
        grid-template-columns: 1fr;
    }
    
    .director-image {
        height: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .academic-grid,
    .mission-grid,
    .leadership-grid,
    .facilities-grid,
    .achievements-grid,
    .requirements-grid,
    .download-cards {
        grid-template-columns: 1fr;
    }
    
    .fee-tables {
        grid-template-columns: 1fr;
    }
}
/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}
/* Academic Cards Enhancements */
.academic-card {
    position: relative;
    overflow: hidden;
}

.academic-stats,
.facility-list,
.curriculum-highlights,
.teacher-stats,
.tech-list,
.uni-partners {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #ddd;
    font-size: 0.9rem;
}

.academic-stats span,
.curriculum-highlights span,
.teacher-stats span,
.uni-partners span {
    display: inline-block;
    background-color: rgba(0, 51, 102, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    margin: 0.2rem;
    font-size: 0.8rem;
}

.facility-list li,
.tech-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.facility-list li::before,
.tech-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.reason-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.reason-card:hover {
    transform: translateY(-10px);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 51, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.reason-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonial Enhancements */
.testimonial-quote {
    position: relative;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.testimonial-quote i:first-child {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 2rem;
    color: rgba(0, 51, 102, 0.1);
}

.testimonial-quote i:last-child {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 2rem;
    color: rgba(0, 51, 102, 0.1);
}

.testimonial-quote p {
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.author-info h4 {
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.rating {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Facts Enhancements */
.fact-card {
    position: relative;
    padding: 2rem 1rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.fact-card:hover {
    transform: translateY(-10px);
}

.fact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 0;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* Facilities Showcase */
.facilities-section {
    padding: 5rem 0;
    background-color: white;
}

.facilities-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

.facility-highlight {
    min-width: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: start;
}

.facility-highlight img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.facility-highlight:hover img {
    transform: scale(1.1);
}

.facility-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
}

.facility-info h3 {
    margin-bottom: 0.5rem;
}

.facility-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: bold;
    margin-top: 0.5rem;
}

.facility-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.facility-link:hover i {
    transform: translateX(5px);
}

/* News Enhancements */
.news-card {
    position: relative;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
}

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

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.news-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.news-date span:first-child {
    font-size: 1.2rem;
    line-height: 1;
}

.news-date span:last-child {
    font-size: 0.7rem;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.news-meta span {
    color: var(--text-light);
}

.read-more {
    color: var(--secondary-color);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 0.3rem;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

.news-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.view-all-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.view-all-btn i {
    margin-left: 0.5rem;
}

/* Events Section */
.events-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.events-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.event-item:hover {
    transform: translateX(10px);
}

.event-date {
    min-width: 70px;
    text-align: center;
    margin-right: 1.5rem;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
}

.event-details {
    flex-grow: 1;
}

.event-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.event-details i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.event-rsvp {
    padding: 0.5rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.event-rsvp:hover {
    background-color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), 
                url('/images/cta-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .academic-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin-bottom: 0.5rem;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .event-rsvp {
        margin-top: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button,
    .cta-button.secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    /*trial*/
    
}


/* Social Media Marquee */
.social-marquee {
    background-color: var(--primary-color);
    padding: 1rem 0;
    overflow: hidden;
    width: 100%; /* Add this */
}

.social-marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: socialMarquee 20s linear infinite;
    padding: 0 20px; /* Add padding */
}

.social-marquee .social-icon {
   display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin: 0 10px; /* Reduce margin for mobile */
    font-size: 1rem; /* Slightly smaller on mobile */
    transition: all 0.3s;
}

.social-marquee .social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.2);
}

@keyframes socialMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Vertical Social Sidebar */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 1rem 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: auto; /* Add this */

}

.social-sidebar .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-sidebar .social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateX(10px);
}

.social-sidebar .social-icon::before {
    content: attr(title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--text-color);
    color: rgb(24, 72, 214);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    margin-left: 1rem;
}

.social-sidebar .social-icon:hover::before {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .social-sidebar {
        flex-direction: row;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        padding: 0.8rem;
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-sidebar .social-icon {
        margin: 0;
        width: 36px;
        height: 36px;
    }
    
    .social-sidebar .social-icon:hover {
        transform: translateY(-5px);
    }
    
    .social-sidebar .social-icon::before {
        top: auto;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 5px;
    }
}

/*additional css*/
/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .social-marquee {
        padding: 0.8rem 0;
    }
    
    .social-marquee .social-icon {
        width: 36px;
        height: 36px;
        margin: 0 8px;
    }
    
    .social-marquee-content {
        animation-duration: 15s; /* Faster on mobile */
    }
}

@media (max-width: 576px) {
    .social-sidebar .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/*additional css*/
/* Add to your existing CSS */
.social-icon {
    flex-shrink: 0; /* Prevent icons from shrinking */
    aspect-ratio: 1/1; /* Maintain square ratio */
}

/* For Font Awesome icons specifically */
.social-icon i {
    width: 1em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*css trial*/
.card {
    background-color: var(--light-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Gold gradients */
.gold-gradient {
    background: linear-gradient(135deg, var(--gold-light), var(--secondary-color));
}

/* Text highlights */
.highlight-gold {
    color: var(--secondary-color);
}

/*trial css*/
/* Add to your CSS */
.gold-bg {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.gold-border {
    border: 2px solid var(--secondary-color);
}

.gold-text {
    color: var(--secondary-color);
}

.gold-shadow {
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.gold-hover:hover {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}
/*trial*/
.gold-texture {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23d4af37" opacity="0.1"/><path d="M0 0 L100 100 M0 100 L100 0" stroke="%23d4af37" stroke-width="1" opacity="0.2"/></svg>');
}

.dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.image-overlay {
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.3), rgba(26, 26, 26, 0.7));
}

button:active {
    transform: translateY(2px);
    background-color: var(--accent-color);
}