@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-color: #081b29;
    --secongbg-color: #112e42;
    --text-color:#ededed;
    --main-color: #00abf0;
    --thirdbg-color:#206796;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    
}

.sticky-header {
    position: fixed; /* Change from sticky to fixed */
    top: 0;
    width: 100%;
    z-index: 1030;
    background-color: #212f3c;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.top-bar {
    background-color: #b57a2a;
    z-index: 1035;
}

.social-media-icons a {
    font-size: 18px;
    text-decoration: none;
}

.main-nav {
    background-color: #212f3c;
}

.logo-img {
    height: 100px;
}

.nav-link {
    font-size: 16px;
    font-weight: bold;
    margin: 0 15px;
}

.menu-toggle {
    cursor: pointer;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #212f3c;
    transition: left 0.3s;
    padding-top: 60px;
    z-index: 1040;
}

.sidebar .nav-link {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
}

.sidebar .nav-link:hover {
    background-color: #3b414d;
}

.sidebar .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem;
    background: var(--secongbg-color);
}

.footer-text p {
    font-size: 1.3rem;
    color: white;
}

.footer-iconTop a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
}

.footer-iconTop a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secongbg-color);
    z-index: -1;
    transition: .5s;
    
}

.footer-iconTop a:hover::before {
    width: 100%;
}

.footer-iconTop a i {
    font-size: 2.4rem;
    color: var(--bg-color);
    transition: .5s;
}

.footer-iconTop a:hover i {
    color: var(--main-color);
}

::-webkit-scrollbar{
    width: 20px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}
::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}

@media (max-width: 520px) {
    html {
        font-size: 50%;
    }

    .sidebar {
        font-size: 10rem;
    }
}
::-webkit-scrollbar{
    width: 20px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}
::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}

.header {
    position: relative;
    padding-top: 15rem; /* Default padding for larger screens */
    padding-bottom: 60px;
    text-align: center;
    color: #ffffff;
    overflow: hidden; /* Ensure content doesn't overflow */
    background-image: url('bg-arrows.png'); /* Set your background image here */
    background-size: cover; /* Ensures the image covers the entire element */
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents the background from repeating */
}
/* Adjust padding for medium screens */
@media (max-width: 1024px) {
    .header {
        padding-top: 15rem; /* Decrease padding for medium screens */
    }
}

/* Adjust padding for small screens */
@media (max-width: 768px) {
    .header {
        padding-top: 15rem; /* Further decrease padding for tablets */
    }
}

/* Adjust padding for extra small screens */
@media (max-width: 520px) {
    .header {
        padding-top: 25rem; /* Minimize padding for mobile screens */
    }
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0; /* Ensure it is behind all content */
    background-repeat: no-repeat; /* Prevents background from repeating */
    background-attachment: fixed; /* Fixes the background to stay in place during scrolling */
}

/* Ensure header content is above the background */
.header-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    z-index: 1; /* Keep it above the background */
}

.header h1 {
    font-size: 3em;
    margin: 0 0 10px;
}

.header h2 {
    font-size: 1.5em;
    font-weight: normal;
    margin-bottom: 20px;
    color: #f3c515;
}

.header p {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    background-color: #f3c515;
    color: #0e2431;
    border: none;
    padding: 12px 25px;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #ffdd57;
}

.image-text-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 40px auto;
    gap: 40px;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content {
    flex: 2;
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 30px;
}

.content-item {
    margin-bottom: 30px;
}

.content-item h3 {
    font-size: 1.8em;
    color: #f3c515;
    margin-bottom: 10px;
}

.content-item p {
    font-size: 1.1em;
    line-height: 1.6;
    color: white;
}

@media (max-width: 768px) {
    .image-text-section {
        flex-direction: column;
        text-align: center;
    }

    .image-container {
        margin-bottom: 20px;
    }

    .profile-image {
        max-width: 200px;
    }

    .content {
        padding: 20px;
    }

    .content-item p {
        font-size: 1.5rem;
    }

    .content-item h3 {
        font-size: 2.5rem;
    }

    .header-content p {
        font-size: 1.5rem;
    }

    .header-content .buttons {
        font-size: 1.5rem;
    }
}

