/* styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

header {
    width: 100%;
    background: #fff;
    position: fixed; /* Make the header fixed */
    top: 0; /* Position at the top */
    z-index: 1000; /* Ensure it's above other content */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 16px 60px;
}

.navbar-left .navbar-logo img {
    display: block;
    width: 40px;
    height: auto;
}

.navbar-menus {
    display: flex;
    gap: 20px;
}

.navbar-link {
    text-decoration: none;
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: #007bff;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-time {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.location-time p {
    margin: 0;
    color: #808080;
}

#time {
    font-weight: 500;
    color: #111;
}

.slots {
    display: flex;
    gap: 10px;
}

.slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    color: #111;
    background-color: #f5f5f0;
}

.slot.booked {
    background-color: #f5f5f0;
}

.slot.connect {
    background-color: #111;
    color: #fff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
}

@media (max-width: 768px) {
    .navbar-menus {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #fff;
        padding: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-menus.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}
.social{
    place-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex: 0 0 auto;
    flex-flow: column;
    gap: 20px;
    height: min-content;
    overflow: visible;
    padding: 0px;
    position: fixed;
    right: 25px;
    top: 100px;
    transform: perspective(1200px);
    width: min-content;
    z-index: 4;
}
.social-links{
    border-bottom-width: 1px;
    border-color: rgb(221, 224, 209);
    border-left-width: 1px;
    border-right-width: 1px;
    border-style: solid;
    border-top-width: 1px;
    background-color: rgb(255, 255, 255);
    border-radius: 40px;
    opacity: 1;
    width: 48px;
    height: 51px;
    align-items: center;
    transition: ease-in-out 0.3s;
}
.social-links:hover{
    background-color: #111;
    color: #fff;
}
.social-links a:hover{
    background-color: #111;
    color: #fff;
    transition: ease-in-out 0.3s;

}
.social-links i{
    padding: 10px;
    font-size: 26px;
    display: inline-block;
}
.social a{
    text-decoration: none;
    color: #111;
    margin-left: 0px;
    margin-right: 0px;
}

/* Hero Section */
.hero {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
    margin: 40px;
}

.hero-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: row;
    gap: 100px;
    align-items: center;
    justify-content: space-between;
    font-weight:80;

}

.hero-content {
    display: flex;
    gap: 36px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.hero-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: fill;
}
/* From Uiverse.io by vinodjangid07 */ 
.Btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    /* overflow: hidden; */
    border-radius: 7px;
    cursor: pointer;
    transition: all .3s;
  }
  
  .svgContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(0px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all .3s;
    border: 1px solid rgba(156, 156, 156, 0.466);
  }
  
  .BG {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #181818;
    z-index: -1;
    border-radius: 10px;
    pointer-events: none;
    transition: all .3s;
  }
  
  .Btn:hover .BG {
    transform: rotate(35deg);
    transform-origin: bottom;
  }
  
  .Btn:hover .svgContainer {
    background-color: rgba(156, 156, 156, 0.466);
    backdrop-filter: blur(4px);
  }
  
.hero-text-wrapper h1 {
    font-size: 48px;
    color: #111;
    text-align: left;
    font-weight:80;
}

.hero-body {
    margin-bottom: 20px;
    text-align: left;
    font-weight:80;

}

.hero-description {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 30px;
    color: #111;
    margin-bottom: 10px;
    font-weight:80;

}

.hero-passion {
    font-size: 16px;
    color: #808080;
    font-weight:80;

}

.hero-actions {
    display: flex;
    gap: 10px;
}

.button {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button.primary {
    background-color: #111;
    color: #fff;
}

.button.secondary {
    border: 1px solid #dde0d1;
    color: #111;
}

.skills {
    background-color: #f0f0f0;
    padding: 60px 40px;
    text-align: center;
}
.skills-header {
    font-size: 40px;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight:120;

}
.skills-container {
    display: grid;
   grid-template-columns: repeat(2, 1fr); /* 3 columns */
    gap: 20px;
}
.skills-section {
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
    padding: 20px;
    text-align: left;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.skills-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.skills-section h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight:80;

}
.skills-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px;
}
.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.skill-image {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    transition: transform 0.3s;
}
.skill-item:hover {
    transform: scale(1.05);
    background-color: #f0f4ff;
    border-radius: 8px;
}
.skill-item:hover .skill-image {
    transform: scale(1.2);
}

