* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: sans-serif;
    color: #151515;
    background: #f8f8f8;
}

.introBox {
    width: 100%;
    height: 100vh;
    background: #252525;
    display: flex;
    flex-wrap: wrap;
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #252525;
    padding: 0.5em 2em 0.5em 2em;
    width: 100%;  
    color: #f8f8f8;
    transition: all 1s ease;
}

.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.logo{
    color: #f8f8f8;
}
.logo h1{
    font-size: 2.1em;
}
.logo h1 span{
    color: rgb(190, 2, 2);
}
.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.nav-links  li {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 0.5em 1em 0.5em 1.5em;
    text-decoration: none;
    color: inherit;
    margin: 0 0.5em 0 0.5em;
    transition: scale 0.4s ease, color 0.4s ease;
}

.nav-links a:hover { 
    scale: 1.2;
    color: aliceblue;
}



.account-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
   
}
.account-links a {
    display: flex;
    flex-wrap: wrap;
    color: inherit;   
    text-decoration: none;
    transition: scale 0.9s ease;
    padding: .5em 1em;
    border: #aaa 1px solid;
    border-radius: 0px;
    cursor: pointer;
}
.account-links a:hover {    
    scale: 1.2;  
    text-decoration: none;  
    color: inherit;   
}
.poster {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align items to the left */
    justify-content: center; /* Center content vertically */
    margin-left: 2em;
    font-size: 1.7em;
    gap: 10px; /* Add spacing between items */
    color: #333;
}

.poster-item{
    color: #363636;
    font-weight: 600;
}
#prime-entry button{
    font-size: 0.7em;
    font-weight: 600;
    border-radius: 10px;
    background: #d8d8d8;
    transition:  scale 0.4s ease;
}
#prime-entry button:hover {
    scale: 1.05;
}


.brand_name {
    padding: 12.5em 1em 1em 8.5em;
    height: 70vh;
    background-image: url('icon/02.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #2e2e2e;
    transition: all 0.4s ease;
}

.brand_name h1{
    font-size: 2.5em;
    transition: all 0.4s ease;
}

.brand_name a {
    position:relative;
    left: -4px;
    font-size: 55px;       
    font-weight: bold;
    text-decoration: none;
    color: inherit;
    transition: color 0.4s ease, font-size 0.4s ease;
}

.brand_name a:hover {
    font-size: 56px;

}

.brand_name p {
    font-size: 14px;
    font-weight: 200;
    line-height: 23px;
    width: 70%;
    max-width: 400px;
    transition: font-size 0.4s ease, color 0.4s ease;
}

.brand_name button {
    margin-top: 12px;
    margin-bottom: 20px;
    padding: 10px; 
    font-size: 16px;
    font-weight: 200;
    line-height: 23px;
    max-width: 230px;
    border: none; 
    border-radius: 20px; 
    cursor: pointer; 
    background-color: rgb(34, 34, 34);
    color: #d8d8d8;

}

.brand_name button:hover {
    transform: scale(1.05); 
}

/* 
@media (max-width:660px) {
    .brand_name{
        padding: 14.5em 2.9em 1em 1em;
    }
    .brand_name h1{
        font-size: 1.2em;
    }

    .brand_name button{
        font-size: 0.8em;
        max-width: 130px;
    }
} */

/* Animated Back Ground8*/
.animated-background {
    height: 15vw;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5em;
}

.fade-image {
    opacity: 1;
    width: 100%;
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
    transform: scale(1) translate(0, 0); /* Initial scale and position */
}

.hidden {
    opacity: 0.6;
    transform: scale(1.1) translate(10px, -10px); /* Slight zoom and shift for exit effect */
}



/* Main*/
main{
    display: flex;
    flex-wrap: wrap;  
    align-items: center;
    justify-content: center; 

  
}

/* Events Section */
.events-section {
    padding:   1.5em 2.9em 1.5em  2.9em;
    font-size: 20px;
    /* border: #b18f32 solid 2px; */
}
.events-section  section h2{
    padding: 1em 0 .5em 0;
}





/* General styling for the products section */
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;                
    justify-content: center;
    overflow-y: auto; 
    max-height: 90vh;
}
.products2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;                
    justify-content: center;
    overflow-y: auto; /* Ensure scrolling is enabled */
    max-height: 70vh;
    /* background-color: #68219a; */
    scrollbar-width: thin;
    scrollbar-color: #3e00b2 #f1f1f100;
    scrollbar-gutter: auto;
}



