*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: poppins, sans-serif;
    text-decoration: none;
}

body{
    overflow-x: hidden;
    background-color: #222;
    color: #fff;
}

.hero-header{
    width:100%;
    height: 100%;
    min-height: 100vh;
}

.wrapper{
    width:1280px;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

header{
    padding: 40px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.logo i{
    height: 45px;
    width:45px;
    background-color: #007ced;
    border-radius: 50%;
    color:#fff;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
    text-align: center;
}

.logo .logo-text{
    font-size: 24px;
    font-weight: 500;
    color:#fff;
}

nav .togglebtn{
    width: 35px;
    height: 35px;
    position: absolute;
    top:45px;
    right: 3%;
    z-index: 5;
    cursor: pointer;
    display: none;
}

nav .togglebtn span{
    display: block;
    background-color: #007ced;
    margin: 5px 0px;
    width:100%;
    height:3px;
    transition: 0.3s;
    transition-property: transform, opacity;
}

nav .navlinks{
    list-style-type: none;
}

nav .navlinks li{
    display: inline-block;
}

nav .navlinks li a{
    color:#e5e5e5;
    margin-right: 2.5rem;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top:4rem;
}

.container .hero-pic{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 15px solid #444;
    box-shadow: 5px 7px 25px rgba(0,0,0,0.5);
}

.hero-pic img{
    height: 100%;
    width:100%;
    transition: 0.5s;
}

.hero-pic img:hover{
    transform: scale(1.2);
}

.hero-text{
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.hero-text h5{
    color:#e5e5e5;
    font-size: 14px;
}

.hero-text h5 span{
    color:#007ced;
    font-size: 16px;
}

.hero-text h1{
    color: #007ced;
    font-size: 3rem;
}

.hero-text p{
    color:#e5e5e5;
}

.btn-group{
    margin:45px 0;
}

.btn-group .btn{
    border-color: #d5d5d5;
    color:#fff;
    background-color: #333;
    padding: 12px 25px;
    margin: 5px 0px;
    margin-right:7px;
    border-radius: 30px;
    border:2px solid #e5e5e5;
    box-shadow:  0 10px 10px -8px rgb(0 0 0 / 78%);
}

.btn.active{
    border-color: #007ced;
}

.hero-text .social i{
    color: #e5e5e5;
    font-size: 18px;
    margin-right: 10px;
    transition: 0.5s;
}

.hero-text .social i:hover{
    color:#007ced;
    transform: rotate(360deg);
}

 /* Section for social media links */
 .social-section{
    background-color: #333;
    padding: 40px 0;
    text-align: center;
}

.social-section h2{
    color: #fff;
    margin-bottom: 20px;
    font-size: 2rem;
}

.social-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.social-icons a{
    color: #fff;
    font-size: 2rem;
    transition: 0.3s;
}

.social-icons a img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.social-icons a:hover{
    color: #007ced;
}

.change-colors-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007ced;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.change-colors-btn:hover {
    background-color: #005bb5;
}
/* Project section */
.projects-section {
    background-color: #f4f4f4;
    padding: 40px 0;
    text-align: center;
}

.projects-section h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.projects-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.project-item {
    width: 18%;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.project-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 5px 7px 25px rgba(0, 0, 0, 0.1);
}
 
.project-item h3 {
    color: #007ced;
    margin-top: 10px;
}

.project-item:hover {
    transform: scale(1.05);
}
.view-all-projects-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007ced;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.view-all-projects-btn:hover {
    background-color: #005bb5;
}

.progress-bar-container {
    width: 100%;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
}

.progress-bar {
    width: 0;
    height: 10px;
    background-color: #007ced;
    transition: width 1s ease;
}


        /* Responsive design & displaying navbar for small screens */
        @media(max-width:930px) {
            nav .togglebtn {
                display: initial;
            }
            /* for toggle button**/
            .click {
                top:45px;
            }
            .click span {
                position: absolute;
                margin-top:12px
            }
            .click span:first-child {
                transform: rotate(-40deg);
            }
            .click span:nth-child(2) {
                opacity: 0;
                margin:0;
            }
            .click span:last-child {
                transform: rotate(45deg);
                top:0;
            }
            nav .navlinks {
                position: absolute;
                top:110px;
                right:-100%;
                bottom: 0;
                width: 60%;
                height: 100vh;
                background-color: #222;
                z-index: 3;
                box-shadow: 5px 13px 30px rgba(0,0,0,0.1);
                transition: 0.5s;
                padding: 25px 0px;
            }
            nav .navlinks li {
                display: block;
            }
            nav .navlinks li a {
                display: block;
                margin-bottom: 15px;
                text-align: center;
            }
            nav .navlinks.open {
                right:0;
            }
        }
        @media(max-width:768px) {
            .container {
                flex-direction: column;
                padding-top:2rem
            }
            .hero-text {
                padding:40px 0px;
            }
        }
        @media(max-width:600px) {
            .project-item {
                width: 45%;
            }
        }
        @media(max-width:400px) {
            .project-item {
                width: 100%;
            }
        }

        .heading {
            padding: 10px; /* Aumenta o espaço interno, aumentando a área do fundo */
            width: 100%; /* Ajusta a largura do elemento, afetando o tamanho do fundo */
            margin: 0 auto; /* Centraliza o elemento dentro do seu contêiner pai */
            font-size: 2.0rem; /* Aumenta o tamanho da fonte */
        }

        .project-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .project-item img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .button-container {
            display: flex;
            justify-content: space-between;
            width: 100%;
            margin-top: 1px;
        }

        .left-button, .right-button {
            background-color: #007ced;
            color: white;
            border: none;
            align-items: center;
            border-radius: 5px;
            padding: 0.1px 1px;
            cursor: pointer;
        }

        .center-text {
            flex: 1;
            text-align: center;
            margin: 0;
            align-self: center;
        }

        .heading {
            color: black; 
            background-color: #007ced; 
            text-align: center; 
            margin: 40px 0 10px;
            font-weight: bold; 
        }
      
        @keyframes blink {
            50% {
                opacity: 0;
            }
        }

        .blinking {
            animation: blink 1.5s linear infinite;
            color: #007ced;  /* Ou qualquer cor que deseje para o texto */
        }

          /* Estilo para o campo de pesquisa */
.search-container {
margin-bottom: 20px;
text-align: center;
}

.search-input {
    padding: 10px;
    width: 80%;
    max-width: 400px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

  /* Modal Styles */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.8); /* Black with opacity */
}

.modal iframe {
    width: 80%;
    height: 80%;
    margin: 2.5% auto;
    display: block;
}


.close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #bbb;
}

.section {
    display: flex; /* Usado para alinhar os itens no centro vertical e horizontalmente */
    align-items: center; /* Alinha os itens verticalmente no centro */
    justify-content: center; /* Alinha os itens horizontalmente no centro */
    text-align: center; /* Alinha o texto no centro */
    margin: 0 auto; /* Centraliza o elemento horizontalmente */
    max-width: 80%; /* Define a largura máxima da seção (ajuste conforme necessário) */
    padding: 20px; /* Adiciona espaçamento interno (opcional) */
    box-sizing: border-box; /* Inclui padding e border no cálculo da largura */
}

.vpdf {
    position: relative; /* Necessário para posicionar o ícone de olho dentro do botão */
    display: inline-flex;
    align-items: center;
    background-color: #333; /* Cor de fundo inicial do botão */
    color: #fff; /* Cor do texto do botão */
    font-size: 16px; /* Tamanho da fonte */
    font-weight: bold;
    padding: 10px 15px; /* Espaçamento interno */
    border: none;
    border-radius: 5px; /* Bordas arredondadas */
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Adiciona sombra ao botão */
    transition: background-color 0.3s, box-shadow 0.3s; /* Transições suaves */
}

.vpdf:hover {
    background-color: transparent; /* Torna a cor de fundo transparente ao passar o mouse */
    color: #333; /* Cor do texto quando o fundo é transparente */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Intensifica a sombra ao passar o mouse */
}

.vpdf .eye-icon {
    position: absolute;
    right: 10px; /* Posiciona o ícone de olho dentro do botão */
    top: 50%;
    transform: translateY(-50%); /* Centraliza verticalmente */
    font-size: 18px; /* Tamanho do ícone */
    cursor: pointer;
    color: #fff; /* Cor do ícone */
    transition: color 0.3s; /* Transição suave para a cor do ícone */
}

.vpdf:hover .eye-icon {
    color: #333; /* Altera a cor do ícone ao passar o mouse */
}

.heading {
    color: white;
     background-color: #007ced;
      text-align: center; 
      margin: 40px 0 10px;
}

.heading {
    color: white;
    background-color: #007ced;
    text-align: center;
    margin: 40px 0 10px;
    padding: 10px;
}

.heading img {
    vertical-align: middle; /* Alinha verticalmente com o texto */
    margin-left: 10px; /* Espaçamento entre o texto e a imagem */
    width: 70px;
    border-radius: 8px; /* Adiciona bordas arredondadas à imagem */
}

/*modulos*/
.mod1, .mod2 , .mod3 , .mod4
{
    color: white;
    background-color: #007ced;
    text-align: center;
    margin: 40px 0 10px;
    padding: 10px;
}

.mod1, .mod2
img {
    vertical-align: middle; /* Alinha verticalmente com o texto */
    margin-left: 10px; /* Espaçamento entre o texto e a imagem */
    width: 70px;
    border-radius: 8px; /* Adiciona bordas arredondadas à imagem */
}

h4 {
    color: black;
    font-style: italic; /* Corrigido para aplicar o estilo itálico */
}
