@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section {
    padding: 100px 0;
}

.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}

.about,
.services,
.skills,
.teams,
.contact,
footer {
    font-family: 'Poppins', sans-serif;
}

.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

section .title {
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

section .title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}

section .title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #4ec5c1;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* navbar styling */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}

.navbar.sticky {
    padding: 15px 0;
    background: rgb(11, 36, 70);
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}

.navbar .logo a span {
    color: #4ec5c1;
    transition: all 0.3s ease;
}

.navbar.sticky .logo a span {
    color: #fff;
}

.navbar .menu li {
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover {
    color: #4ec5c1;
}

.navbar.sticky .menu li a:hover {
    color: #fff;
}

/* menu btn styling */
.menu-btn {
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}

.scroll-up-btn {
    position: fixed;
    height: 45px;
    width: 42px;
    background: #4ec5c1;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.scroll-up-btn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

.scroll-up-btn:hover {
    filter: brightness(90%);
}

/* home section styling */
.home {
    display: flex;
    background: url("images/banner.jpg") no-repeat center;
    height: 100vh;
    color: #fff;
    min-height: 460px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
}

.home .max-width {
    width: 100%;
    display: flex;
}

.home .max-width .row {
    margin-right: 0;
}

.home .home-content .text-1 {
    font-size: 27px;
}

.home .home-content .text-2 {
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
}

.home .home-content .text-3 {
    font-size: 40px;
    margin: 5px 0;
}

.home .home-content .text-3 span {
    color: #4ec5c1;
    font-weight: 500;
}

.home .home-content a {
    display: inline-block;
    background: #4ec5c1;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid #4ec5c1;
    transition: all 0.3s ease;
}

.home .home-content a:hover {
    color: #4ec5c1;
    background: none;
}

/* About Section Styling */
.about .about-content .right .text span {
    color: #4ec5c1;
}

.about .title::after {
    content: "who i am";
}

.about .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about .about-content .left {
    width: 45%;
    text-align: center;
}

.about .about-content .left img {
    height: 500px;
    width: 500px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 200px;
}

.about .about-content .right {
    width: 55%;
    padding-left: 20px;
    /* Add padding to align content properly */
}

.about .about-content .right .text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about .about-content .right p {
    text-align: justify;
    font-size: 16px;
    line-height: 1.6;
    margin-left: 0;
    /* Remove margin-left for proper alignment */
}

.about .about-content .right a {
    display: inline-block;
    background: #4ec5c1;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #4ec5c1;
    transition: all 0.3s ease;
}

.about .about-content .right a:hover {
    color: #4ec5c1;
    background: none;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {

    .about .about-content .left,
    .about .about-content .right {
        width: 100%;
        text-align: center;
    }

    .about .about-content .left img {
        height: auto;
        width: 80%;
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .about .about-content .right .text {
        font-size: 20px;
    }

    .about .about-content .right p {
        margin-left: 0;
        padding: 0 20px;
    }

    .about .about-content .right a {
        font-size: 18px;
        padding: 8px 16px;
    }
}

/* Media Query for Big Screens */
@media (min-width: 769px) {
    .about .about-content .right {
        padding-left: 50px;
        /* Add padding to align content properly */
    }

    .about .about-content .right p {
        margin-left: 0;
        /* Ensure no extra margin on big screens */
    }
}



/* services section styling */
.services,
.teams {
    color: #fff;
    background: #111;
}

.services .title::before,
.teams .title::before {
    background: #fff;
}

.services .title::after,
.teams .title::after {
    background: #111;
    content: "what i had made";
}

/* skills section styling */
.skills .title::after {
    content: "what i know";
}

.skills .skills-content .column {
    width: calc(50% - 30px);
}

.skills .skills-content .left .text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.skills .skills-content .left p {
    text-align: justify;
}

.skills .skills-content .left a {
    display: inline-block;
    background: #4ec5c1;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid#4ec5c1;
    transition: all 0.3s ease;
}

.skills .skills-content .left a:hover {
    color: #4ec5c1;
    background: none;
}

.skills .skills-content .right .bars {
    margin-bottom: 15px;
}

.skills .skills-content .right .info {
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: space-between;
}

.skills .skills-content .right span {
    font-weight: 500;
    font-size: 18px;
}

.skills .skills-content .right .line {
    height: 5px;
    width: 100%;
    background: lightgrey;
    position: relative;
}

.skills .skills-content .right .line::before {
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: #4ec5c1;
}

/* Skill Level Styling */
.skill-level {
    font-weight: 600;
    color: #4ec5c1;
}

/* Stars Container */
.stars {
    display: inline-block;
    position: absolute;
    top: -20px;
    /* Adjust as needed */
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Star Animation */
.stars span {
    display: inline-block;
    font-size: 18px;
    color: #4ec5c1;
    transform: scale(0);
    transition: transform 0.3s ease;
}

/* Animate stars on scroll */
.skills-content .right .line.animate .stars {
    opacity: 1;
}

.skills-content .right .line.animate .stars span {
    transform: scale(1);
}

/* teams section styling */
.teams .title::after {
    content: "worked with";
}

/* Replace percentage-based widths with skill levels */
.skills-content .right .html::before {
    width: 85%;
    /* Advanced */
}

.skills-content .right .css::before {
    width: 80%;
    /* Advanced */
}

.skills-content .right .js::before {
    width: 82%;
    /* Advanced */
}

.skills-content .right .php::before {
    width: 60%;
    /* Intermediate */
}

.skills-content .right .mysql::before {
    width: 60%;
    /* Intermediate */
}

.skills-content .right .java::before {
    width: 75%;
    /* Advanced */
}

.skills-content .right .mongo::before {
    width: 90%;
    /* Expert */
}

.skills-content .right .react::before {
    width: 85%;
    /* Advanced */
}

.skills-content .right .express::before {
    width: 55%;
    /* Intermediate */
}

/* Skills Section Styling */
#skills .skill-level {
    font-size: 24px;
    color: #4ec5c1;
    position: relative;
}

#skills .stars-container {
    position: relative;
    display: inline-block;
}

#skills .star-filled {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    /* Start with 0 width */
    overflow: hidden;
    white-space: nowrap;
    color: #4ec5c1;
    font-size: 25px;
    /* Increased font size for stars */
    animation: fillStars 5s ease-in-out forwards;
    /* Animation */
}

#skills .star-empty {
    color: #ccc;
    /* Light gray for empty stars */
    font-size: 25px;
    /* Increased font size for stars */
}

/* Keyframes for star-filling animation */
@keyframes fillStars {
    from {
        width: 0;
        /* Start with 0 width */
    }

    to {
        width: 100%;
        /* Fill to full width */
    }
}


.teams .carousel .card {
    background: #222;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    overflow: hidden;
}

.teams .carousel .card .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.teams .carousel .card:hover .box {
    transform: scale(1.05);
}

.teams .carousel .card .text {
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

.teams .carousel .card img {
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #4ec5c1;
}

.teams .carousel .card:hover img {
    border-color: #fff;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none !important;
    border-radius: 50%;
    border: 2px solid #4ec5c1 !important;
}

.owl-dot.active {
    width: 35px;
    border-radius: 14px;
}

.owl-dot.active,
.owl-dot:hover {
    background: #4ec5c1 !important;
}

/* contact section styling */
.contact .title::after {
    content: "get in touch";
}

.contact .contact-content .column {
    width: calc(50% - 30px);
}

.contact .contact-content .text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-content .left p {
    text-align: justify;
}

.contact .contact-content .left .icons {
    margin: 10px 0;
}

.contact .contact-content .row {
    display: flex;
    height: 65px;
    align-items: center;
}

.contact .contact-content .row .info {
    margin-left: 30px;
}

.contact .contact-content .row i {
    font-size: 25px;
    color: #4ec5c1;
}

.contact .contact-content .info .head {
    font-weight: 500;
}

.contact .contact-content .info .sub-title {
    color: #333;
}

.contact .right form .fields {
    display: flex;
}

.contact .right form .field,
.contact .right form .fields .field {
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}

.contact .right form .textarea {
    height: 80px;
    width: 100%;
}

.contact .right form .name {
    margin-right: 10px;
}

.contact .right form .field input,
.contact .right form .textarea textarea {
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus {
    border-color: #b3b3b3;
}

.contact .right form .textarea textarea {
    padding-top: 10px;
    resize: none;
}

.contact .right form .button-area {
    display: flex;
    align-items: center;
}

.right form .button-area button {
    color: #fff;
    display: block;
    width: 160px !important;
    height: 45px;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    flex-wrap: nowrap;
    background: #4ec5c1;
    border: 2px solid #4ec5c1;
    transition: all 0.3s ease;
}

.right form .button-area button:hover {
    color: #4ec5c1;
    background: none;
}

/* footer section styling */
footer {
    background: #111;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
}

footer span a {
    color: #4ec5c1;
    text-decoration: none;
}

footer span a:hover {
    text-decoration: underline;
}


/* Media Queries for responsiveness */
@media (max-width: 600px) {
    .about .about-content .left img {
        height: 350px;
        width: 350px;
    }
}

@media (max-width: 600px) {
    .max-width {
        padding: 0 50px;
    }
}

@media (max-width: 947px) {
    .menu-btn {
        display: block;
        position: relative;
        /* Added position for z-index to work */
        z-index: 999;
    }

    .menu-btn i.active:before {
        content: "\f00d";
    }

    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }

    .navbar .menu.active {
        left: 0;
    }

    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }

    .home .home-content .text-2 {
        font-size: 70px;
    }

    .home .home-content .text-3 {
        font-size: 35px;
    }

    .home .home-content a {
        font-size: 23px;
        padding: 10px 30px;
    }

    .max-width {
        max-width: 930px;
    }

    .about .about-content .column {
        width: 100%;
    }

    .about .about-content .left img {
        display: flex;
        /* Use flexbox layout */
        justify-content: center;
        /* Horizontally center content */
        align-items: center;
        /* Vertically center content */
        margin: 0 auto 60px;
        /* Keeps the spacing you had */
        text-align: center;
        /* Center text (if needed) */
    }

    .about .about-content .right {
        flex: 100%;
    }

    .about .about-content .right {
        flex: 100%;
    }

    @media (max-width: 768px) {
        .about .about-content {
            flex-direction: column;
            /* Stack columns vertically */
            align-items: center;
            /* Center align the columns */
            text-align: center;
            /* Center align text */
        }

        .about .about-content .column {
            width: 100%;
            /* Full width for both columns */
        }

        .about .about-content .left img {
            display: block;
            /* Use block instead of flex for images */
            margin: 0 auto 60px;
            /* Center the image and add bottom margin */
        }

        .about .about-content .right {
            text-align: center;
            /* Center align text in the right column */
            padding: 0 20px;
            /* Add some padding for better spacing */
        }
    }

    .services .serv-content .card {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }

    .skills .skills-content .column,
    .contact .contact-content .column {
        width: 100%;
        margin-bottom: 35px;
    }
}

@media (max-width: 690px) {
    .max-width {
        padding: 0 23px;
    }

    .home .home-content .text-2 {
        font-size: 60px;
    }

    .home .home-content .text-3 {
        font-size: 32px;
    }

    .home .home-content a {
        font-size: 20px;
    }

    .services .serv-content .card {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .home .home-content .text-2 {
        font-size: 50px;
    }

    .home .home-content .text-3 {
        font-size: 27px;
    }

    .about .about-content .right .text,
    .skills .skills-content .left .text {
        font-size: 19px;
    }

    .contact .right form .fields {
        flex-direction: column;
        
  color: #e0e0e0; /* Light grey for readability */
}

    }

    .contact .right form .name
    {
  color: #e0e0e0; /* Light grey for readability */
}

    .contact .right form .email {
        margin: 0;
        
  color: #e0e0e0; /* Light grey for readability */


    }

    .right form .error-box {
        width: 150px;
    }

    .scroll-up-btn {
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
.contact-info,
.contact-info p,
.contact-info span,
.contact-info h4 {
  color: #ffffff !important; /* Force white text */
  opacity: 1 !important;     /* Remove transparency */
}


/* Box link styles */
.box a {
    display: inline-block;
    color: crimson;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.box a:hover {
    color: white;
    background: #4ec5c1;
    border: 2px solid #4ec5c1;
}

/* Project container hover effect */
.project-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin: 20px 0;
    /* Add some margin for spacing between items */
}

.project-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-container:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 4, 4, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-container:hover .project-overlay {
    opacity: 1;
}

.project-title {
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}

.project-link {
    color: #fafafa;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    background-color: #393939;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.project-link:hover {
    background-color: #070707;
}

/* Media Queries for project section */
@media (max-width: 947px) {
    .project-container {
        width: 90%;
        margin: 20px auto;
        /* Center the container */
    }
}

@media (max-width: 600px) {
    .project-container {
        width: 100%;
        margin: 20px 0;
        /* Add some margin for spacing */
    }
}

/* Social icons */
.social-icons-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.social-icon {
    display: inline-block;
    margin: 0 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    line-height: 40px;
    color: #333;
    font-size: 18px;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.instagram-icon {
    background-color: #E4405F;
    color: #fff;
}

.linkedin-icon {
    background-color: #0077B5;
    color: #fff;
}

.gmail-icon {
    background-color: #D44638;
    color: #fff;
}

.hackerrank-icon {
    background-color: #c82e2e;
    color: #fff;
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
}

/* Chatbot Icon */
#chatIcon {
    width: 70px;
    height: 70px;
    background: #4ec5c1;
    /* Crimson background */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 3px 7px rgb(247, 245, 245);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

#chatIcon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

#chatIcon:hover {
    transform: scale(1.1);
    box-shadow: 0px 8px 15px#4ec5c1;
}

/* Chatbot Box */
#chatbot {
    display: none;
    visibility: hidden;
    opacity: 0;
    width: 350px;
    border-radius: 15px;
    padding: 15px;
    background: #ffffff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #4ec5c1;
    position: fixed;
    bottom: 100px;
    /* Adjusted to align with the chat icon */
    left: 20px;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
    z-index: 9998;
}

#chatbot.show {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Oval Shaped Tail (Connector) */
#chatbot::before {
    content: "";
    position: absolute;
    left: 18px;
    /* Adjusted to align with the chat icon */
    bottom: -18px;
    /* Positioned below the chatbot box */
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 18px solid #4ec5c1;
    /* Crimson tail */
}

/* Chatbot Header */
.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: rgb(11, 11, 11);
    /* White text */
    background: #4ec5c1;
    /* Crimson background */
    padding: 10px;
    border-radius: 10px 10px 0 0;
    margin: -15px -15px 10px -15px;
    /* Align with chatbot box */
}

