/* font */
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');
:root{
    --blue :rgb(212, 39, 68);
    --black: #000;
    --p-color: #393939;
    --font-Dosis: 'Dosis', sans-serif;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;;
    text-decoration: none;
    transition: 0.4s;
}
*::selection{
    background-color: var(--blue);
    color: #fff;
}

body{
    background-color: #EEDDE2;
}

html{
    scroll-behavior: smooth;
}
::-webkit-scrollbar{
    width: 12px;
}
::-webkit-scrollbar-track{
    background-color: #f1f1f1;
}
::-webkit-scrollbar-thumb{
    background-color: var(--blue);
}
.contanier{
    width: 85%;
    margin: auto;
}
section{
    padding-top: 100px;
}
.sec-top{
    text-align: center;
    margin-bottom: 100px;
}
.sec-top span{
    font-size: 40px;
    padding-bottom: 10px;
    border-bottom: 4px solid #3ea7c7;
    font-family: var(--font-Dosis);
    font-weight: 700;
    text-transform: capitalize;
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--font-Dosis);
}
.boxs{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.boxs .box{
    width: 30%;
}


.btn{
   
    color: #fff;
    background-color: var(--blue);
    border-radius: 5px;
    padding: 18px 50px;
    font-weight: 700;
}
.btn:hover{
    background-color: #fff;
    color: var(--blue);
}

/* start header */

.header{
    position: fixed;
    width: 100%;
    z-index: 1000;
}
.header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70PX;
}
.header nav .nav-links a{
    color: #fdfafa;
    font-weight: 500;
    padding: 0 17px;
    text-transform: capitalize;
}
.header nav .nav-links a:hover,
.header nav .nav-links a.active{
    color: var(--blue);
}

/* now we will add class active to header on scroll*/
.header.active{
    background-color: #fff;
    border-bottom: 1px solid #7272724d;
}
.header.active nav .nav-links a{
    color: var(--p-color);
}
.header.active nav .nav-links a:hover,
.header.active nav .nav-links a.active{
    color: var(--blue);
}
#btnMenu{
    display: none;
}

