@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Unbounded:wght@200..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Global / Reset ===== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.miguer-font {
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}


body{
    font-family: "Poppins", sans-serif;
    width: 100%;
    gap: 20px;
    position: relative;
}

h2{
    font-weight: bold;
    font-size: 2.5rem;
    margin-top: 30px;
}

.img-fluid{
    max-width: none;
}

section{
    padding: 40px 0px;
}


/* ===== Navbar ===== */
.navbar{
    background-color: #000080;
    color: white;
    padding: 15px;
    font-weight: lighter;
    z-index: 100;
    position: fixed;
    width: 100%;
    top: 0;
    transition: transform 0.3s ease-in-out;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.visible {
    transform: translateY(0);
}

.navbar-inner{
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links{
    display: flex;
    gap: 110px;
    margin-bottom: 0;
}

.nav-links li{
    list-style: none;
    position: relative;
    font-size: 19px;
    cursor: pointer;
}

.nav-links li a{
    color: white;
    text-decoration: none;
}

.nav-links li:hover{
    color: rgb(219, 219, 219);
}

.logo{
    text-decoration: none;
    color: white;
}

.nav-links li::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffae00;
    transition: all 0.3s ease;
}

.nav-links li:hover::after{
    width: 100%;
}

.nav-toggle{
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle .bar{
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
}

.nav-toggle.active .bar:nth-child(1){
    transform: translateY(6px) rotate(45deg);
}
.nav-toggle.active .bar:nth-child(2){
    opacity: 0;
}
.nav-toggle.active .bar:nth-child(3){
    transform: translateY(-6px) rotate(-45deg);
}
.nav-toggle .bar{
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.contact-button{
    padding: 10px 25px;
    background-color: #000080;
    border: 2px solid #ffffff;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

@media (max-width: 1200px){
    .nav-links{
        /* hide visually but allow transition */
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #000080;
        flex-direction: column;
        gap: 0;
        padding: 0 0;
        z-index: 200;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.35s ease;
    }

    .nav-links.active{
        max-height: 600px; /* large enough to show all items */
        opacity: 1;
        padding: 1rem 0;
    }

    .nav-links li{
        padding: 12px 20px;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .nav-toggle{
        display: inline-flex;
        margin-left: auto;
    }

      .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 50px;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1rem;
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
    transform: translateX(-50%);
  }

    .contact-button{
        display: none;
    }

    .feature-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}


/* ===== Hero Section ===== */
.hero-section{
    position: relative;
}

.hero-section button{
    z-index: 100;
}
.hero-section img{
    width: 100%;
}

.hero-section #job{
    color: #000080;

}
.hero-section::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("./1ff2f792-0666-4389-a396-73bd39847102.jfif");
    opacity: 0.1;
    z-index: -2;
}




/* ===== About Section ===== */
.about-holder{
    display: flex;
}
.about-name{
    font-weight: bold;
    color: #160479;
}

.about-image img{
    border: 2px solid black;
}

.lead{
    line-height: 40px;
}

.about-details{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-info{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.see-more{
    padding: 10px 0px;
    font-size: 18px;
    border: none;
    background-color: #160479;
    color: #fff;
    border-radius: 10px;
    font-family: "Miguer sans";
}

.about-image{
    max-width: 100%;
    border: 2px solid black;
    border-radius: 2rem;
}

/* ===== Services ===== */
.profile{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}
.profile img{
    width: 60px;
    border-radius: 50%;
    border: 3px solid #000080;
}

.service-all{
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    padding: 0px 50px;
}

.view-all{
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    background-color: #000080;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
}

.more-service{
    margin-top: 20px;
    font-size: 20px;
    gap: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.more-service a{
    text-decoration: none;
}

.feature-container{
    display: flex;
    gap: 3px;
    justify-content: space-between;
}

.feature{
    background-color: #ffffff;
    width: fit-content;
    padding: 60px 20px;
    border-radius: 10px;
    border: 2px solid #d4d4d4;
    cursor: pointer;
}

.feature:hover{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.feature-text{
    font-size: 13px;
    width: 300px;
}

.feature-icon{
    padding: 5px;
    border-radius: 5px;
    background-color: #000080;
}


/* ===== Skills ===== */

.skill{
    margin: 30px 0px;
}

.skill-head{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin: 20px 0px;
}

.skill-title{
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Skills progress animation */
.progress-bar {
    transition: width 1.2s ease-in-out;
    background-color: #000080; /* match theme */
}

.skill-head .percentage {
    font-weight: 600;
    color: #000080;
}

/* When animated, add a subtle highlight */
.skill.animated .progress-bar {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}


/* ===== Work Experience (Timeline) ===== */
.history {
    background-color:  rgb(249, 250, 251);
    padding: 4rem 0;
    margin: 4rem 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #3b82f6;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    padding-right: 2rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    padding-left: 2rem;
}

.timeline-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-year {
    font-weight: bold;
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 1rem;
    width: 12px;
    height: 12px;
    background: #000000;
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid white;
    box-shadow: 0 0 0 3px #3b82f6;
}


/* ===== Projects / Stats ===== */
.projects{
    position: relative;
    background-color: #f8f8f8;
    padding: 15px 0;
}

.project-card:hover{
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 0;
    text-align: center;
}

.stat-title {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 1rem;
}

.counter {
    font-size: 4rem;
    font-weight: bold;
    color: #000080;
}


/* ===== My Projects ===== */
.my-projects h3{
    color: #fff;
}


/* ===== Testimonials / Swiper / Carousel ===== */
.testimonial{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.testimonial__swiper{
    padding-bottom: 7em;
}

.testimonial__title{
    margin-bottom: 3rem;
}

.testimonial__card{
    width: 280px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 2rem 1.5rem 3rem ;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.425);
    border: 2px solid #d4d4d4;
}

.testimonial__img{
    width: 100px;
    height: 100px;
    border-radius: 4rem;
    border: 4px solid #000080;
}

.testimonial__name{
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
}

.testimonial__rating{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
    margin-bottom: 0.75rem;
}

.testimonial__stars{
    display: flex;
    align-items: center;
    column-gap: 0.25rem;
}

.testimonial__stars i{
    color: #ffae00;
}

.testimonial__number{
    font-size: 1.25rem;
    font-family: "Montserrat";
    margin: 0;
    font-weight: 600;
    color: #757575;
}

.swiper-pagnination-bullets{
    bottom: 0.4rem;
}

.testimonials .swiper-pagnination-bullet{
    background: #000080;
}

.swiper-button-prev{
    left: calc(50% - 3rem);
}
.swiper-button-next{
    right: calc(50% - 3rem);
}

.swiper-button-prev::after,
.swiper-button-next::after{
    content: '';
}

:is(.swiper-button-prev, .swiper-button-next){
    top: initial;
    bottom: 60px;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #000080;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
}

.contact-info li{
    list-style: none;
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 8px;
    margin-left: -30px;
}

.contact-us form{
    border-radius: 20px;
    border: 1.5px solid #eeeeee;
}

.contact-us form input{
    background: none;
    color: white;
}

.footer{
    background-color: #000080;
    color: white;
    padding: 20px 0px;
    text-align: center;
}

.footer a{
    color: white;
    text-decoration: none;
}

.footer li{
    list-style: none;
    position: relative;
    font-size: 19px;
}

.footer li:hover{
    color: rgb(219, 219, 219);
}

.footer li::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffae00;
    transition: all 0.3s ease;
}

.footer li:hover::after{
    width: 100%;
}