.chatbot-header button {
    background: none;
    border: none;
    color: white;
    /* White close button */
    font-size: 24px;
    cursor: pointer;
    padding: 0;
}

.chatbot-header button:hover {
    color: #ffcccc;
    /* Light crimson on hover */
}

/* Chat Messages */
.message {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 90%;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    padding: 10px;
    border-radius: 10px;
}

.user {
    text-align: right;
    background: #4ec5c1;
    color: white;
    align-self: flex-end;
}

.bot {
    text-align: left;
    background: #f1f1f1;
    color: black;
    align-self: flex-start;
}

/* Options */
.options-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.option {
    padding: 10px;
    background: rgb(253, 252, 252);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    border: 1px solid #4ec5c1;
    color: rgb(9, 9, 9);
    /* White text */
    text-align: center;
}

.option:hover {
    background: crimson;
    transform: scale(1.05);
    color: white;
}

/* Mobile View - Adjustments */
@media (max-width: 600px) {
    #chatbot {
        width: 90%;
        left: 10px;
        /* Adjusted for mobile */
    }

    #chatbot::before {
        left: 10px;
        /* Adjusted tail position for mobile */
    }

}
/* About Section Styling */
.about {
    padding: 100px 0;
    background: #fff;
    color: #333;
}

.about .max-width {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.about .title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #010000;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-content .column {
    width: 45%;
}