/* start Home */
.home{
    height: 130vh;
    width: 100%;
    background: url(/VISITACION-LANDING-PAGE/img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 300px;
}
.home::after{
    content: '';
    position: absolute;
    bottom: -2px;
    z-index: 50;
    height: 200px;
    background: url(/VISITACION-LANDING-PAGE/img/shape.png);
    left: 0;
    width: 100%;
    background-repeat: repeat-x;
    background-size: cover;
}
/* home::after MEdia */

@media(min-width:480px){
    .home::after{
        height: 78px;
    }
}
@media(min-width:576){
    .home::after{
        height: 105px;
    }
}
@media(min-width:768px){
    .home::after{
        height: 135px;
    }
}
@media(min-width:992px){
    .home::after{
        height: 160px;
    }
}
@media(min-width:1200px){
    .home::after{
        height: 182px;
    }
}

.home .text p{
    font-size: 22px;
    color: #e4e4e4;
    font-weight: 600;
    margin-bottom: 10px;
}
.home .text p span{
    display: inline-block;
    height: 1px;
    width: 70px;
    background-color: #fff;
    opacity: 0.3;
    top: -5px;
    position: relative;
    margin: 0 10px;
}
.home .text h1{
    font-size: 70px;
    color: #fff;
    margin-bottom: 35px;
    font-weight: 800;
}
.home .text ul{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.home .text ul li{
    color: #e4e4e4;
    font-size: 22px;
    list-style: none;
    margin-right: 50px;
}


/* start About */

.about .content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.about .content .text{
    padding: 20px 60px 20px 20px;
    width: 50%;
}
.about .content .text h3{
    font-size: 28px;
    margin-bottom: 15px;
}
.about .content .text span{
    color: var(--p-color);
    font-weight: 600;
    line-height: 1.6;
    font-size: 20px;
    font-family: var(--font-Dosis);
}
.about .content .text p{
    padding: 20px 0;
    line-height: 1.6;
}
.about .content .div-img{
    width: 45%;
}
.about .content .div-img img{
    width: 100%;
}

.about .cont2{
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.about .cont2 .promo-number{
    padding: 40px 30px;
    background-color: #f3f3f3;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}
.about .cont2 .promo-number .small-box{
    width: 50%;
    text-align: center;
    padding: 30px 15px 28px;
}
.about .cont2 .promo-number .small-box span{
    font-size: 50px;
    font-family: var(--font-Dosis);
    font-weight: 700;
    letter-spacing: 4px;
}
.about .cont2 .promo-number .small-box p{
    padding-top: 10px;
    font-size: 18px;
    color: var(--blue);
}
.bord-rig {
    border-right: 1px solid #e0e0e0;
}
.bord-botm{
    border-bottom:  1px solid #e0e0e0;
}
.about .skill-with-social{
    width: 50%;
    padding-left: 50px;
}
.about .skill-with-social .skill-list{
    margin-bottom: 50px;
}
.about .heading{
    font-size: 25px;
    margin-bottom: 25px;
}
.about .single-skill{
    margin-bottom: 20px;
}
.about .single-skill .skill-title{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.about .single-skill .skill-title h3,
.about .single-skill .skill-title span{
    color: #393939;
    font-size: 18px;
}
.about .single-skill .progress{
    width: 100%;
    height: 5px;
    background-color: #dbdbdb;
    position: relative;
}
.about .single-skill .progress .progress-bar{
    position: absolute;
    background-color: var(--blue);
    height: 5px;
    width: 80%;
}
.about .social-status .social-profile-list a{
    margin-right: 10px;
}
.about .social-status .social-profile-list a i{
    color: #fff;
    font-size: 16px;
    background-color: var(--blue);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    line-height: 45px;
    text-align: center;
    position: relative;
    top: 0;
}
.about .social-status .social-profile-list a i:hover{
    background-color: #000;
    top: -7px;
}

/* Responsive Services Section */
.services {
    padding: 60px 5%;
    text-align: center;
    background: #f9f9f9;
}

.services .sec-top span {
    font-size: 30px;
    font-weight: bold;
    color: var(--blue);
    display: block;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Service Box Container */
.services .boxs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 5%;
}

/* Individual Service Box */
.services .boxs .box {
    background: linear-gradient(135deg, #ffffff, #f1f1f1);
    text-align: center;
    padding: 30px;
    position: relative;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .boxs .box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.services .boxs .box i {
    font-size: 45px;
    color: var(--blue);
    margin-bottom: 15px;
}

.services .boxs .box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.services .boxs .box p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    padding: 0 10px;
}

/* Progress Bar Effects */
.progress {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--pink));
    width: 0;
    transition: width 1.5s ease-in-out;
}

/* Pages Section Styling */
.pages {
    padding: 60px 0;
    background-color: #f8f9fa; /* Light gray background */
    text-align: center;

    /* Full-screen background image */
    background-image: url('/VISITACION-LANDING-PAGE/img/bgg.jpg');
    background-repeat: no-repeat;
    background-size: cover;  /* Ensures the image covers the entire section */
    background-position: center;  /* Centers the image */
    
}

.pages .sec-top span {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pages .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.pages .content h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
}

.pages .content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.pages .content .words {
    font-size: 18px;
    color: #090d0ead;
    margin-bottom: 30px;
}

.page-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    text-decoration: none;
    color: #222;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-card i {
    font-size: 40px;
    color: var(--blue); /* Blue color */
    margin-bottom: 10px;
}

.page-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #222;
}

.page-card p {
    font-size: 16px;
    color: #666;
}



@keyframes fillProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.progress-bar.animated {
    animation: fillProgress 1.5s forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services {
        padding: 40px 5%;
    }

    .services .sec-top span {
        font-size: 26px;
    }

    .cont2 {
        display: flex;
        flex-direction: column;
    }

    .promo-number {
        order: 1;
    }

    .skill-with-social {
        order: 2;
        margin-top: 20px;
    }
}


/* start portfolio */

.portfolio .menu-portf{
    text-align: center;
    margin-bottom: 50px;
}
.portfolio .menu-portf ul li{
    display: inline-block;
    font-weight: 600;
    color: #393939;
    padding: 8px 15px;
    cursor: pointer;
}
.portfolio .menu-portf ul li:hover,
.portfolio .menu-portf ul li.active{
    background-color: var(--blue);
    color: #fff;
}

.portfolio .projects .boxs{
    gap: 40px;
}
.portfolio .projects .boxs .box{
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.portfolio .projects .boxs .box img{
    width: 100%;
}
.portfolio .projects .boxs .box:hover img{
    transform: scale(1.1);
}
.portfolio .projects .boxs .box .img-hover{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(rgba(255,255,255, 0.272), rgba(26,26,26, 0.675));
    opacity: 0;
}
.portfolio .projects .boxs .box:hover .img-hover{
    opacity: 1;
}
.portfolio .projects .boxs .box .img-hover span{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    font-family: var(--font-Dosis);
}


/* Blog Section Styling */
#Blog {
    background: linear-gradient(45deg,var(--blue), var(--blue));
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    margin: 40px auto;
    max-width: 900px;
}



/* Blog Section Styling */
#Blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px; 
    background: linear-gradient(135deg, Blue, var(--blue),gray);
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(255, 117, 140, 0.3);
    transition: transform 0.3s ease-in-out;
}

#Blog:hover {
    transform: scale(1.02);
}