.bg {

    background-color: var(--bg-color);
}

.purpouse {
    background: var(--secongbg-color);
}

.container2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
    background: var(--secongbg-color);
}

.image-container {
    flex: 1;
    padding: 20px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.content2 {
    flex: 2;
    padding: 20px;
}

.content2 h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.content2 ul {
    list-style-type: disc;
    padding-left: 20px;
    color: white;
}

.content2 ul li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .image-container, .content2 {
        width: 100%;
        padding: 10px;
    }

    .content2 h2 {
        font-size: 3.5rem;
    }

    .content2 li {
        font-size: 1.5rem;
    }
}


.container3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
    color: white;
}

.content3 {
    flex: 1;
    padding: 20px;
}

.content3 h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 3px solid white;
    display: inline-block;
}

.content3 ul {
    list-style-type: none;
    padding-left: 0;
}

.content3 ul li {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.content3 ul li::before {
    content: '\2713';
    color: #d18c4a;
    margin-right: 10px;
    font-size: 1.5rem;
}

.image-container3 {
    max-width: 500px;
    flex: 1;
    padding: 20px;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.image-container3 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container3 {
        flex-direction: column;
        align-items: flex-start;
    }

    .content3, .image-container {
        width: 100%;
        padding: 10px;
    }

    .content3 h2 {
        font-size: 3.5rem;
    }

    .content3 ul li {
        font-size: 1.5rem;
    }
}


.meeting-location-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
    border-radius: 1rem;
    background-color: #f4f4f4;
    gap: 2rem;
    height: 40rem;
  }
  
  .meeting-text {
    width: 45%;
    padding: 2rem;
  }
  
  .meeting-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .meeting-text p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .meeting-map {
    width: 45%;
    height: 100%;
    background-color: #ccc;
    border-radius: 1rem;
    overflow: hidden;
  }
  
  .meeting-map iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  @media (max-width: 900px) {
    .meeting-location-section {
      flex-direction: column;
      height: auto;
    }
  
    .meeting-text, .meeting-map {
      width: 100%;
    }
  
    .meeting-text {
      text-align: center;
      padding: 1rem;
    }
  }

  .about {
    background: url(1.1.png) no-repeat;
    background-size: cover;
    border-radius: 20px;
}

.about-1 {
    margin: 30px;
    padding: 5px;
    padding-top: 5rem;
}

.about-1 h1 {
    text-align: center;
    color: white;
    font-weight: bold;
    padding-top: 10rem;
    font-size: 4.5rem;
}

.about-1 span {
    text-align: center;
    color: #ffff72;
    font-weight: bold;
    padding-top: 10rem;
}

.about-1 h3{
    text-align: center;
    padding: 3px;
    color: #fff;
}

.about-1 p {
    text-align: center;
    padding: 3px;
    color: #fff;
}

.about-item {
    margin-bottom: 20px;
    margin-top: 20px;
    background-color: gray;
    padding: 80px, 30px;
    box-shadow: 0 0 9px rgba(0, 0, 0, .6);
    border-radius: 20px;
    transition: .5s;
    position:relative;
}

.about-item i {
    font-size: 43px;
    margin: 0;
    transition: .5s;
}

.about-item i:hover {
    color: var(--main-color);
}

.about-item h3 {
    font-size: 25px;
    margin-bottom: 10px;
    transition: .5s;
}

.about-item h3:hover {
    color: var(--main-color);
}

.about-item hr{
    width: 46px;
    height: 3px;
    background-color: var(--main-color);
    margin: 0 auto;
    border: nome;
}


.col-md-4 p{
    color: white;
    transition: .5s;
}


.col-md-4 p:hover{
    color: #00abf0;

}

.about-item:hover{
    background-color: var(--bg-color);
}

.about-item:hover i{
    transform: translateY(-20px);
}

.about-item:hover i,
.about-itemhover h3,
.about-item:hover hr {
    transition: all 400ms ease-in-out;
}