.about-content .left img {
    height: auto;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(38, 36, 36, 0.1);
}

.about-content .right .text {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #f4ecec;
}

.about-content .right p {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

/* Base Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Section Titles */
.title {
    color: var(--accent);
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: var(--secondary);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: auto;
}

.about-content .column {
    flex: 1 1 45%;
    padding: 10px;
}

.about-content .left img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(207, 198, 198, 0.1);
}

.about-content .right .text {
    font-size: 22px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.about-content .right p {
    font-size: 16px;
    text-align: justify;
}

/* Buttons */
.btn {
    background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.btn:hover {
    background-color: #151314;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    .about-content .column {
        flex: 1 1 100%;
    }
    .title {
        font-size: 26px;
    }
}
.teams {
    padding: 50px 0;
    background: #f9f9f9;
}
.teams .carousel .card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}
.teams .carousel .card:hover {
    transform: translateY(-5px);
}
.teams .carousel .card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}
.teams .carousel .text {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 18px;
    color: #333;
}
.teams .carousel p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Owl Carousel Navigation Arrows */
.owl-nav button {
    position: absolute;
    top: 40%;
    background: #4ec5c1;
    color: #fff;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 20px;
    transition: background 0.3s;
}
.owl-nav button:hover {
    background: #4ec5c1;
}
.owl-nav .owl-prev {
    left: -25px;
}
.owl-nav .owl-next {
    right: -25px;
}

