/* Theme Variables */
:root {
    /* New light palette */
    --bg-primary: #F7F7F7;          /* Off-white background */
    --bg-secondary: #FFFFFF;        /* Card/background panels */
    --text-primary: #333333;        /* Dark gray text */
    --text-secondary: #555555;      /* Softer supporting text */
    --accent-color: #FFB6C1;        /* Soft pink */
    --highlight-color: #4A90E2;     /* Sky blue */
    --purple-accent: #640064;       /* Brand purple */
    --wellness-green: #50C878;      /* Optional highlight */
}

*{
    margin: 0;
    padding: 0;
    font-family:  "Book Antiqua";/*'Poppins',sans-serif;*/
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background: var(--bg-primary);
    color: var(--text-primary); 
}
#header{
    width: 100%;
    background: var(--bg-primary);
    color: #000;
}
.hero-content{
    margin-top: 60px;
    max-width: 520px;
    padding: 0 4px;
}
.hero-title{
    font-size: 46px;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
}
.hero-subtitle{
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}
.container{
    padding: 40px 7%;
}
nav{
    color: var(--text-primary);
}
.site-nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
}
.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 7%;
    width: 100%;
    box-sizing: border-box;
}
.nav-logo-section{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}
.nav-logo{
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 4px;
}
.nav-logo img{
    height: 100px;
    width: auto;
    display: block;
}
.logo{
    width: 120px;
}
.hamburger-menu{
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--text-primary);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    margin-left: auto;
}
.hamburger-menu:hover{
    opacity: 0.7;
}
nav ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    padding: 60px 30px 30px;
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--bg-primary);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}
nav ul.active{
    right: 0;
}
.menu-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu-overlay.active{
    opacity: 1;
    visibility: visible;
}
nav ul li{
    display: block;
    list-style: none;
    margin: 0;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
nav ul li:last-of-type{
    border-bottom: none;
}
nav ul li a{
    color: #000;
    text-decoration: none;
    font-size: 22px;
    position: relative;
    display: block;
    width: 100%;
}
.close-menu{
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-primary);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-menu:hover{
    opacity: 0.7;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;

}
nav ul li a:hover:after{
    width: 100%;
}
.header-text{
    margin-top: 1%;
    font-size: 30px;
    color: var(--text-primary); 
    font-weight: bold;

}
.header-text h1{
    font-size: 60px;
    margin-top: 20px;
}
.header-text h1 span{
    color: var(--purple-accent);
}
/* ------------about--------- */
#about{
    padding: 120px 0 80px;
    color: var(--text-secondary);
    margin-top: 0;
}
.about-tagline{
    font-size: 20px;
    font-style: italic;
    color: var(--text-primary);
    margin: 10px 0 20px;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1{
    flex-basis: 35%;
}
.about-col-1 img{
    width: 100%;
    height: 60vh;/*might be bad for mobile?*/
    border-radius: 15px;
}
.about-col-2{
    flex-basis: 60%;
}
.about-col-2 h1 span{
    color: var(--purple-accent);
}
.sub-title{
    font-size: 60px;
    font-weight: 600;
    color: var(--text-primary);
}
.tab-titles{
    display: flex;
    margin: 20px 0 40px;
}
.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    color: var(--text-primary);
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: var(--highlight-color);
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tab-links.active-link::after{
    width: 100%;
}
.tab-contents ul li {
    list-style: none;
    margin: 10px 0;
}
.tab-contents ul li span{
    color: var(--highlight-color);
    font-size: 14px;
}
.tab-contents{
    display: none;
}
.tab-contents p span{
    color: var(--highlight-color);
    font-size: 14px;
}
.tab-contents.active-tab{
    display: block;
}
/* -------------services------- */
#services{
    padding: 30px 0;
}
.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.service-card-link{
    text-decoration: none;
    color: var(--text-primary);
    display: block;
}
.service-card-link,
.service-card-link * {
    color: var(--text-primary);
}
.service-card-link:visited,
.service-card-link:visited * {
    color: var(--text-primary);
}
.service-card-link:hover,
.service-card-link:hover * {
    color: var(--text-primary);
}
.services-list div,
.service-card-link > div{
    background: var(--bg-secondary);
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 10px;
    transition: background 0.5s, transform 0.5s;
    cursor: pointer;
    color: var(--text-primary);
}
.services-list div i,
.service-card-link > div i{
    font-size: 50px;
    margin-bottom: 30px;
    color: var(--text-primary);
}
.services-list div h2,
.service-card-link > div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-primary);
}
.service-card-link > div p {
    color: var(--text-primary);
}
.services-list div a{
    text-decoration: none;
    color: var(--text-primary);
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
}
.services-list div:hover,
.service-card-link:hover > div{
    background: var(--accent-color);
    transform: translateY(-10px);
}
/* ---------portfolio------ */
#portfolio{
    padding: 50px 0;
}
.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 40px;
    margin-top: 50px;    
}
.work-list.featured{
    max-width: 50%;
    margin: 0 auto;
    grid-template-columns: 1fr;
}
@media (max-width: 900px){
    .work-list.featured{
        max-width: 90%;
    }
}
.work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    /* border: 1px solid white;  */
}
.work img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}
.layer{
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75));
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
    color: #fff;
}
.layer h3{
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.layer p{
    margin: 6px 0;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.layer a{
    margin-top: 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    padding: 10px 18px;
    background: var(--accent-color);
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(0,0,0,0.05);
}
.info-icon{
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 14px 0 6px 0;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border: 1px solid rgba(255,255,255,0.6);
}
.info-icon:hover{
    transform: translateY(-2px);
    opacity: 0.9;
}
.event-debug{
    font-size: 12px;
    color: #fff;
    margin-top: 6px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.work:hover img{
    transform: scale(1.1);
}
.work:hover .layer{
    height: 100%;
}
.btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 1px solid var(--accent-color);
    padding: 14px 50px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.5s;
}
.btn:hover{
    background: var(--accent-color);
}
/* ---------subtle link--------- */
.subtle-link {
    text-decoration: underline;
    font-weight: bold;
    color: inherit;  /* This will make it use the same color as its parent element */
}

.subtle-link:hover {
    color: inherit;  /* This ensures the color doesn't change on hover */
    opacity: 0.8;   /* Optional: slight opacity change on hover for feedback */
}
/* ------------testimonials----------- */
#testimonials {
    padding: 80px 0;
    background: var(--bg-primary);
}

.testimonials-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-carousel {
    overflow: hidden;
    margin: 0 50px;
    width: calc(100% - 100px);
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    will-change: transform;
}

.testimonial-box {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 0 0 calc((100% - 60px) / 3);
    width: calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    box-sizing: border-box;
    flex-shrink: 0;
}

.testimonial-box-wide {
    flex: 0 0 calc(66.666% - 15px);
}

@media screen and (max-width: 968px) {
    .testimonial-box-wide {
        flex: 0 0 calc(100% - 0px);
    }
}

.testimonial-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-secondary);
    border: 2px solid var(--purple-accent);
    color: var(--purple-accent);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--purple-accent);
    color: white;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--purple-accent);
    width: 24px;
    border-radius: 6px;
}