.slider{
    height: 100vh;
    margin-top: -50px;
    position: relative;
    color: white;
}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider .list .item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #081b29 30%, transparent
    );
}
.slider .list .item .content5{
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}
.slider .list .item .content5 p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 10px;
}
.slider .list .item .content5 h2{
    font-size: 100px;
    margin: 0;
}
.slider .list .item.active{
    opacity: 1;
    z-index: 10;
}
@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.slider .list .item.active h2{
    animation-delay: 1s;
}
.slider .list .item.active p:nth-child(3){
    animation-duration: 1.3s;
}
.arrows{
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
}
.arrows button{
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}
.arrows button:hover{
    background-color: #eee;
    color: black;
}
.thumbnail{
    position: absolute;
    bottom: 50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}
.thumbnail::-webkit-scrollbar{
    width: 0;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.thumbnail .item.active{
    filter: brightness(1.5);
}
.thumbnail .item .content5{
    position: absolute;
    inset: auto 10px 10px 10px;
}
@media screen and (max-width: 678px) {
    .thumbnail{
        justify-content: start;
    }
    .slider .list .item .content5 h2{
        font-size: 60px;
    }
    .arrows{
        top: 10%;
    }
}


.sliders {
    padding-top: 5rem;
}

::selection {
    color: #181818;
    background: var(--main-color);
}

#slider-container{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-img {
    width: 350px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-details {
    padding: 20px;
    background: linear-gradient(90deg, #202020 20%, #222222);
    width: 500px;
    border-radius: 0px 10px 10px 0px;
}

.slider-details strong {
    color: #e4e4e4;
    font-size: 1.2rem;
    font-weight: 600;
}

.rating {
    display: flex;
    align-items: center;
    margin: 5px 0px;
}

.rating i {
    color: var(--main-color);
    margin: 0px 2px;
}

.slider-details p {
    color: #8f8f8f;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 10px 0px;
}

.movie-cast {
    display: flex;
    align-items: center;
}

.movie-cast a {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    overflow: hidden;
    margin: 0px 4px;
}

.movie-cast a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.card-btns a {
    min-width: 160px;
    height: 40px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
}

.play-btn {
    background: var(--main-color);
}

.play-btn i {
    margin-right: 10px;
}

.trailer-btn {
    color: #cecece;
    opacity: 0.8;
    background-color: var(--bg-color);
    border: var(--secongbg-color);
}

.card-btns a:hover {
    background-color: #f8346f;
    transition: all ease 0.3s;
    color: #fff;
    border: none;
    opacity: 1;
}

.diagonal-image{
    color: #fff;
    display: flex;
    justify-content: center;
}

.diagonal-image a img{
    transform: rotate(15deg); /* Puedes ajustar el ángulo */
    width: 500px; /* Ajusta el tamaño según necesites */
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 100); /* Sombra elegante */
}

@media (max-width: 768px) {
    #slider-container {
        flex-direction: column; /* Cambia a diseño vertical */
    }

    .slider-box {
        flex-direction: column; /* Imagen arriba, texto abajo */
        align-items: center; /* Centra los elementos */
    }

    .slider-img {
        width: 100%; /* Imagen ocupa el ancho completo */
        height: auto; /* Mantiene proporción */
        margin-bottom: 20px; /* Espaciado con el texto */
    }

    .slider-details {
        width: 100%; /* Texto ocupa el ancho completo */
        padding: 15px; /* Ajusta el padding */
        border-radius: 10px; /* Redondea bordes */
    }
}

@media (max-width: 480px) {
    .slider-details p {
        font-size: 2rem; /* Reduce el tamaño del texto */
    }

    .slider-details strong {
        font-size: 2.5rem; /* Reduce el tamaño del texto */
    }

    .rating {
        font-size: 2.5rem; /* Reduce el tamaño del texto */
    }

    .card-btns a {
        min-width: 120px; /* Botones más pequeños */
        font-size: 1.5rem; /* Texto de los botones reducido */
    }
}