/* Blog Section Styling */
#Blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    
    /* Full-screen background image */
    background-image: url('/VISITACION-LANDING-PAGE/img/bgg.jpg');
    background-repeat: no-repeat;
    background-size: cover;  /* Ensures the image covers the entire section */
    background-position: center;  /* Centers the image */
   

   
    box-shadow: 0px 8px 20px rgba(200, 155, 60, 0.3);
    transition: transform 0.3s ease-in-out;
}

#Blog:hover {
    transform: scale(1.02);
}



/* Blog Description */
.section-description {
    font-size: 1.3rem;
    line-height: 1.9;
    font-weight: 400;
    color: #2e2a1e;  /* Dark brown for readability */
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}

/* Hover effect for a glowing effect */
.section-description:hover {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 10px 25px rgba(255, 255, 255, 0.4);
}







/* Section Title Styling */
.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* Gallery Grid */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.3s ease-in-out;
}

/* Hover Effect */
.gallery-item:hover {
    transform: scale(1.08);
    box-shadow: 0px 10px 20px rgba(255, 72, 0, 0.4);
}

/* Audio Section */
.audio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.audio-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    width: 80%;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

audio {
    width: 100%;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    display: none;
}

.lightbox-video {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    display: none;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.close:hover {
    color: red;
}

/* Contact Section */
.Contacts {
    background: rgba(20,20,20,255)
    ;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    padding-bottom: 30px;
}



/* Container */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
    
}

/* Contact Content */
.contact-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--blue); /* Pink */
}

.contact-content p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 700px;
    margin: auto;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 79, 139, 0.1); /* Light pink transparency */
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 79, 139, 0.3);
    width: 85%;
    max-width: 420px; /* Keeps form compact */
    margin: 20px auto;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.contact-form:hover {
    transform: scale(1.02);
}

/* Form Title */
.contact-form h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--blue);
}

/* Form Fields */
.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 2px solid var(--blue); /* Pink Border */
    border-radius: 6px;
    background: white;
    color: black;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: var(--blue);
    background: #fff;
}

/* Submit Button */
.contact-form button {
    background: var(--blue);
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: var(--blue);
    transform: scale(1.05);
}

/* Social Media Section */
.social-status {
    margin-top: 25px;
}

.social-status h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: white;
}