/* Owl Carousel Dots */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}
.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    transition: background 0.3s;
}
.owl-dot.active {
    background: #4ec5c1;
}
/* Experiences Section */
.teams {
    padding: 50px 0;
    background: #1a1a1a; /* Dark background for contrast */
    color: #fff;          /* Default text color */
}

.teams .title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #fff; /* Ensure title is visible */
}

.teams .carousel .card {
    background: #fff; /* Card background remains white */
    color: #333;      /* Card text color dark for readability */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s;
}

.teams .carousel .card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.teams .carousel .text {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 18px;
    color: #000; /* Card heading */
}

.teams .carousel p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}
:root {
  --bg-dark: #0a0e2a;
  --highlight-color: #4ec5c1;
  --text-light: #f5f5f5;
}

.hero {
  background-color: var(--bg-dark);
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.text-block h1 {
  font-size: 3rem;
}
.text-block .highlight {
  color: var(--highlight-color);
}

.tags .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  margin: 0.3rem;
  border-radius: 999px;
}

.buttons .btn {
  display: inline-block;
  margin-right: 1rem;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.7rem 1.3rem;
  border: 2px solid var(--highlight-color);
  border-radius: 5px;
  transition: background 0.3s;
}
.buttons .btn:hover {
  background: var(--highlight-color);
  color: var(--bg-dark);
}