.skill-name {
    font-family: 'Montserrat', sans-serif;

    font-size: 16px;
    color: #333;
    text-align: center;
}

.skills-section-Pl{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.technology-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 30px 60px;
}
.exp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #ffffff;
  }

  .headline {
    text-align: center;
    margin-bottom: 20px;
  }

  .headline h4 {
    color: #111;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
  }

  .subheadline {
    text-align: center;
    color: #808080;
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* Button styles */
  .button-container {
    display: flex;
    gap: 20px;
  }

  .button-exp {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    color: #fff;
    background-color: #111;
    border-radius: 12px;
    transition: background-color 0.3s ease;
  }

  .button-exp:hover {
    background-color: #333;
  }

  /* Client section styles */
  .client-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
  }

  .client-card {
    width: 200px;
    padding: 20px;
    text-align: center;
    background-color: #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .client-card svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .client-statistic {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 500;
    color: #111;
  }

  .client-statistic-text {
    color: #808080;
    font-size: 14px;
  }
  .section-works {
    padding: 40px 20px;
    text-align: center;
    background-color: #f0f0f0;

}

.section-works h2 {
    font-size: 52px;
    letter-spacing: -0.04em;
    line-height: 130%;
    color: #111;
    margin-bottom: 15px;
}

.works-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background-color: #f0f0f0;

}

.work-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 500px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: left;
}

.work-card:hover {
    transform: translateY(-30px);
}

.work-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.work-card-content {
    font-family: 'Roboto', sans-serif;
    padding: 20px;
}

.work-title {
    font-size: 24px;
    margin: 0;
    font-weight: 120;
}

.work-category {
    color: #111;
    margin: 5px 0;
}

.work-date {
    color: #808080;
    margin: 5px 0;
}

.work-description {
    color: #808080;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;

}