/* Social Media Links */
.social-profile-list {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-profile-list a {
    font-size: 28px;
    color:var(--blue);
    transition: 0.3s ease-in-out;
}

.social-profile-list a:hover {
    color: var(--blue);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content h2 {
        font-size: 28px;
    }

    .contact-content p {
        font-size: 16px;
    }

    .contact-form {
        width: 95%;
        padding: 18px;
    }

    .contact-form h3 {
        font-size: 20px;
    }

    .contact-form input, 
    .contact-form textarea {
        font-size: 14px;
        padding: 10px;
    }

    .contact-form button {
        font-size: 15px;
        padding: 10px;
    }

    .social-profile-list a {
        font-size: 26px;
    }
}




.read-more {
    color: #e60f0f;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Video & Audio Styling */
.media {
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
}

.media-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


/* start news */

.news .boxs .box{
    background-color: #f8f8f8;
}
.news .boxs .box .div-img{
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.news .boxs .box .div-img img{
    width: 100%;
}
.news .boxs .box:hover .div-img img{
    transform: scale(1.2);
}
.news .boxs .box .div-img::after{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    background-color: #f8f8f8;
    height: 50px;
    width: 100%;
    clip-path: polygon(80% 100%,100% 30% , 100%  100%, 0 100% , 0 0);
    z-index: 1;
}
.news .boxs .box .text{
    padding: 30px;
}
.news .boxs .box .text span{
    font-size: 14px;
    color: var(--p-color);
    margin-bottom: 15px;
}
.news .boxs .box .text span .spn2{
    color: var(--blue);
    cursor: pointer;
}
.news .boxs .box .text p{
    font-size: 22px;
    cursor: pointer;
    font-family: var(--font-Dosis);
    font-weight: 700;
}
/* start footer */

.footer{
    height: 90vh;
    background-color: #000;
    border-top: 15px solid var(--blue);
    padding-top: 0;
    margin-top: 200px;
    display: flex;
    color: #fff;
}

.footer .contact{
    background-color: #141414;
    width: 50%;
    height: 100%;
    position: relative;
}
.footer .contact::after{
    position: absolute;
    content: '';
    left: 0;
    top: -125px;
    background-color: #141414;
    height: 130px;
    width: 100%;
    clip-path: polygon(0 100%, 35% 0 ,100% 60px, 100% 100%);
}
.footer .contact .sec-top{
    margin-bottom: 60px;
}
.footer .contact .sec-top p{
    margin-top: 40px;
    font-size: 18px;
    color: #cccccc;
}
.footer .contact form{
    padding: 0 50px;
    display: flex;
    flex-direction: column;
}
.footer .contact form input,
.footer .contact form textarea{
    outline: none;
    border: none;
    padding: 15px 10px;
    background-color: #000;
    color: #fff;
    margin-bottom: 20px;
}
.footer .contact form button{
    cursor: pointer;
    border: none;
    font-size: 18px;
    width: 180px;
    border-radius: 0;
}

.footer .content{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 100px;
}
.footer .content .item{
    margin-bottom: 30px;
}
.footer .content .item .cont-head{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.footer .content .item .cont-head i{
    margin-right: 8px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--blue);
    text-align: center;
    border-radius: 50%;
    
}
.footer .content .item .cont-head h6{
    font-size: 22px;
}

.Contacts{
    padding-bottom: 20px;
    
}


/* FOOTER */
footer {
    text-align: center;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}



/* MEdia */

@media(max-width:950px){
    .contanier{
        width: 90%;
    }
    .boxs .box{
        width: 45%;
        margin-bottom: 30px;
    }
    .btn{
        padding: 14px 35px;
    }
    .header nav .nav-links a{
        font-size: 14px;
        padding: 0 14px;
    }
    .home{
        height: 100vh;
    }
    .home .text{
        margin-left: 50px;
    }
    .home .text h1{
        font-size: 60px;
    }
    .home .text ul li{
        font-size: 18px;
    }

}

.cv-button {
    margin-left: 10px;
    background: linear-gradient(45deg, var(--blue));
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px var(--blue);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cv-button:hover {
    background: linear-gradient(45deg, #0056b3, #0096ff);
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0, 86, 179, 0.5);
}

.cv-button:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 5px rgba(0, 86, 179, 0.5);
}



@media (max-width: 800px) {
    #btnMenu {
        position: absolute;
        top: 50%;
        right: 40px;
        transform: translateY(-50%);
        display: block;
        color: var(--blue);
        font-size: 30px;
        z-index: 1000; /* Ensures it stays on top */
        cursor: pointer;
    }
    .header nav .nav-links {
        position: absolute;
        top: 0;
        right: -100%; /* Initially hidden */
        width: 60%;
        height: 100vh;
        background-color: #fff;
        padding: 100px 10px 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: 3px solid #1363db4d;
        transition: right 0.3s ease-in-out; /* Smooth transition */
    }
    .header nav .nav-links.active {
        right: 0; /* Show when active */
    }
    .header nav .nav-links a {
        display: block;
        font-size: 20px;
        padding: 20px 0;
        color: var(--p-color);
    }
    .btn {
        display: inline-block;
        padding: 14px 25px;
        background-color: var(--blue);
        color: white;
        border-radius: 5px;
        text-align: center;
        margin-top: 10px;
        width: 80%; /* Makes it responsive */
        text-decoration: none;
    }
}

@media(max-width :600px){
    .boxs .box{
        width: 80%;
        margin: auto;
        margin-bottom: 30px;
    }
    .home .text p{
        font-size: 18px;

    }
    .home .text h1{
        font-size: 46px;
    }
    .header .text ul li{
        font-size: 15px;
        padding-bottom: 10px;
    }
    .home .text{
        margin-left: 20px;
    }
    .about .content .div-img,
    .about .content .text{
        width: 100%;
    }
    .about .cont2 .promo-number,
    .about .cont2 .skill-with-social{
        width: 90%;
    }
    .about .cont2 .promo-number .small-box p{
        font-size: 16px;
    }
    .portfolio .menu-portf ul li{
        padding: 6px 12px;
        font-size: 14px;
    }
}


/* REGISTER PAGE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

#body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #2ecc71, #16a085);
    background-image: url("/VISITACION-LANDING-PAGE/img/bgLog.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.wrapper {
    width: 400px;
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.wrapper h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

.login {
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.wrapper .input-box {
    position: relative;
    width: 100%;
    margin: 20px 0;
}

.input-box input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    font-size: 16px;
    color: white;
    padding: 15px 45px 15px 20px;
    transition: 0.3s;
}

.input-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-box input:focus {
    border-color: white;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.input-box i {
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: white;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: 15px 0;
}

.remember-forgot a {
    color: skyblue;
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
}

.btn {
    width: 100%;
    height: 50px;
    background: var(--blue);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: skyblue;
    box-shadow: 0 0 8px rgba(255, 165, 0, 0.7);
}

.register {
    color: white;
    font-family: 'Times New Roman', Times, serif;
}

.register-link {
    margin-top: 20px;
    font-size: 14px;
}

.register-link a {
    color: #f1c40f;
    font-weight: bold;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

/* RESPONSIVE DESIGN */
@media (max-width: 450px) {
    .wrapper {
        width: 90%; /* Adjusted width for smaller screens */
        padding: 20px;
    }

    nav ul {
        font-size: 14px;
    }

    header {
        padding: 10px 0;
    }
}
