* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

#clock {
    font-size: 1em;
    text-align: center;
    margin-top: 3px;
    color: #373A40;

}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: #373A40;
    font-weight: lighter;
    letter-spacing: -1px;
}

.logo span {
    color: #373A40;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    /*position: relative;*/
}

.nav-links li a {
    text-decoration: none;
    color: #373A40;
    font-weight: 500;
    transition: color 0.3s ease;
    font-weight: lighter;
}

.nav-links a:hover {
    color: #D91656;
}

.nav-links .cta {
    background-color: #D91656;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: bold;
    text-decoration: none;
}

.nav-links .cta:hover {
    background-color: #da2d66;
    color: #fff;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
transition: all 0.3s ease;
background-color: #b01245;
}

.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #b01245;
    padding: 5px 10px;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding-top: 60px;
        /*z-index: 100;*/
        
    }

    .nav-links li a {
        color: #c36786;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 16px 0;
    }

    .close-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }
}

.close-btn:hover {
    color: #D91656;
}

.hero-section {
min-height: 90vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}

.content-wrapper {
    text-align: center;
    max-width: 800px;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin-bottom: 2rem;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 4rem;
    font-weight: bold;
    color: #D91656;
    letter-spacing: -1px;
}

.introduction {
    font-size: 1.2rem;
    color: #373A40;
    margin-bottom: -1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
margin-top: 2rem;
gap: 20px;
}

.social-links img {
    width: 30px;
    
}

.social-links img:hover {
    background-color: #D91656;
    border-radius: 60%;
}


.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background-color: #c36786;
}

.circle-1 {
    width: 15vw;
    height: 15vw;
    top: -5vw;
    left: -5vw;
    background-color: #c36786;
}

.circle-2 {
    width: 10vw;
    height: 10vw;
    top: 10%;
    right: 5%;
    background-color: #c36786;
}

.circle-3 {
    width: 30vw;
    height: 30vw;
    bottom: 20%;
    left: 15%;
    background-color: #c36786;
}

.circle-4 {
    width: 20vw;
    height: 20vw;
    bottom: -5vw;
    right: -5vw;
background-color: #c36786;
}

@media (max-width: 768px) {
    .circle-1 {
        width: 12vw;
        height: 12vw;
        top: -3vw;
        left: -3vw;
    }

    .circle-2 {
        width: 8vw;
        height: 8vw;
        top: 15%;
        right: 3%;
    }

    .circle-3 {
        width: 25vw;
        height: 25vw;
        bottom: 15%;
        left: 10%;
    }

    .circle-4 {
        width: 18vw;
        height: 18vw;
        bottom: -3vw;
        right: -3vw;
    }
}

/* Further reduce sizes for very small screens */
@media (max-width: 480px) {
    .circle-1 {
        width: 10vw;
        height: 10vw;
    }

    .circle-2 {
        width: 7vw;
        height: 7vw;
    }

    .circle-3 {
        width: 20vw;
        height: 20vw;
    }

    .circle-4 {
        width: 15vw;
        height: 15vw;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        /*display: none;*/
        flex-direction: column;
        position: absolute;
        /*top: 100%;*/
        right: 0;
        background: white;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid #ddd;
    }

    .nav-links li a {
        font-size: 1rem;
    }

    .hero-section {
        padding: 1rem;
    }

    .title {
        font-size: 2rem;
    }
}

.skills-section {
    padding: 50px 20px;
position: relative;
overflow: hidden;
/*background-color: #c5a0ad;*/
}

.container {
    max-width: 1200px;
    margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
}

.text-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.text-content h2 {
    font-size:  2rem;
    margin: 0;
    color: #373A40;
}

.text-content .subtitle {
    font-size: 1.2rem;
    color: #da2d66;
    margin-bottom: 20px;
}

.text-content .description {
    font-size: 1.2rem;
line-height: 2;
color: #555;
margin-bottom: 20px;
padding-top: 40px;
}

.skills {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    padding-top: 150px;
}

.skill {
    margin-bottom: 15px;
}

.skill span {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #373A40;
}
.progress {
    background-color: #e0e0e0;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 10px;
    background: #595c64;
}

.decorative-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.ccircle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(214, 0, 0, 0.1);
}

.circle1 {
    width: 10vw;
    height: 10vw;
    top: 2vh;
    left: -5vw;
}

.circle2 {
    width: 13vw;
    height: 13vw;
    top: 30vh;
    right: 10vw;
}

.circle3 {
    width: 25vw;
    height: 25vw;
    bottom: 5vh;
    left: 30%;
}

.circle4 {
    width: 12vw;
    height: 12vw;
    bottom: 30vh;
    right: 10%;
}

@media (max-width: 768px) {
    .circle1 {
        width: 12vw;
        height: 12vw;
        left: -3vw;
    }

    .circle2 {
        width: 15vw;
        height: 15vw;
        top: 35vh;
        right: 5vw;
    }

    .circle3 {
        width: 28vw;
        height: 28vw;
        left: 25%;
    }

    .circle4 {
        width: 14vw;
        height: 14vw;
        bottom: 25vh;
        right: 8%;
    }
}