.work-button {
    display: inline-block;
    margin: 20px 0 0;
    padding: 10px 20px;
    background-color: #111;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.work-button:hover {
    background-color: #333;
}
.achivements {
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.achivements h2{
    font-size: 40px;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 100;
}
.achivements-container{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    padding: 20px;
}
.achivement-card{
    width: 20%;
    border-radius: 5px;
}
.achivement-card img{
    width: 50%;
    height: auto;
}
.achivement-parag{
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 80;
    padding: 20px;
}
.achivements h3{
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 100;
}.education {
    background: linear-gradient(to bottom, #ffffff, #f7f9fc);
    padding: 80px 20px;
  }
  
  .education-header {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .education-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .education-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 25px;
    max-width: 400px;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .education-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .education-degree {
    font-size: 22px;
    font-weight: 600;
    color: #2b6cb0;
    margin-bottom: 10px;
  }
  
  .education-institution {
    font-size: 18px;
    color: #555;
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .education-dates {
    font-size: 16px;
    color: #999;
    margin-bottom: 15px;
  }
  
  .education-description {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .education-container {
      flex-direction: column;
      align-items: center;
    }
  
    .education-card {
      max-width: 90%;
    }
  }
  
.framer-component {
    align-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px;
    height: min-content;
    justify-content: flex-start;
    overflow: visible;
    padding:  120px;
}

/* Container Styles */
.framer-container {
    opacity: 1;
    padding: 20px;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
}

/* Headline Styles */
.framer-headline {
    opacity: 1;
    text-align: center;
    font-size: 28px;
    color: #111111; /* Default text color */
}
.framer-headline p{
    font-size: 16px;
}
/* Action Button Styles */
.framer-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #111111; /* Default button color */
    color: #ffffff; /* Default button text color */
    border-radius: 12px;
    text-decoration: none;
}

.framer-button:hover {
    background-color: #333333; /* Button color on hover */
}
.framer-button a{
    text-decoration: none;
    color: #ffffff;
}
footer {
    color: black; /* Gray-400 text */
    padding: 2.5rem 1rem; /* 10 */
    display: flex;
    flex-direction: column;
    align-items: center;
  font-family: "Montserrat", sans-serif;

    justify-content: center;
}

.footer-container {
    width: 100%;
    max-width: 80rem; /* 7xl */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-container {
        padding-left: 1.5rem; /* 6 */
        padding-right: 1.5rem; /* 6 */
    }
}

@media (min-width: 1024px) {
    .footer-container {
        padding-left: 2rem; /* 8 */
        padding-right: 2rem; /* 8 */
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-brand {
    font-size: 1.5rem; /* 2xl */
    font-weight: bold;
    margin-bottom: 1rem; /* 4 */
}

.footer-links, .footer-social {
    display: flex;
    gap: 1rem; /* 4 */
    margin-bottom: 1rem; /* 4 */
}

.footer-links a, .footer-social a {
    color: black; /* Gray-400 text */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-social a:hover {
    color: blue; /* White text on hover */
}

/* Footer social icons */
.footer-social a {
    font-size: 1.25rem; /* xl */
}

.footer-copyright {
    font-size: 0.875rem; /* sm */
    color: #9CA3AF; /* Gray-400 text */
    margin-top: 2rem; /* 8 */
    text-align: center;
}

@media (min-width: 768px) {
    .footer-copyright {
        text-align: center;
        margin-top: 0;
    }
}


@media (max-width: 576px) {
    /* Styles for mobile phones */

    /* Responsive Mobile Device CSS */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Header */
header {
    width: 100%;
    background: #fff;
    position: fixed; /* Make the header fixed */
    top: 0; /* Position at the top */
    z-index: 1000; /* Ensure it's above other content */
    padding: 16px 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
}

.navbar-left .navbar-logo img {
    width: 40px;
    height: auto;
}
.navbar-right {
    display:none;
}
.navbar-menus {
    display: none; /* Hide the navbar menus by default */
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-menus.active {
    display: flex; /* Show the navbar menus when active */
}

.navbar-link {
    text-decoration: none;
    font-size: 14px;
    color: #333;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: #007bff;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
}

/* Social Links */
.social {
    display: none; /* Hide social links by default */
    position: fixed;
    right: 20px;
    top: 100px;
    flex-direction: column;
    gap: 10px;
}

.social-links {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links:hover {
    background-color: #111;
    color: #fff;
}

.social-links i {
    font-size: 20px;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
    margin-top: 60px; /* Offset for fixed header */
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.hero-image-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-wrapper h2 {
    font-size: 24px;
    color: #111;
}

.hero-subtitle {
    font-size: 18px;
    color: #111;
    margin-bottom: 10px;
}

.hero-passion {
    font-size: 14px;
    color: #808080;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.button {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.button.primary {
    background-color: #111;
    color: #fff;
}

.button.secondary {
    border: 1px solid #dde0d1;
    color: #111;
}

/* Skills Section */
.skills {
    background-color: #f0f0f0;
    padding: 40px 20px;
    text-align: center;
}

.skills-header {
    font-size: 24px;
    margin-bottom: 20px;
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skills-section {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.skills-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.skills-list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 10px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skill-image {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.skill-name {
    font-size: 12px;
    color: #333;
}
.client-section{
    flex-direction: column;
}
.exp-container{
    height: auto;
    margin: 40px auto;
}

/* Achievements Section */
.achivements {
    padding: 40px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achivement-header {
    font-size: 24px;
}

.achivements-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achivement-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}
.achivement-card{
    width: auto;
}

.achivement-card img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.achivement-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}
.achivement-container{
    flex-direction: column;
}

.achivement-parag {
    font-size: 16px;
}
.education-container{
    flex-direction: column;
}
.framer-component{
    padding: 25px;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-social a {
    color: #fff;
    font-size: 20px;
}

.footer-copyright {
    font-size: 12px;
    color: #808080;
}

}



/* External css for buttons */

/* From Uiverse.io by cssbuttons-io */ 
.fancy {
    background-color: transparent;
    border: 2px solid #000;
    border-radius: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    float: right;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 1.25em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 10px;
   }
   
   .fancy::before {
    content: " ";
    width: 1.5625rem;
    height: 2px;
    background: black;
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
   }
   
   .fancy .text {
    font-size: 1.125em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: black;
   }
   
   .fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, left 0.3s ease-out;
   }
   
   .fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
   }
   
   .fancy .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
   }
   
   .fancy:hover {
    color: white;
    background: black;
   }
   
   .fancy:hover::before {
    width: 0.9375rem;
    background: white;
   }
   
   .fancy:hover .text {
    color: white;
    padding-left: 1.5em;
   }
   
   .fancy:hover .top-key {
    left: -2px;
    width: 0px;
   }
   
   .fancy:hover .bottom-key-1,
    .fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
   }
   
   .Resume-btn {
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    padding: 10px 20px;
    border-radius: 100px;
    background: black; /* Button background */
    color: white; /* Font color */
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    gap: 10px; /* Adds spacing between the text and SVG */
  }
  
  .Resume-btn span {
    display: inline-block; /* Ensure span is treated as an inline element */
  }
  
  .Resume-btn:hover {
    background: #1c1c1c; /* Slightly lighter black for hover effect */
    color: white; /* Ensures text color remains white */
  }
  
  .Resume-btn svg {
    height: 34px;
    width: 34px;
    transition: transform 0.3s ease-in-out; /* Smooth transition */
  }
  
  .Resume-btn:hover svg {
    transform: translateX(5px); /* Moves the SVG icon slightly to the right */
  }
  
  .Resume-btn:active {
    transform: scale(0.95); /* Shrinks button on click */
  }
  

  
  /* CSS */
  .button-86 {
    all: unset;
    width: 100px;
    height: 30px;
    font-size: 16px;
    background: transparent;
    border: none;
    position: relative;
    color: #f0f0f0;
    cursor: pointer;
    z-index: 1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  
  .button-86::after,
  .button-86::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
  }
  
  .button-86::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: #28282d;
    border-radius: 10px;
  }
  
  .button-86::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
  }
  
  .button-86:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
  }
  
  .button-86:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
  }
  
  .button-86:active::after {
    transition: 0s;
    transform: translate(0, 5%);
  }
 

  /* From Uiverse.io by adamgiebl - Blackish Version for .twm */
.twm {
    font-family: inherit;
    font-size: 20px;
    background: #1a1a1a; /* Dark blackish background */
    color: #e6e6e6; /* Light gray text color for contrast */
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
  }
  
  .twm span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
    color: white; /* Slightly lighter text for the span */
  }
  
  .twm svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
    fill: #e6e6e6; /* Light gray icon color */
  }
  
  .twm:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
  }
  
  .twm:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
    fill: #00ccff; /* Accent color for the hover state */
  }
  
  .twm:hover span {
    transform: translateX(5em);
    color: #00ccff; /* Match hover accent color */
  }
  
  .twm:active {
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Adjust shadow for press */
  }
  
  @keyframes fly-1 {
    from {
      transform: translateY(0.1em);
    }
  
    to {
      transform: translateY(-0.1em);
    }
  }

  .values-section {
    text-align: center;
    padding: 20px;
}

