/* Root Variables */
:root {
    --brown: #8F454C;
    --dark-brown: #251212;
    --light-brown: #9F8484;
    --yellow: #FE6100;
    --head-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;
}

/* Global Styles */
body {
    overflow-x: hidden;
}

p {
    font-family: var(--body-font);
}

.line {
    width: 200px;
    height: 3px;
    background-color: var(--yellow);
    margin-bottom: 30px;
}

/* Navbar Section */
.navbar-section {
    background-color: #fff;
}

.navbar {
    width: 100%;
}

.logo-wrapper {
    width: 150px;
}

.logo-wrapper img {
    width: 100%;
}

.nav-item a {
    color: var(--dark-brown);
    font-family: var(--body-font);
}

.nav-item a:hover {
    color: var(--yellow);
    text-decoration: underline;
}

.active-nav-link {
    color: var(--yellow) !important;
}

.nav-btn {
    background-color: var(--brown);
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    font-weight: 600;
    color: #fff !important;
    display: block;
}

.nav-btn:hover {
    background-color: var(--dark-brown);
}

/* Hero Section */
.hero-section {
    overflow: hidden;
    background-image: url(Assets/hero-right.webp);
    background-size: cover;
    background-position: top;

    background-repeat: no-repeat;
}

.subhero-section {
    height: 180px;
    background-image: url(Assets/hero-right.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center
}

.subhero-section h1 {
    font-size: 2rem;
    color: #fff;
    font-family: var(--head-font);
}

.subhero-section p {
    color: #fff;
    font-family: var(--body-font)
}

.subhero-section a {
    color: #fff;
    font-family: var(--body-font);
    text-decoration: none;
}

.subhero-section a:hover {
    text-decoration: underline;
}


.hero-container-right {
    width: 100%;
    height: 550px;

    position: relative;
    overflow: hidden;
}

.hero-container-right p {
    position: absolute;
    bottom: 20px;
    right: 20px;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    animation: slideInLeft 1s ease-in-out 0.2s forwards;
    margin: 0;
}

.hero-leader-right {
    max-height: 550px;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 5%;
    transform: translateX(-100%);
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.2s forwards;
}

.hero-voice {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    right: 30%;
    max-width: 400px;
    width: 100%;
    animation: zoomSequence 1s ease-out 1.2s forwards;
}

.hero-container-left {
    text-align: center;
    padding: 100px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(66, 38, 0, 0.2);
    background-color: #fff;
}

.hero-container-left h3 {
    color: var(--brown);
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--head-font);
}

.hero-left-img {
    max-width: 350px;
    width: 100%;
}

.hero-container-left P {
    margin-top: 10px;
    margin-bottom: 5px;
    color: var(--brown);
}

.hero-container-left a {
    text-decoration: none;
}

.register-btn {
    background-color: var(--yellow);
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    font-weight: 600;
    color: #fff !important;
    display: block;
    border: none;
    margin: 0 auto;
    margin-top: 10px;
    animation: zoomInOutShadow 2s infinite ease-in-out;
}



@keyframes zoomInOutShadow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(66, 38, 0, 0.5);
        background-color: var(--brown);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(66, 38, 0, 0.5);
        background-color: var(--yellow);
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomSequence {
    0% {
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }

    60% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    80% {
        transform: translateY(-50%) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

/* Info Section */
.info-section {
    padding: 80px 0;
}

.info-section h2 {
    text-align: center;
    color: var(--dark-brown);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: var(--head-font);
}

.info-section h2 span {
    color: var(--yellow);
}

.info-subhead {
    text-align: center;
    color: var(--dark-brown);
    font-size: 18px;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 30px !important;
    opacity: 1 !important;
}

.info-section p {
    text-align: center;
    color: var(--dark-brown);
    margin-bottom: 16px;
    opacity: 0.9;
}

.line {
    max-width: 250px;
    height: 3px;
    background-color: var(--yellow);
    margin: 0 auto;
    margin-bottom: 60px;
}

/* Powered Section */
.powered-section {
    padding: 60px 30px;
    background-color: #fff;
    text-align: center;
}

.powered-by,
.collaborators {
    border-bottom: 4px solid var(--yellow);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(66, 38, 0, 0.2);
}

.powered-section h3 {
    color: var(--brown);
    font-family: var(--head-font);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
}

.logo-item {

    border-radius: 10px;
   
    font-family: var(--body-font);
    color: var(--dark-brown);
    font-size: 16px;
    min-width: 150px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.organiser-item{
     min-width: 250px;
}



.fello-foundation{
    background-color: rgb(174 186 183);
     padding: 15px 25px;
}


.logo-item  img{
    width: 120px;
}

.organiser-item img{
    width: 250px;
}

.inspiration-section {
    padding: 60px 0;
}

.inspiration-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.inspiration-boxes .ins-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(66, 38, 0, 0.5);
    background-color: #fff;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    width: 200px;
    height: 200px;
}

.inspiration-boxes .ins-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease
}

.inspiration-boxes .ins-img-wrap:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(66, 38, 0, 0.5);
}


