@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;
    }
}


  .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;
}

.pdf-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .pdf-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
  
  .pdf-center iframe {
    height: 51rem;
    width: 40rem;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
  }
  

  .title h3 {
    color: #fff;
    padding-top: 10rem;
    text-align: center;
    font-weight: 700;
    margin: 0 auto;
    max-width: 90%;
    font-size: 2.5rem; /* tamaño base para pantallas normales */
  }
  
  /* En celulares (pantallas hasta 480px) */
  @media (max-width: 480px) {
    .title h3 {
    padding-top: 18rem;
      font-size: 3rem; /* más grande en celulares */
    }
  }
  
  /* En tablets o pantallas medianas (481px–768px) */
  @media (min-width: 481px) and (max-width: 768px) {
    .title h3 {
      font-size: 2.2rem;
    }
  }
  
  .pdf-download {
    padding-bottom: 5rem;
  }
  
  .download-btn {
    padding: 12px 24px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .download-btn:hover {
    background-color: #0056b3;
  }