.skill-item {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.skill-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* Section Title */
.section-title {
    align-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
    height: min-content;
    justify-content: flex-start;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 140%;
    color: #333333;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
}

/* Cards Container */
.values-container {
    align-content: center;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 48px;
    height: min-content;
    justify-content: center;
    max-width: 1080px;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;
}

/* Values Section */
.values-section {
    align-content: center;
    align-items: center;
    background-color: #f5f5f0;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 60px;
    height: min-content;
    justify-content: center;
    overflow: visible;
    padding: 120px;
    position: relative;
    width: 100%;
}

/* Inner Value Container */
.inner-value {
    align-content: flex-start;
    align-items: flex-start;
    border-radius: 12px;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    height: min-content;
    justify-content: flex-start;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;
}

/* Individual Cards */
.value-card {
    align-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 32px;
    height: min-content;
    justify-content: flex-start;
    overflow: visible;
    padding: 24px;
    position: relative;
    background-color: rgb(255, 255, 255);
    width: 100%;
    opacity: 0; /* Start as invisible */
    border-radius: 12px;
    transform: translateY(100px); /* Position them off-screen initially */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition */
}

/* Animation for cards sliding up when they come into view */
.value-card.show {
    opacity: 1;
    transform: translateY(0); /* Move into place */
}

/* Text inside value card */
.text-container h6 {
    font-family: "Inter-Medium", "Inter", "Inter Placeholder", sans-serif;
    font-family: "Inter-Black", "Inter", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 150%;
    margin-bottom: 0;
    text-align: left;
    color: #111111;
    text-decoration: none;
    text-transform: none;
}

/* Icon Style */
.icon {
    background-color: rgb(251, 251, 249);
    border-radius: 100px;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
}

/* Mobile Styles */
@media (max-width: 480px) {
    .section-title {
        font-size: 32px;
        text-align: left;
    }

    .values-container {
        padding: 16px;
        gap: 24px;
    }

    .values-section {
        padding: 60px 16px;
        gap: 40px;
    }

    .inner-value {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .value-card {
        padding: 24px;
        gap: 32px;
        width: 100%;
    }

    .text-container h6 {
        font-size: 24px;
    }

}



.exp-container-unique {    
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    background: #fff;
    padding: 140px;
    border-radius: 10px;
    gap: 40px;
    opacity: 0;
    transform: translateY(50px);
}

/* Left box - Slide-in effect */
.exp-left-box-unique {
    width: 45%;
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards 0.5s;
}

.exp-left-box-unique h2 {
    font-weight: 240;
    font-size: 32px;
    margin-bottom: 10px;
}

.exp-left-box-unique p {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.exp-download-btn-unique {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s ease, transform 0.2s ease-in-out;
}

.exp-download-btn-unique:hover {
    background-color: #333;
    transform: scale(1.05);
}

/* Right box */
.exp-right-box-unique {
    width: 50%;
    opacity: 0;
    animation: fadeIn 1.2s ease-in forwards 0.8s;
}

.exp-right-box-unique h3 {
    font-size: 24px;
    font-weight: 120;
    margin-bottom: 40px;
}

/* Job Items - Fade-in + Hover effect */
.exp-job-item-unique {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-in-out forwards 1s;
    transition: transform 0.3s ease-in-out;
}

.exp-job-item-unique img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.exp-job-item-unique:hover {
    transform: scale(1.05);
}

.exp-job-item-unique h4 {
    font-size: 20px;
    font-weight : 120 ;
}

.exp-job-item-unique p {
    margin-top : 10px ;
    font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-style: normal;
    font-size: 16px;
    color: gray;
    font-weight :300 ;
}

.exp-job-details {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: black;
    transition: max-height 0.3s ease-in-out;
}

/* Rotate icon when expanded */
.exp-select-icon {
    margin-left: auto;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.exp-job-item-unique {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-in-out forwards 1s;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.exp-job-item-unique:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background-color: #f9f9f9;
}

.exp-job-item-unique.active {
    background-color: #000;
    color: white;
    transform: scale(1.02);
}

.exp-job-item-unique.active .exp-select-icon {
    transform: rotate(45deg);
}

.exp-job-item-unique.active p {
    color: #ccc;
}

/* Detailed content styles */
.exp-detailed-content {
    animation: slideInFromLeft 0.4s ease-out forwards;
}

.exp-detail-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #000;
    padding-bottom: 20px;
}

.exp-back-btn {
    display: flex;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 15px;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    align-items: center;
    font-family: 'Montserrat', sans-serif;

}

.exp-back-btn:hover {
    background-color: #f0f0f0;
}

/* Company Selector Styles */
.exp-company-selector {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.exp-company-selector::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.exp-company-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
    border: 2px solid transparent;
    min-width: 80px;
    flex-shrink: 0;
}

.exp-company-option:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.exp-company-option.active {
    background-color: #000;
    color: white;
    border-color: #333;
}

.company-mini-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 4px;
}

.exp-company-option span {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

/* Company Header with Logo */
.exp-company-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.company-main-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #f0f0f0;
    padding: 8px;
    background-color: white;
    flex-shrink: 0;
}

.exp-company-info {
    flex: 1;
}

.exp-detail-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.exp-detail-header p {
    font-size: 16px;
    color: #666;
    margin: 5px 0;
}

.exp-detail-body h3, .exp-detail-body h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 500;
}

.exp-detail-body h3 {
    font-size: 20px;
}

.exp-detail-body h4 {
    font-size: 18px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tech-tag {
    background-color: #f1f1f1;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.exp-impact ul {
    list-style-type: none;
    padding: 0;
}

.exp-impact li {
    padding: 8px 0;
    border-left: 3px solid #000;
    padding-left: 15px;
    margin-bottom: 8px;
    background-color: #f9f9f9;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.exp-toggle-icon {
    margin-right : 40px ;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.exp-job-item-unique.expanded .exp-toggle-icon {
    transform: rotate(180deg);
}


.exp-left-box-unique, .exp-right-box-unique, .exp-job-item-unique {
    opacity: 0;
    transform: translateY(50px);
}

.exp-left-box-unique.animate {
    animation: slideInLeft 1s ease-out forwards;
}

.exp-right-box-unique.animate {
    animation: fadeIn 1.2s ease-in forwards 0.8s;
}

.exp-job-item-unique.animate {
    animation: fadeInUp 0.8s ease-in-out forwards 1s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (max-width: 768px) {
    .exp-container-unique {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .exp-left-box-unique, .exp-right-box-unique {
        width: 100%;
    }
    
    .exp-right-box-unique h3 {
        font-size: 22px;
    }
    
    .exp-right-box-unique p {
        font-size: 18px;
    }

    .exp-left-box-unique p {
        margin-bottom: 0px;
    }

    /* Mobile-specific styles for detailed view */
    .exp-detailed-content {
        position: relative;
        z-index: 10;
    }

    .exp-detail-header h2 {
        font-size: 24px;
    }

    .exp-detail-header p {
        font-size: 14px;
    }

    /* Company header mobile adjustments */
    .exp-company-header {
        gap: 15px;
    }

    .company-main-logo {
        width: 50px;
        height: 50px;
        padding: 6px;
    }

    .exp-company-info h2 {
        font-size: 22px;
    }

    .exp-company-info p {
        font-size: 14px;
    }

    /* Company selector - show only on mobile when in detailed view */
    .exp-company-selector {
        display: flex;
    }

    .exp-company-option {
        min-width: 70px;
        padding: 8px 12px;
    }

    .company-mini-logo {
        width: 55px;
        height: 35px;
    }

    .exp-company-option span {
        font-size: 11px;
    }

    .tech-tags {
        gap: 6px;
    }

    .tech-tag {
        font-size: 12px;
        padding: 4px 8px;
    }

    .exp-impact li {
        font-size: 14px;
        padding: 6px 0;
        padding-left: 12px;
    }

    .exp-job-item-unique {
        padding: 15px;
        margin-bottom: 10px;
    }

    .exp-job-item-unique img {
        width: 50px;
        height: 50px;
    }

    .exp-job-item-unique h4 {
        font-size: 18px;
        display: flex;
        align-items: center;
        font-size: 18px;
    }

    .exp-job-item-unique p {
        font-size: 14px;
    }
}

/* Hide company selector on desktop */
@media (min-width: 769px) {
    .exp-company-selector {
        display: none;
    }
}

@media (max-width: 480px) {
    .exp-container-unique {
        padding: 20px;
        flex-direction: column;
        gap: 40px;
    }

    .exp-left-box-unique {
        width: 100%;
    }
    .exp-right-box-unique h3 {
        font-size : 22px
    }
    .exp-right-box-unique p {
        font-size : 16px
    }

    .exp-right-box-unique {
        width: 100%;
    }

    .exp-left-box-unique p {
        margin-bottom : 5px;
    }

    .exp-detail-header h2 {
        font-size: 20px;
    }

    .exp-back-btn {
        font-size: 14px;
        padding: 6px 12px;
    }

}

/* Initial state */
.hero-container, 
.hero-content, 
.hero-body, 
.hero-title, 
.hero-subtitle, 
.hero-passion, 
.hero-actions {
    opacity: 0;
    transform: translateY(50px);
}

/* Image animation */
.hero-image-wrapper img {
    opacity: 0;
    transform: scale(0.8);
}

/* Apply animation after page loads */
.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero-image-wrapper img.animate {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

/* Apply animation on scroll */
.exp-container {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .exp-container.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Client card pop-in animation */
  .client-card {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }
  
  .client-card.show {
    opacity: 1;
    transform: scale(1);
  }
  
  /* Button hover effect */
  .button-exp {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .button-exp:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
  }
  
  .work-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.work-card.visible {
    opacity: 1;
    transform: translateY(0);
}