.image-block img {
  max-width: 300px;
  border-radius: 10px;
}
:root {
  --bg: #0a0e2a;
  --text: #f5f5f5;
}

[data-theme="light"] {
  --bg: #f0f0f0;
  --text: #1a1a1a;
}

body {
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.3s, color 0.3s;
}
body.dark-mode {
  background-color: #f0f0f0;
  color: #1a1a1a;
}
.about-section {
  background-color: #0d1b2a;
  color: #fff;
  padding: 60px 0;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
}

.about-image img {
  width: 300px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.4);
}

.cv-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #4ec5c1;
  color: #121212;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cv-btn:hover {
  background: #4ec5c1;
}

.about-text {
  flex: 2 1 500px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #4ec5c1;
}

.about-text p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-text i {
  color: #4ec5c1;
  margin-right: 10px;
}
/* Project container */
.project-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.project-container:hover {
    transform: translateY(-8px) rotateY(5deg);
}

/* Project image */
.project-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.project-container:hover .project-image {
    transform: scale(1.1);
}

/* Overlay effect */
.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.project-container:hover .project-overlay {
    opacity: 1;
    transform: scale(1);
}

/* Title inside overlay */
.project-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Link button inside overlay */
.project-link {
    display: inline-block;
    padding: 8px 14px;
    background-color: #4ec5c1; /* teal from hero section */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.project-link:hover {
    background-color: #3aa7a3; /* darker teal hover */
}