/* Individual product container styling */
.product-cards {
    display: flex;
    flex-wrap: wrap;  
    border-radius: 8px;       /* Rounded corners */
    transition: transform 0.2s ease; /* Smooth scaling on hover */
    text-align: center;
    background: rgb(230, 229, 229);
    color: #363636;
    /* border: peru 2px solid; */
    width: 25vw;
    height: 15vw;
    margin-top: 1em;
    padding: 1em;
    
}
.product-container {
    display: flex;
    flex-wrap: wrap;  
    min-height: 280px;             /* Width of each product box */    
    border-radius: 8px;       /* Rounded corners */
    transition: transform 0.2s ease; /* Smooth scaling on hover */
    text-align: center;
    background: rgba(218, 218, 218, 0.671);
    
}

/* Image styling for products */
.product-container img {
    width: 100%;               /* Full width image */
    height: auto;
    border-radius: 4px;
    margin-bottom: 0px;       /* Space between image and text */
}

/* Product title styling */
.product-container h3 {
    font-size: 1em;
    margin: 0px 0;

}

/* Description styling */
.product-container p {
    font-size: 0.9em;

    margin: 0px 0 0px;
}

/* Price styling */
.product-container h4 {
    font-size: 1em;

    margin-bottom: 0px;
}

/* Button styling */
.product-container button {
    padding: 8px 12px;
    margin: 5px;                 /* Space between buttons */

    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


/* Hover effect on product box */
.product-container:hover {
    transform: scale(1.05); /* Slightly enlarges on hover */
}


/* Chatbot */
#chatbot {
    display:  none;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

#chatbox {
    display: none;

    padding: 1em;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.chat-content {
    max-height: 200px;
    overflow-y: auto;
}

#chat-input {
    width: 100%;
    padding: 0.5em;
    margin-top: 0.5em;
}

#about{
    background-color: #2e2e2e31;
    border-radius: 10px;
}

#about-highlights {
    padding: 20px;
    text-align: left;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
}

#about-highlights h2 {
    color: inherit;
}

#about-highlights p {

    margin-bottom: 15px;
    font-size: 15px;
}

#about-highlights ul {
    list-style: none;
    margin-bottom:15px;
}

#about-highlights ul li {
    font-size: 15px;
    margin-bottom: 1em;

}

#about-highlights .learn-more {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s;
}

#about-highlights .learn-more:hover {
    background-color: inherit;
}
/* CSS for Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1em 0;
}
#site-footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 0 20px;
}

/* Logo Styling */
.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.footer-about, .footer-links, .footer-contact, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-about h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 0.9em;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #ccc;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 5px 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 0.9em;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
}

/* Social Media Icon Styling */
.footer-social a {
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s;
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Copyright Text */
.footer-about p:last-of-type {
    margin-top: 20px;
    font-size: 0.8em;
    color: #aaa;
    text-align: center;
}

/* Ending of CSS for Footer */


/* CSS for Account Access Box */
 .account-access-box{
    display: flex;
    flex-wrap: wrap;
    gap: 1em;    
 }

.common-forms-class{
    display: none;
    flex-wrap: wrap;  
    max-width: 350px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.346);
    background-color: rgba(196, 2, 2, 0);
    z-index: 100;
}
.show {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row ;
    gap:1em;  
}
.overlay{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;    
    width: 100vw;
    margin-top: 0%;
    gap: 1em;
    z-index: 50;
}


#signup-container input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#login-container input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.account-access-box-head{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 1em;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}


button {
    width: 100%;
    padding: 0.7rem;


    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: inherit;
}

.radio-label {
    display: inline-flex;
    align-items: center;
    /* text-shadow: 0px 0px 5px #ffc800; */
    /* border: 1px solid #de0d0d; */
    font-size: 14px;
    font-weight: bold;
    min-width: 40%;
  }
  
  .radio-label input {
    max-width: 40px;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    
  }


#about h1, #about h2 {
    text-align: center;

}

