:root {
    --primary-red: #CC3634;
    --primary-red-dark: #a82c2a;
    --primary-red-light: #e04543;
    --dark-gray: #575656;
    --light-gray: #B2B2B2;
    --off-white: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}


/* Navbar Styles */

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

a.nav-link.btn-register {
    color: #fff !important;
}

.btn-register {
    background: var(--primary-red);
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 54, 52, 0.4);
}

.btn-register::after {
    display: none !important;
}

.form-container.aos-init.aos-animate {
   max-height: none !important;
}
/* Hero Section */

.page-hero {
    min-height: 74vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(26 26 26 / 92%) 0%, rgb(87 86 86 / 75%) 100%);
    z-index: -1;
}

.page-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.page-hero-title .text-highlight {
    color: var(--primary-red);
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.page-hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
}


/* Section Styles */

.section-tag {
    display: inline-block;
    background: rgba(204, 54, 52, 0.1);
    color: var(--primary-red);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-title .text-accent {
    color: var(--primary-red);
}

/* Hero CTA Button Styles */
.hero-cta-wrapper {
    margin-top: 2rem;
}

.btn-hero-register {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--dark-gray);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-register:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(204, 54, 52, 0.4);
}

.btn-hero-register i {
    font-size: 1.1rem;
}

/* Responsive adjustments for hero button */
@media (max-width: 767.98px) {
    .btn-hero-register {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}
/* What We're Looking For Section */

.looking-for-section {
    background: var(--off-white);
}

.format-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.format-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.format-card h4 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0;
}

.goal-box {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    text-align: center;
}

.goal-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.goal-box p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.95;
}

/*form submittion ares*/
/* Submission Form Section */

section#submit-form {
    background-color: #f9f5f5;
}
/* Responsive adjustments for form */
@media (max-width: 767.98px) {
    .form-container {
        padding: 1.5rem;
    }
    
    .form-container iframe {
        min-height: 1500px;
    }
}
/* Thematic Strands Accordion */

.thematic-section {
    background: white;
}

.strand-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.strand-accordion .accordion-button {
    padding: 1.5rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    background: white;
    border: none;
    box-shadow: none;
}

.strand-accordion .accordion-button:not(.collapsed) {
    background: rgba(204, 54, 52, 0.05);
    color: var(--primary-red);
}

.strand-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CC3634'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.25rem;
    height: 1.25rem;
}

.strand-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.strand-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.strand-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
    font-family: 'Source Sans Pro', sans-serif;
}

.strand-accordion .accordion-body {
    padding: 0 2rem 1.5rem 2rem;
    background: rgba(204, 54, 52, 0.02);
}

.strand-accordion .accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strand-accordion .accordion-body li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-gray);
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.strand-accordion .accordion-body li:last-child {
    border-bottom: none;
}

.strand-accordion .accordion-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}


/* Submission Guidelines */

.guidelines-section {
    background: var(--off-white);
}

.guideline-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.guideline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
}

.guideline-card h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.guideline-card h3 i {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.guideline-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.btn-cta-outline {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
    transition: all 0.3s 
ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-cta-outline:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-3px);
}
.guideline-card li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.guideline-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
}


/* Expected Outcomes */

.outcomes-section {
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.outcomes-section::before {
    content: '';
    position: absolute;
    background-color: #1a1a1a !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.outcomes-section .section-tag {
    background: rgba(204, 54, 52, 0.2);
}

.outcomes-section .section-title {
    color: white;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.outcome-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.outcome-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.outcome-item span {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}


/* CTA Section */

.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
/*
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}
*/
.btn-cta {
    background: white;
    color: var(--primary-red);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-cta:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}


/* Footer */

.footer {
    background: #1a1a1a;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-red);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
}


/* Scroll to Top */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(204, 54, 52, 0.4);
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--primary-red-dark);
}


/* Responsive */

@media (max-width: 991.98px) {
    .page-hero-title {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .page-hero-title {
        font-size: 1.8rem;
    }
    .page-hero-subtitle {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .strand-accordion .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    .strand-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer .text-md-start {
        text-align: center !important;
    }
	.page-hero {
		min-height: 93vh!important;
		position: relative;
		display: flex;
		align-items: center;
		overflow: hidden;
		padding-top: 100px;
		padding-bottom: 30px!important;
	}
}