/* See All button */
.see-all-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 14px 20px;
    background-color: #4ec5c1; /* teal */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.see-all-btn:hover {
    background-color: #3aa7a3; /* darker teal hover */
}
.contact-info {
  color: #ffffff; /* Pure white text */
}

.contact-info span,
.contact-info p {
  color: #e0e0e0; /* Light grey for readability */
}

.contact-info h4 {
  color: #ffffff; /* White for headings */
  font-weight: bold;
}
.experience-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.experience-container {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.experience-card {
  background: #fff;
  color: #000;
  flex: 0 0 320px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.experience-card h2 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.experience-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.exp-btn {
  background: #52e0c4;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  z-index: 10;
  transition: background 0.3s;
}

.exp-btn:hover {
  background: #b71c28;
}

.exp-btn.prev {
  left: -15px;
}

.exp-btn.next {
  right: -15px;
}
.skills-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #f9f9f9;
    padding: 20px 0;
    border-radius: 10px;
    margin-top: 30px;
}

.skills-slider {
    display: flex;
    gap: 40px;
    animation: scrollSkills 20s linear infinite;
}

.skills-slider img {
    height: 60px;
    transition: transform 0.3s ease;
}

.skills-slider img:hover {
    transform: scale(1.2);
}

@keyframes scrollSkills {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

#toggleSlider {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: #52e0c4;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
}

#toggleSlider:hover {
    background: #b71c28;
}
.skills {
  padding: 60px 20px;
  background: #0d1b2a; /* Dark background */
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #00d1ff;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 25px;
  justify-items: center;
}

.skill-card {
  background: #1b263b;
  border-radius: 15px;
  padding: 20px;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 12px rgba(0,0,0,0.5);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.skill-card img {
  width: 55px;
  height: 55px;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in-out;
}

.skill-card p {
  color: #fff;
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
}

.skill-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: #233554;
  box-shadow: 0 0 20px rgba(0, 209, 255, 0.8);
}

.skill-card:hover img {
  transform: rotate(10deg) scale(1.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .skills {
    padding: 40px 15px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .skill-card {
    width: 120px;
    height: 120px;
  }
}
.contact {
  padding: 60px 20px;
  background: #0d1b2a;
  color: #fff;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form h3,
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.contact-form .note {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  text-align: left;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  background: #1b263b;
  border: none;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.btn-submit {
  background:  #52e0c4;
  border: none;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background:  #52e0c4;
}

/* Social links */
.contact-info .social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #1b263b;
  padding: 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s, background 0.3s;
}

.social-card i {
  font-size: 1.8rem;
}

.social-card:hover {
  transform: translateY(-5px);
  background: #233554;
}

.social-card div p {
  margin: 0;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.experience-section {
  text-align: center;
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  color: #00d1d1;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.experience-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.experience-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  padding: 20px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

.experience-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.experience-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Hover Effect */
.experience-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
.experience-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  padding: 20px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Glow border */
.experience-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00d1d1, #0077ff, #00ff99, #00d1d1);
  background-size: 400%;
  border-radius: 16px;
  z-index: -1;
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.5s ease, background-position 3s linear;
}

/* Hover Glow */
.experience-card:hover::before {
  opacity: 1;
  background-position: 200% center;
}

.experience-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 209, 209, 0.4);
}
.experience-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  padding: 20px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* Glowing border effect */
.experience-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00d1d1, #0077ff, #00ff99, #00d1d1);
  background-size: 400%;
  border-radius: 16px;
  z-index: -1;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease, background-position 3s linear;
}

/* Hover Glow */
.experience-card:hover::before {
  opacity: 1;
  background-position: 200% center;
}

.experience-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 35px rgba(0, 209, 209, 0.6);
  background: rgba(255, 255, 255, 0.95); /* subtle glowing bg */
}
/* Navbar */
.nav-wrap {
  background: #0d1b2a;
  padding: 15px 40px;
}

.nav {
  display: flex;
  justify-content: flex-end; /* move everything to the right */
  align-items: center;
}

.nav .brand {
  display: none; /* hide brand if you want only right side menu */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #00d1d1;
  text-shadow: 0 0 10px #00d1d1;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10%;
}