.about-intro, .about-mission, .about-vision, .about-values, .about-team, .about-contact {
    margin-bottom: 20px;

}

.about-values ul {
    list-style: none;
    padding: 0;
}

.about-values li {
    margin-bottom: 10px;
}

/*  Ending of CSS for About Page */
/* ong css styiling */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;                
    justify-content: center;
    flex-direction: row;
}

.column:nth-child(2) {
    width: 90%;
    margin: 1em 0em 1em 0em;
    white-space: wrap;
    height: 90vh;
    text-align: center;
    background-color: rgba(226, 226, 226, 0.856);
    border-radius: 10px ;
    padding: 1em;
}

.column:nth-child(3) {
    width: 25vw;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 1em 0em 1em 0em;
    background: #e0e0e0;
    color: #333;
    border-radius: 10px ;
    height: 95vh;
}
.column:nth-child(4) {
    width: 59vw;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
    margin: 1em 0em 1em 0em;
    border-radius: 10px ;
    background-color: rgba(226, 226, 226, 0.856);
    height: 95vh; 
}


@media (max-width: 980px) {
    .container {
        flex-direction: column; /* Stack columns vertically on smaller screens */
    }

    .column:nth-child(1), .column:nth-child(2),.column:nth-child(3){
        width: 94vw;
    }
}
.side-bar {
    width: 100%;
    color: #d8d5d5;
    text-align: center;
    margin-top: 1em;
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.3em; */
    box-sizing: border-box;
    border-radius: 5px;
    overflow-y: auto; 
    height: 84vh;
}
.side-bar h2{
    margin-bottom: 2rem;
    text-decoration: underline;
}
.side-bar div {
    margin-bottom: 2rem;
}

.side_bar_item {
    cursor: pointer;
    padding: 0.5rem;
    /* background-color: rgba(196, 196, 196, 0.514); */
    background-color: #a658e6b9;
    border-radius: 5px;
    text-align: center;
    /* margin-bottom: 0.5rem;
    margin-right: 0.5rem; */
    font-size: 1rem;
    /* border: 2px solid #9c9c9cb9; */
}

.side_bar_item:hover {
    color: inherit;
}

.stab_item {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 0.5rem;
}

.stab_item:hover {
    text-decoration: underline;
}

/* Main body styles
.Main_Body {
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-y: auto;
} */

/* Prompt container styles */
.promptcontainer{
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
    font-size: 1em;
    text-align: left;
    overflow: hidden;
    flex-wrap: wrap;
    position: relative;
    background-color: rgba(216, 214, 214, 0);
    border: #464646 1px solid;
    border-radius: 10px;   
    margin-right: auto; 
}
 .promptcontainer2{
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
    font-size: 1em;
    text-align: left;
    overflow: hidden;
    flex-wrap: wrap;
    background-color: rgba(216, 214, 214, 0.151);    
    border: #464646 1px solid;
    border-radius: 10px;
    margin-left: auto; 
    margin-right: 1em;
}
.promptcontainer3{
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    font-size: 1em;
    text-align: left;
    overflow: hidden;
    flex-wrap: wrap;
    position: relative;
    background-color: rgba(216, 214, 214, 0);
    border: #464646 1px solid;
    border-radius: 10px;   
    margin-right: 1em; 
}
.prompttext {
    position: relative;
    line-height: 1.5;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .promptcontainer {
        font-size: 1.0em; 
    }
}
@keyframes decreaseFontSize {
    from {
      font-size: 24px; 
      opacity: 1;
    }
    to {
      font-size: 0px;
      opacity: 0; 
    }
}
.promptcontainer .prompt_title {
    display: flex;
    align-items:center;
    gap: 0.5em;  
}
.promptcontainer .prompt_ending {
    display: flex; 
    align-items: left; 
    border-radius: 5px;
    padding: 0.5em;
    gap:0.5em;
}
.promptcontainer2 .prompt_title {
    display: flex;
    align-items:center; 
    gap: 0.5em;      
}

.promptcontainer2 .prompt_ending {
    display: flex; 
    align-items:center; 
    border-radius: 5px;
    padding: 0.5em;
    gap: .5em; 
}
.prompt-input {
    /* margin-top: 20px; */
    margin-top: auto;
    display: flex;
    border-radius: 50px;
    width: 80%;
    border: 2px solid #acacac;
    padding: 0.3em;
} 
.prompt-input form {
    display: flex;
    width: 100%;
    align-items: center; /* Align the items in the center vertically */
}