/* Space carousel styles */
#space {
    padding: 80px 0;
    background: var(--bg-primary);
}

.space-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.space-carousel {
    overflow: hidden;
    margin: 0 60px;
    width: calc(100% - 120px);
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.space-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.space-image-box {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}

.space-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 70vh;
    min-height: 500px;
}

@media screen and (max-width: 968px) {
    .space-carousel {
        margin: 0 40px;
        width: calc(100% - 80px);
    }
    .space-image-box img {
        min-height: 400px;
        max-height: 60vh;
    }
}

@media screen and (max-width: 600px) {
    .space-carousel {
        margin: 0 20px;
        width: calc(100% - 40px);
    }
    .space-image-box img {
        min-height: 300px;
        max-height: 50vh;
    }
}

/* Agnis carousel styles */
#agnis {
    padding: 80px 0;
    background: var(--bg-primary);
}

.agnis-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.agnis-carousel {
    overflow: hidden;
    margin: 0 60px;
    width: calc(100% - 120px);
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.agnis-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.agnis-media-box {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}

.agnis-media-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 70vh;
    min-height: 500px;
}

.agnis-media-box video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
    min-height: 500px;
    object-fit: contain;
    transform: rotate(90deg);
    pointer-events: none;
}
.agnis-media-box video::-webkit-media-controls {
    display: none !important;
}
.agnis-media-box video::-webkit-media-controls-enclosure {
    display: none !important;
}

@media screen and (max-width: 968px) {
    .agnis-carousel {
        margin: 0 40px;
        width: calc(100% - 80px);
    }
    .agnis-media-box img,
    .agnis-media-box video {
        min-height: 400px;
        max-height: 60vh;
    }
}

