/* Hero Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides-container {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
    position: relative;
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
    background-color: rgba(48, 27, 1, 0.548);
    background-blend-mode: multiply;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    color: white;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: var(--font-segoe);
    text-shadow: 2px 2px 8px #000000;
}

.slide p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-family: var(--font-segoe);
    text-shadow: 2px 2px 8px #000000;
}

.hero-slider .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-slider .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-segoe);
}

.hero-slider .btn-primary {
    background: var(--main-theme-color);
    color: white;
    box-shadow: 0 4px 14px rgba(229, 187, 70, 0.692);
}

.hero-slider .btn-primary:hover {
    background: #cf7b04;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 165, 70, 0.5);
}

.hero-slider .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255, 255, 255);
}

.hero-slider .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.hero-slider .dots {
    display: flex;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-slider .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider .dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-slider .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-slider .nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider .prev-btn {
    left: 2rem;
}

.hero-slider .next-btn {
    right: 2rem;
}








/* About Section */
.about {
    background-color: #fff;
    /* Light Gray */
    color: #333333;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.about-content {
    max-width: var(--pro-width);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0px;
}

.about-text {
    flex: 1;
    padding: 20px;
}

.about-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-segoe);
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 3rem;
    font-family: var(--font-segoe);
    text-align: justify;
    font-size: 1rem;
}

.about-btn {
    font-family: var(--font-segoe);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px, 0 4px 8px rgba(0, 0, 0, 0.1);
}









/* Objective Section */
.objectives {
    padding: 4rem 1rem;
    background: #fcf9f7;
    text-align: center;
}

.objectives-container {
    max-width: var(--pro-width);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0px;
    flex-direction: column;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    cursor: default;
}

.objective-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.objective-card i {
    font-size: 2.5rem;
    color: var(--main-theme-color);
    margin-bottom: 1rem;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.objective-card h3 {
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 0.5rem;
    font-family: var(--font-segoe);
}

.objective-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    font-family: var(--font-segoe);
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}






/* Milestone */
.milestones {
    width: 100%;
    padding-top: 2rem;
    background: #fff;
}

.milestones-container {
    max-width: var(--pro-width);
    margin: auto;
    padding: 10px 0px;
    flex-direction: column;
}

.milestone-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.milestone-row.reverse {
    flex-direction: row-reverse;
}

.milestone-info {
    flex: 1;
    text-align: left;
    margin: 3rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.milestone-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: max-content;
    margin-bottom: 1rem;
}

.milestone-info i {
    font-size: 3rem;
    color: var(--main-theme-color);
    display: block;
    animation: floatIcon 3s ease-in-out infinite;
}

.milestone-info h3 {
    font-size: 3rem;
    color: var(--main-theme-color);
    margin-left: 1rem;
    font-family: var(--font-segoe);
    animation: floatIcon 3s ease-in-out infinite;
}

.milestone-info h2 {
    font-size: 2rem;
    color: #333333;
    margin: 0;
    font-family: var(--font-segoe);
}

.milestone-info p {
    font-size: 1.3rem;
    color: #555;
    margin-top: 0.3rem;
    font-family: var(--font-segoe);
    width: 70%;
}

.milestone-btn {
    margin-top: 2rem;
    font-family: var(--font-segoe);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.milestone-btn i {
    font-size: 1.2rem;
    color: #fff;
    animation: none;
    margin-left: 0.5rem;
}

.milestone-image {
    flex: 1;
}

.milestone-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px, 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.milestone-image img:hover {
    transform: scale(1.03);
}












/* Contact Section */
.contact {
    width: 100%;
    background: #fcf9f7;
    overflow: hidden;
}

.contact-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 4rem;
}

.contact-container {
    display: flex;
    min-height: 600px;
    max-width: var(--pro-width);
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 4rem auto;
    background-color: #fff;
}

.contact-form {
    flex: 1;
    padding: 40px;
    background: white;
}

.contact-info {
    flex: 1;
    padding: 40px;
    /* background: linear-gradient(135deg, var(--main-theme-color) 0%, #b96e05 100%); */
    color: white;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease;
    background-color: rgb(42 33 23);
    background-blend-mode: overlay;
}

.contact-heading {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: start;
}

.contact-heading-paragraph {
    margin: 0;
    padding-bottom: 3rem;
}

.con-sc {
    margin-left: 0px;
    margin-bottom: 1rem;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a5568;
    font-family: var(--font-segoe);
}

input,
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--font-segoe);
}

.contact input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--main-theme-color);
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.1);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--main-theme-color);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #cf7b04;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
}

.contact .info-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: var(--font-segoe);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5)
}

.contact .info-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    font-family: var(--font-segoe);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5)
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.contact-icon {
    background: var(--main-theme-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact .contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-segoe);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5)
}

.contact .contact-text p {
    opacity: 0.9;
    font-family: var(--font-segoe);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5)
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: #cf7b04;
    transform: translateY(-3px);
}

.map-container {
    flex: 1;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-container-index {
    flex: 1;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 400px;
    width: auto;
    margin: 0rem auto 5rem auto;
}

.map-container-index .map-placeholder {
    text-align: center;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.map-container-index .map-placeholder iframe{
    width: 100%;
}

.map-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: var(--main-theme-color);
    animation: floatIcon 3s ease-in-out infinite
}

.map-placeholder p,
small {
    font-family: var(--font-segoe);
    color: #333;
}






/* Join Section */
.join {
    background-color: transparent;
    color: #333333;
    width: 100%;
    padding: 2rem 0rem;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 25% 85%;
    transition: transform 8s ease;
    background-color: rgb(218 189 153);
    background-blend-mode: overlay;
    margin: 3rem 0;
}

.join-container {
    max-width: var(--pro-width);
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    height: 25rem;
}

.join-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.join-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: var(--font-segoe);
}

.join-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: var(--font-segoe);
    width: 70%;
    text-align: center;
}

.join-text a {
    font-family: var(--font-segoe);
}