.prompt-input form textarea{
    text-decoration: none;
    color: inherit;
    background: inherit;
    display: flex;
    width: 100%;
    font-family: inherit;
    border: none;
    resize: none;
    margin-left: 1em;
} 
.prompt-input form button{
    width: 55px;
    height: 55px;
    border-radius: 50px;
    background: #c0c0c0;
    rotate: 270deg;
} 
.prompt-input form textarea:focus {
    outline: none; /* Removes the focus outline */
    border: none; /* If you don't want any border on focus */
}
 


/* Media query for smaller screens */
@media (max-width: 768px) {
    .introBox {
        flex-direction: column;
    }
}


#myModal button{
    border-radius: 40px;
    background: #f7f7f7;
    box-shadow: 10px 5px 5px #c0c0c0;
    width: 100%;

}
.audio-element{
    width: 100%;
    border-radius: 10px;
    margin-top: 1em;
}

.sep-con {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;                
    justify-content: center;
    flex-direction: row;
    
}

.sep-con-column:nth-child(1) {
    width: 45vw;

    min-width: 350px;
    margin: 1em 0em 1em 0em;
    white-space: wrap;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(55, 55, 55, 0);
    border-radius: 10px ;
    padding: 1em;
}
.sep-con-column:nth-child(2) {
    width: 36vw;
    min-width: 350px;
    margin: 1em 0em 1em 0em;
    white-space: wrap;
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px ;
    padding: 1em;
}
.sep-con-column-2:nth-child(1) {
    width: 45vw;
    margin: 1em 0em 1em 0em;
    white-space: wrap;
    text-align: center;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px ;
    padding: 1em;
    height: auto;
}

.sep-con-column-2:nth-child(2) {
    width: 35vw;
    margin: 1em 0em 1em 0em;
    white-space: wrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(55, 55, 55, 0.282);
    border-radius: 10px ;
    padding: 1em;
}



/* Firefox Scrollbar Support */

.start-point{
    background-color: #242424;
    color: #f7f7f7;
    width: 100%;
    min-height: 25vh;  
    display: flex;
    justify-content: center;
    align-items: center;  
    flex-direction: column;
    padding: 2em;
}
.start-point h2{
    font-size: 2.8em;
    margin-bottom: 0.5em;
}
.point-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* align-items: center;
    flex-direction: row; */
    gap: 11em;
    width: 100%;
}

.point-card {
    width: 10vw;
    min-width: 100px;
    height: 10vw;
    min-height: 100px;
    margin-top: 1.5em;
    margin-bottom: 1em;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevents overflow of image */
    background-color: #ffffff;
    flex-direction: column;
    
}

.point-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the div properly */
    border-radius: 5px;
}
.point-cage{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#course-Box-Image{
    background-image: url('icon/07.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
}
#boxImage{
    background-image: url('icon/22.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    min-width: 60vh;

}

@media (max-width:1140px) {
    .brand_name{
        padding: 12.5em 2.9em 1em 6.5em;
    }
}
@media (max-width:1060px) {
    .brand_name{
        padding: 14.5em 2.9em 1em 5.7em;
    }
    .brand_name h1{
        font-size: 1.8em;
    }
}
@media (max-width:900px) {

    .brand_name{
        padding: 14.5em 2.9em 1em 2em;
    }
}
@media (max-width:810px) {

    .brand_name{
        padding: 18.5em 1em 1em 12em;
        height:85vh;
        background: #2e2e2e1e;
        background-image: url('icon/01.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;

    }
    .brand-text{
        background-color: rgba(190, 2, 2, 0.415);
        width: 50vw;
        padding: 1em;
        border-radius: 20px;
    }
    .brand_name h1{
        font-size: 1.5em;
        color: #c1c1c1;
        width: 60%;
        border: 40px;
    }
    .brand_name button{
        font-size: 0.8em;
        max-width: 130px;
        background-color: #c0c0c0;
        color: #2e2e2e;
    }
}
#input-column{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    margin-top: 1em;
    width: 60%;
}