@import url('https://fonts.googleapis.com/css2?family=Romanesco&display=swap');
/*  font-family: "Romanesco", cursive; */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Romanesco&display=swap');
/* font-family: "Open Sans", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Romanesco&display=swap');

/*  font-family: "Roboto", sans-serif; */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.video-background {
    position: relative;
    height: 100%;
    overflow: hidden;
    background-color: black;
    transform: rotate(40deg);
    transform-origin: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-background .react-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.content-overlay {
    position: relative;
    z-index: 1;
    color: white;
}

.main-visual img {
    max-width: 100%;
}


/* Header Code Start */
.main_header {
    position: fixed;
    z-index: 100;
    width: 100%;
}

.nav {
    height: 95%;
    position: fixed;
    z-index: 1;
    top: 16px;
    left: 12px;
    background-color: #111;
    opacity: 0.9;
    overflow: hidden;
    padding-top: 60px;
    transition: width 0.7s ease-in-out;
    border-radius: 15px;
    width: 0;
}

.nav.open {
    width: 25%;
}

.menu_item {
    position: relative;
    top: 54px;
}

.dropdown {
    position: relative;
    transition: all 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    z-index: 1;
    top: 100%;
    left: 0;
    border-radius: 5px;
    width: 100%;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.nav .dropdown-content a {
    color: #ccc;
    padding: 6px 10px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #575757;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown:hover>a {
    background-color: #575757;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
    padding-left: 15px;
}

.nav a {
    display: block;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease, margin-left 0.4s ease;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    color: #fff;
    font-weight: normal;
}

.nav .ploicy_term {
    position: absolute;
    bottom: 60px;
}

.nav .ploicy_term a {
    display: block;
    padding: 2px 30px;
    text-decoration: none;
    color: #ccc;
    font-size: 10px;
    text-transform: uppercase;
    transition: color 0.3s ease, margin-left 0.4s ease;
    font-family: "Open Sans", sans-serif;
}

.nav a:hover {
    color: #fff;
    margin-left: 10px;
    transition: all 0.4s ease;
}

.nav .close {
    position: absolute;
    top: 0;
    right: -5px;
    margin-left: 50px;
    font-size: 30px;
}

#content {
    padding: 20px;
    transition: margin-left 0.7s ease;
    margin-left: 0;
}

.nav.open~#content {
    margin-left: 250px;
}

.menu-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.menu-icon-container {
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    transition: background-color 0.3s ease;
}

.menu-icon-container:hover {
    background-color: #333;
}

.menu-icon {
    font-size: 18px;
    color: black;
    transition: color 0.3s ease;
}

.menu-icon-container:hover .menu-icon {
    color: white;
}

.menu-description {
    font-size: 12px;
    margin: 0;
    font-family: "Roboto", sans-serif;
}

.logo-text {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    text-decoration: none;
    cursor: pointer;
    transition: letter-spacing 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none !important;
}

/* Header Code End */

.arrow-icon {
    font-size: 16px;
    margin-left: 12px;
}

/* Home Section Style Start */
/* Ensure this CSS is scoped to your component */
.background-container {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    overflow: hidden;
    /* Hide overflowing content */
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the whole area */
    z-index: -1;
    /* Place behind other content */
}

.main-section {
    position: relative;
    text-align: center;
    padding: 40px;
}

.avatar-container {
    position: relative;
    display: inline-block;
}

.avatar-container div {
    width: 100% !important;
    height: auto !important;
}

.avatar-container video {
    width: 400px !important;
    border-radius: 80px !important;
}

.avatar {
    width: 360px;
    height: 360px;
    border-radius: 90px;
    object-fit: cover;
}

.video-controls {
    margin-top: 20px;
}

.control-button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: #000;
    margin: 5px;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.control-button:hover {
    background-color: #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* Glow effect on hover */
}

.explore-button {
    padding: 10px 20px;
    background-color: transparent;
    font-size: 16px;
    border: 2px solid white;
    font-family: "Open Sans", sans-serif;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.explore-button:hover {
    background-color: white;
    color: black;
}

/* Progress Indicator Styles */
.progress-indicator {
    position: fixed;
    top: 90%;
    right: 20px;
    transform: translateY(-50%);
}

.indicator-item {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 5px 0;
    transition: background-color 0.3s;
}

.indicator-item.active {
    background-color: #000;
}

/* Home Section Style ENd */


/* About Code Start */
.section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #e0e0e0;
}