@media screen and (max-width: 600px) {
    .agnis-carousel {
        margin: 0 20px;
        width: calc(100% - 40px);
    }
    .agnis-media-box img,
    .agnis-media-box video {
        min-height: 300px;
        max-height: 50vh;
    }
}

/* Responsive adjustments for testimonials */
@media screen and (max-width: 968px) {
    .testimonial-box {
        flex: 0 0 calc(50% - 15px);
    }
    .testimonials-carousel {
        margin: 0 40px;
    }
}

@media screen and (max-width: 600px) {
    .testimonial-box {
        flex: 0 0 100%;
    }
    .testimonials-carousel {
        margin: 0 30px;
    }
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}
/* Testimonial Styles */
.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-box {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 15px;
    flex: 1 1 300px;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-10px);
}

.testimonial-box .quote {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .testimonial-box {
        flex: 1 1 100%;
    }
}
/* ---------facilitators------ */
#facilitators{
    padding: 80px 0;
    color: var(--text-secondary);
    /* height: 140vh; */
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}
.fac-col-1{
    flex-basis: 45%;
    display: flex;    
    flex-direction: column;    
    justify-content: space-between;    
    height: 100%;
}
.fac-col-1 img{
    width: 100%;
    height: auto;
    border-radius: 15px;
}
.fac-col-1 h1 span{
    color: var(--purple-accent);
}
.sub-title{
    font-size: 60px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}
.tab-titles{
    display: flex;
    margin: 20px 0 40px;
}
.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: var(--accent-color);
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: 0.5s;
}
.tab-links.active-link::after{
    width: 100%;
}
.tab-contents ul li {
    list-style: none;
    margin: 10px 0;
}
.tab-contents ul li span{
    color: var(--highlight-color);
    font-size: 14px;
}
.tab-contents{
    display: none;
}
.tab-contents p span{
    color: var(--highlight-color);
    font-size: 14px;
}
.tab-contents.active-tab{
    display: block;
}
.fac-col-2{
    flex-basis: 45%;
    display: flex;    
    flex-direction: column;    
    justify-content: space-between;    
    height: 100%;
}
.fac-col-2 img{
    width: 100%;
    height: auto;
    border-radius: 15px;
}
.fac-col-2 h1 span{
    color: var(--purple-accent);
}
.sub-title{
    font-size: 60px;
    font-weight: 300;
    color: var(--text-primary);
}
.tab-titles{
    display: flex;
    margin: 20px 0 40px;
}
.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: var(--accent-color);
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}
.tab-links.active-link::after{
    width: 100%;
}
.tab-contents ul li {
    list-style: none;
    margin: 10px 0;
}
.tab-contents ul li span{
    color: var(--highlight-color);
    font-size: 14px;
}
.tab-contents{
    display: none;
}
.tab-contents p span{
    color: var(--highlight-color);
    font-size: 14px;
}
.tab-contents.active-tab{
    display: block;
}
/* ------------application----------- */
#application {
    padding: 80px 0;
    background: var(--bg-primary);
}

.application-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.application-content h2 {
    color: var(--accent-color);
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: center;
}

.application-steps {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
}

.application-steps h3 {
    color: var(--text-primary);
    font-size: 1.5em;
    margin-bottom: 25px;
    text-align: center;
}

.application-steps ol {
    margin-left: 20px;
    margin-bottom: 30px;
}

.application-steps li {
    color: var(--text-primary);
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.6;
}

.note {
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-top: 5px;
    font-style: italic;
}

.confirmation-info {
    margin: 30px 0;
    padding: 20px;
    border-left: 3px solid var(--accent-color);
}

.scenarios {
    margin-top: 20px;
}

.scenarios p {
    margin-bottom: 15px;
}

.next-steps {
    margin-top: 30px;
}

.next-steps h4 {
    color: var(--text-primary);
    font-size: 1.3em;
    margin-bottom: 20px;
}

#application .btn {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 15px 40px;
    font-size: 1.2em;
    background: var(--accent-color);
    color: var(--text-primary);
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