/* Adjustments for mobile screens */
@media (max-width: 480px) {
    .circle1 {
        width: 14vw;
        height: 14vw;
        left: -2vw;
    }

    .circle2 {
        width: 18vw;
        height: 18vw;
        top: 40vh;
        right: 3vw;
    }

    .circle3 {
        width: 30vw;
        height: 30vw;
        left: 20%;
    }

    .circle4 {
        width: 16vw;
        height: 16vw;
        bottom: 20vh;
        right: 5%;
    }
}

@media (max-width: 768px){
.container {
    flex-direction: column;
    text-align: center;
}

.skills {
    margin-top: 30px;
}
}

.services {
    text-align: center;
    padding: 50px 20px;
}

.services-intro {
    max-width: 600px;
    margin: 10px auto 40px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service {
    background: white;
    padding: 20px;
    max-width: 450px;
    width: 90%;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service:hover {
    transform: translateY(-5px);
}

.services-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #373A40;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
}
.icon img {
    width: 40px;
}

/*@media screen and (max-width: 1024px) {
    .services-container {
        gap: 20px;
    }

    .service {
        max-width: 400px;
    }
}*/

@media screen and (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service {
        max-width: 90%;
    }

    .services-intro {
        font-size: 1rem;
        line-height: 1.6;
    }
}
.pink-circles {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cccircle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(214, 0, 0, 0.1);
}

.circleI {
    width: 10vw;
    height: 10vw;
    top: 20vh;
    left: -5vw;
}

.circleII {
    width: 13vw;
    height: 13vw;
    top: 30vh;
    right: 10vw;
}

.circleIII {
    width: 25vw;
    height: 25vw;
    bottom: 5vh;
    left: 30%;
}

.circleIV {
    width: 12vw;
    height: 12vw;
    bottom: 30vh;
    right: 10%;
}

@media (max-width: 768px) {
    .circleI {
        width: 12vw;
        height: 12vw;
        left: -3vw;
    }

    .circleII {
        width: 15vw;
        height: 15vw;
        top: 35vh;
        right: 5vw;
    }

    .circleIII {
        width: 28vw;
        height: 28vw;
        left: 25%;
    }

    .circleIV {
        width: 14vw;
        height: 14vw;
        bottom: 25vh;
        right: 8%;
    }
}

/* Adjust for mobile screens */
@media (max-width: 480px) {
    .circleI {
        width: 14vw;
        height: 14vw;
        left: -2vw;
    }

    .circleII {
        width: 18vw;
        height: 18vw;
        top: 40vh;
        right: 3vw;
    }

    .circleIII {
        width: 30vw;
        height: 30vw;
        left: 20%;
    }

    .circleIV {
        width: 16vw;
        height: 16vw;
        bottom: 20vh;
        right: 5%;
    }
}

.recent {
    text-align: center;
    padding: 50px 20px;
}

.recent h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #373A40;
    padding-bottom: 40px;
    padding-top: 70px;
}

.work-item h4 a {
    color:#373A40;
}

.work-item h4 a:hover {
    color: #c36786;
}

.work-grid {
    display: grid;
    /*flex-wrap: wrap;*/
    gap: 20px;
    justify-content: center;
    align-content: center;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
}

.work-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #373A40;
}

/*.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(155, 66, 106, 0.2);
}*/

.work-image video {
    width: 70%;
    height: auto;
    border-radius: 10px;
}

/*@media screen and (max-width: 1024px) {
    .work-item {
        max-width: 400px;
    }

    .work-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .work-image video {
        width: 80%;
    }
}*/

@media screen and (max-width: 768px) {
    .work-grid {
        grid-template-columns: repeat(1, 1fr);
        flex-direction: column;
        align-items: center;
    }

    .work-item {
        max-width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .recent h3 {
        font-size: 1.75rem;
    }

    .work-item h4 {
        font-size: 1.1rem;
    }
}
.fade-in {
    opacity: 0;
    /* Initially hidden */
    transform: translateY(20px);
    /* Slightly moved down */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.show {
    opacity: 1;
    /* Fully visible */
    transform: translateY(0);
    /* Move to original position */
}

footer {
    padding: 60px 20px;
    background-color: #c36786;
    color: #fff;
    text-align: center;
   
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px
}

.left-content {
    text-align: left;
    flex: 1;
    min-width: 250px;
}

.location {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 28px;
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 15px;
    text-align: center;
}

.right-content {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.column h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-decoration: underline;
}

.column ul {
    list-style: disc;
    padding: 0;
}

.column ul li {
    margin-bottom: 5px;
}

.column ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.column a:hover {
    color: #D91656;
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: #595c64;
margin-top: 50px;
}

.copyright a {
    color: #000;
}
.copyright a:hover {
 color: #D91656;
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .left-content {
        text-align: center;
    }

    .right-content {
        flex-direction: column;
        align-items: center;
    }

    .column {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .contact-title {
        font-size: 24px;
    }

    .column h3 {
        font-size: 16px;
    }

    .column ul li a {
        font-size: 14px;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    left: 10%;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form button {
    padding: 10px;
    background-color: #D91656;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #b01245;
}

/*@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .right-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 20px;
    }

    .contact-form {
        max-width: 100%;
    }
}*/