.section-masthead {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-heading {
    font-size: 28px;
    line-height: 60px;
    font-weight: 400;
    letter-spacing: 10px;
    animation: slideIn 2s forwards;
    font-family: "Ledger", serif;
}

.line {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 4px;
    animation: slideIn 2s forwards;
    font-family: "Ledger", serif;
}

/* About Code End */

/* Service Css Code Start  */
.program-categories .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.category-card {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.effect {
    height: 200px;
    margin-bottom: 15px;
    background: #e9ecef;
}

.explore-btn {
    display: inline-block;
    font-family: 'Helvetica', sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.explore-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 767px) {
    .row {
        flex-direction: column;
    }
}

/* Service Css Code End */

/* Heading And Parageph Font And Color And Style Start */
.text_36 {
    font-size: 36px;
}

.text_40 {
    font-size: 40px;
    font-family: "Roboto", sans-serif;
    color: #000000;
}





/* Heading And Parageph Font And Color And Style End */

/* About Code Start */
.text_32_about {
    font-size: 32px;
    font-family: "Open Sans", sans-serif;
    color: #333333;
    font-weight: bold;
}

.text_18_about {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    color: #4F4F4F;
    font-weight: transparent;
}

.text_42_about {
    font-size: 42px;
    font-family: "Open Sans", sans-serif;
    color: #000000;
}

.text_20_about {
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    color: #333333;
    font-weight: transparent;
}

.text_48_about {
    font-size: 48px;
    font-family: "Romanesco", cursive;
    color: #333333;
}

/* About Code End */


/* Program Code Start */
.text_48_program {
    font-size: 48px;
    font-family: "Open Sans", sans-serif;
    color: #333333;
    font-weight: bold;
}

.text_24_program {
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
    color: #666666;
    font-weight: normal;
}

.text_18_program {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    color: #555555;
    font-weight: normal;
}

/* Program Code End */


/* Service Code Start */
.text_48_service {
    font-size: 48px;
    font-family: "Open Sans", sans-serif;
    color: #333333;
    font-weight: bold;
}

.text_24_service {
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
    color: #666666;
    font-weight: normal;
}

.text_18_service {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    color: #555555;
    font-weight: normal;
}

/* Service Code End */


/* how Code Start */
.text_48_how {
    font-size: 48px;
    font-family: "Open Sans", sans-serif;
    color: #333333;
    font-weight: bold;
}

.text_24_how {
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
    color: #666666;
    font-weight: normal;
}

.text_18_how {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    color: #555555;
    font-weight: normal;
}

/* how Code End */

/* investor Code Start */
.text_48_investor {
    font-size: 48px;
    font-family: "Open Sans", sans-serif;
    color: #333333;
    font-weight: bold;
}

.text_24_investor {
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
    color: #666666;
    font-weight: normal;
}

.text_18_investor {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    color: #555555;
    font-weight: normal;
}

/* investor Code End */

/* privacy Code Start */
.text_48_privacy {
    font-size: 48px;
    font-family: "Open Sans", sans-serif;
    color: #333333;
    font-weight: bold;
}

.text_24_privacy {
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
    color: #666666;
    font-weight: normal;
}

.text_18_privacy {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    color: #555555;
    font-weight: normal;
}

/* privacy Code End */


/* home Code Start */
.text_36_home {
    font-size: 36px;
    font-family: "Open Sans", sans-serif;
    color: #fff;
    font-weight: bold;
}

.text_18_home {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    color: #fff;
    font-weight: normal;
}

.text_16_header {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    color: #fff;
    font-weight: normal;
}

.text_16_header_button {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    color: #FFFFFF;
    font-weight: normal;
    background-color: #007BFF;
    border-radius: 5px;
    padding: 8px 20px;
    letter-spacing: 2px;
}

.text_16_header_button:hover {
    background-color: #0056b3;
}

/* home Code End */


/* Animation Start */


/* Ensure this file is properly imported in your component */

.container-home {
    position: relative;
    height: 100vh;
    overflow: hidden;
    /* Hide overflow */
}

.black-div {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    z-index: 10;
}

.black-div.top {
    top: 0;
}

.black-div.bottom {
    bottom: 0;
}

.black-div.top,
.black-div.bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50vh;
    background: black;
    z-index: 10;
}

.black-div.top {
    top: 0;
}

.black-div.bottom {
    bottom: 0;
}


/* Animation End */

/* Input Send Box Code Start */
.send-input-container {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 20px;
    padding: 5px 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.send-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 5px;
    margin: 0 10px;
    outline: none;
    border-radius: 20px;
}

.icon {
    font-size: 20px;
    cursor: pointer;
    color: #007bff;
}

.microphone-icon {
    margin-right: 10px;
}

.send-icon {
    margin-left: 10px;
}

/* Input Send Box Code End */

/* Modal Code Statrt */
/* Modal.css */
/* Modal.css */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    /* Ensure the overlay covers the full viewport */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: flex-end;
    /* Align the modal to the right */
    align-items: center;
    z-index: 1000;
}

.modal-contents {
    background: white;
    padding: 20px;
    border-radius: 12px;
    position: absolute;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    top: 10px;
    right: 10px;
    height: 40vh;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    /* Customize icon color */
}

.modal_input {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid gray;
    border-radius: 35px;
}

.modal_input input {
    outline: none;
    border: none;
    border-radius: 35px;
    padding: 14px;
}

.modal_input button {
    border-radius: 25px;
    width: 200px;
    margin: 4px;
    border: none;
    outline: none;
    background: #007BFF;
    color: white;
    padding: 10px;
}

/* Modal Code End */


.animated {
    animation: opacityAnimation 0.2s ease-in-out;
  }
  
  @keyframes opacityAnimation {
    from {
      opacity: 0.8;
    }
  
    to {
      opacity: 1;
    }
  }
  .icon.send-icon, .icon.loading-icon {
    margin-left: 10px;
    cursor: pointer;
    font-size: 24px;
  }
  
  .loading-icon {
    animation: spin 1s linear infinite; 
  }
  
  @keyframes spin {
    100% { transform: rotate(360deg); }
  }