#application .btn:hover {
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
    .application-content {
        padding: 10px;
    }
    
    .application-steps {
        padding: 20px;
    }
    
    .application-content h2 {
        font-size: 1.5em;
    }
}
/* -------contact ----------*/
.contact-left{
    flex-basis: 35%;
}
.contact-right{
    flex-basis: 60%;
}
.contact-left p{
    margin-top: 30px;
}
.contact-left p i{
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 25px;
}
.social-icons{
    margin-top: 30px;
}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: var(--text-secondary);
    display: inline-block;
    transition: transform 0.5s;
}
.social-icons a:hover{
    color: var(--accent-color);
    transform:translateY(-5px)
}
.btn.btn2{
    display: inline-block;
    background: var(--accent-color);
}
.contact-right form{
    width: 100%;
}
form input,form textarea{
    width: 100%;
    border: 0;
    outline: none;
    background: var(--bg-secondary);
    padding: 15px;
    margin: 15px 0;
    color: var(--text-primary);
    font-size: 18px;
    border-radius: 6px;
}
form .btn2{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}
.copyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: var(--bg-secondary);
    font-weight: 300;
    margin-top: 20px;
}
.copyright i{
    color: var(--purple-accent);
}

/* Application Form Styles */
#application-form {
    padding: 0 0 80px 0;
    margin-top: -100px;
    background: var(--bg-primary);
}

.application-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.application-content p {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.guidelines-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.guidelines-link:hover {
    color: var(--highlight-color);
}

.required-note {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1.3em;
    line-height: 1.4;
}

/* Special styling for the checkbox label */
.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.1em;
}

.form-group input[type="checkbox"] {
    margin-top: 4px;
}

#application-form form input,
#application-form form textarea {
    width: 100%;
    border: 0;
    outline: none;
    background: var(--bg-secondary);
    padding: 15px;
    color: var(--text-primary);
    font-size: 18px;
    border-radius: 6px;
}

#application-form form textarea {
    height: 150px;
    resize: vertical;
}

#application-form .btn2 {
    display: inline-block;
    background: var(--accent-color);
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    color: var(--text-primary);
}

#application-form .btn2:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#msg {
    color: var(--highlight-color);
    margin-top: 20px;
    display: block;
    text-align: center;
}

/* Add asterisk to required fields */
.form-group label:has(+ input[required]),
.form-group label:has(+ textarea[required]) {
    position: relative;
}

.form-group label:has(+ input[required])::after,
.form-group label:has(+ textarea[required])::after {
    content: ' *';
    color: var(--accent-color);
}
/* -----------------checkbox styling----------- */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    font-size: 1.1em;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: auto !important;
}

.checkbox-label span {
    flex: 1;
}
.required-asterisk {
    color: var(--accent-color);  /* This uses your theme's accent color (red) */
    margin-left: 2px;
}
.logo-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
/* -----------logo styling----------- */
.logo {
    max-width: 200px;  /* Adjust this value to your preferred logo size */
    height: auto;
}
/* ---------------css for small screens------- */
@media only screen and (max-width: 600px){
    .nav-logo img{
        height: 60px;
    }
    .nav-tagline{
        font-size: 14px;
    }
    nav ul{
        width: 250px;
        right: -250px;
    }
    .sub-title{
        font-size: 40px;
    }
    .fac-col-1, .fac-col-2, .about-col-1, .about-col-2{
        flex-basis: 100%;
    }
    .fac-col-1, .about-col-1{
        margin-bottom: 30px;
    }
    .fac-col-2, .about-col-2{
        font-size: 14px;
    }
    .tab-links{
        font-size: 16px;
        margin-right: 20px;
    }
    .contact-left, .contact-right{
        flex-basis: 100%;
    }
    .copyright{
        font-size: 14px;
    }
    #facilitators{
        height: auto;
    }
}
#msg{
    color: var(--highlight-color);
    margin-top: -40px;
    display: block;
}

/* Add this after your existing #header styles */

/* Class to hide the banner completely */
.no-banner #header {
    height: auto;
    min-height: 0;
    background-image: none;
}

/* Class to remove just the background image but keep the height */
.no-banner-image #header {
    background-image: none;
}

/* Optional: Class for a minimal banner */
.minimal-banner #header {
    height: auto;
    min-height: 60px; /* Adjust this value as needed */
    background-image: none;
}

/* Title Section */
#title-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.main-title {
    font-size: 120px; /* Increased from previous size */
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.subtitle {
    font-size: 3.5em; /* Increased from 2.5em */
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: normal;
    text-align: center;
    line-height: 1.3;
}

.description {
    font-size: 1.2em;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Add responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    .main-title {
        font-size: 80px;
    }
    
    .subtitle {
        font-size: 2.5em;
    }
}

@media screen and (max-width: 480px) {
    .main-title {
        font-size: 60px;
    }
    
    .subtitle {
        font-size: 2em;
    }
}