/* Footer Section */
.footer-section {
    background-color: #3c2f2f;
    color: #fff;
    padding: 60px 0;
}

.brand-section h3 {
    color: var(--yellow);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: var(--head-font);
}

.brand-section p {
    font-size: 0.9rem;
    color: #fff;
}

.register-btn {
    background-color: var(--yellow);
    border-color: var(--yellow);
}

.register-btn:hover {
    background-color: #e63900;
    border-color: #e63900;
}

.footer-bottom {
    border-top: 1px solid #654321;
    padding-top: 10px;
    font-size: 0.8rem;
}

/* Media Queries */
@media screen and (max-width: 1698px) {
    .hero-leader-right {
        max-height: 570px;
        left: 2%;
    }

    .hero-voice {
        max-width: 350px;
    }

    .hero-left-img {
        max-width: 370px;
    }
}

@media screen and (max-width: 1556px) {
    .hero-container-right {
        height: 520px;
    }

    .hero-leader-right {
        max-height: 500px;
    }
     .organiser-item {
         min-width: 200px;
    }
  .organiser-item img {
        width: 180px;
    }

    .hero-container-left {
    padding: 56px 20px
}
}

@media screen and (max-width: 1400px) {
    .hero-voice {
        max-width: 300px;
    }

    .hero-leader-right {
        max-height: 490px;
    }
    

}



@media screen and (max-width: 1230px) {
    .hero-container-right {
        height: 510px;
    }

    .hero-voice {
        max-width: 270px;
        right: 12%;
    }

     .organiser-item {
        min-width: 150px;
    }
  .organiser-item img {
        width: 150px;
    }
        .hero-container-left {
        padding: 41px 20px;
    }

}

@media screen and (max-width: 1090px) {
    .hero-voice {
        max-width: 240px;
        right: 8%;
    }

    .hero-leader-right {
        max-height: 410px;
    }
}

@media (max-width: 991.98px) {
    .flex-responsive {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 991px) {
    .hero-leader-right {
        max-height: 100%;
        width: 100%;
        object-fit: cover;
        left: 0;
    }

    .info-section {
        padding: 40px 0;
    }


}

@media screen and (max-width: 768px) {
    .hero-leader-right {
        max-height: 80%;
        width: 100%;
    }


      .powered-section {
        padding: 40px 20px;
    }

    .logo-container {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .logo-item {
        width: 80%;
        margin: 0 auto;
        min-width: 0;
    }

       .organiser-item {
        min-width: 200px;
    }
  .organiser-item img {
        width: 200px;
    }


    .powered-by,
    .collaborators {
        margin-bottom: 30px;
    }

    .powered-by,
    .collaborators {
        margin-bottom: 30px;
    }

    .info-subhead {
        width: 100%;
    }


}

@media screen and (max-width: 576px) {
    .hero-container-right {
        height: 237px;
    }

    .hero-container-right p {
        font-size: 12px;
    }

    .hero-leader-right {
        max-height: 80%;
        width: 80%;
    }

    .hero-voice {
        max-width: 150px;
        right: 8%;
    }

    .hero-container-left {
        text-align: center;
        padding: 40px 20px;
    }
}