/* Floating Image */
.hero-image img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 4px solid #00d1d1;
  box-shadow: 0 0 25px rgba(0, 209, 209, 0.6);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}
.image-block img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 4px solid #00d1d1;
  box-shadow: 0 0 25px rgba(0, 209, 209, 0.6);
  animation: float 4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Hover effect */
.image-block img:hover {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 0 35px rgba(0, 209, 209, 1);
}
.social-icons {
  margin-top: 25px;
}
.social-icons a {
  margin-right: 15px;
  font-size: 1.5rem;
  color: #fff;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #00d1d1;
  text-shadow: 0 0 10px #00d1d1;
}
/* Navbar */
.nav-wrap {
  background: #0d1b2a;
  padding: 15px 40px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left side */
.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav .brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00d1d1;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #00d1d1;
  text-shadow: 0 0 10px #00d1d1;
}

/* Right side - social icons */
.nav-right a {
  margin-left: 15px;
  font-size: 1.3rem;
  color: #fff;
  transition: 0.3s;
}

.nav-right a:hover {
  color: #00d1d1;
  text-shadow: 0 0 10px #00d1d1;
}
.name {
  color: #00d1d1;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10%;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.text-block {
  flex: 1;
}

.image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-block img {
  width: 320px;
  height: 320px;
  border-radius: 20px; /* same as screenshot – square with rounded corners */
  object-fit: cover;
  box-shadow: 0 0 25px rgba(0, 209, 209, 0.6);
  animation: float 4s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Floating effect */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Glow animation */
@keyframes glow {
  0% { box-shadow: 0 0 20px rgba(0, 209, 209, 0.6); }
  100% { box-shadow: 0 0 40px rgba(0, 209, 209, 1); }
}

/* Hover effect */
.image-block img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 0 50px #4ec5c1;
}
.neon-title {
  font-size: 3rem;
  font-weight: bold;
  color: #00fff2;
  
  margin-bottom: 15px;
  animation: flicker 2s infinite alternate;
}

/* Flicker neon glow animation */
@keyframes flicker {
  0%   { opacity: 1; text-shadow: 0 0 5px #4ec5c1, 0 0 10px #4ec5c1, 0 0 20px #4ec5c1, 0 0 40px #4ec5c1; }
  50%  { opacity: 0.9; text-shadow: 0 0 10px #4ec5c1, 0 0 20px #4ec5c1, 0 0 30px #4ec5c1, 0 0 60px #4ec5c1; }
  100% { opacity: 1; text-shadow: 0 0 20px #4ec5c1, 0 0 40px #4ec5c1, 0 0 60px #4ec5c1, 0 0 80px #4ec5c1; }
}
.emoji {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  animation: bounce 1.5s infinite;
}

/* Bouncing emoji animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
/* Navbar fixed */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0a1a2f;  /* dark background */
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #00ffe7;  /* neon highlight */
  border-bottom: 2px solid #00ffe7;
}
.image-block img {
  width: 320px;       /* adjust size */
  height: 320px;      /* same as width for perfect square */
  object-fit: cover;  /* crops nicely */
  border-radius: 15px; /* rounded corners (set 0px if you want sharp square) */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); /* floating shadow */
  animation: float 3s ease-in-out infinite; /* floating effect */
}

/* Floating animation */
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
}

.text-block {
  flex: 1 1 300px; /* text takes full width on small screens */
}

.text-block h1,
.text-block h2,
.text-block p {
  margin: 10px 0;
}

/* Tag styling */
.tags {
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  background: rgba(100, 255, 218, 0.1);
  color: #64ffda;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
}

/* Buttons styling */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.buttons .btn {
  padding: 8px 15px;
  background: #64ffda;
  color: #0a192f;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.buttons .btn:hover {
  background: #52e0c4;
}

/* Image block */
.image-block {
  flex: 1 1 250px;
  text-align: center;
}

.image-block img {
  width: 100%;
  max-width: 250px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding-top: 50px;
  }

  .text-block {
    flex: 1 1 100%;
  }

  .image-block {
    flex: 1 1 100%;
  }
}
