*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#e5e5ea;
    display:flex;
}

/* Sidebar */



.logo h1{
    font-size:40px;
}
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 90px;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-right: 1px solid #e5e5e5; /* Single vertical line */
    box-shadow: none; /* Remove shadow for clean border */
    z-index: 100;
}

.sidebar-logo {
  margin-top: 40px;
}

.logo-text {
  font-size: 2.5rem;
  font-family: serif;
  font-weight: bold;
  color: #111;
}

.logo-dot {
  color: #e91e63; /* Pink color for the dot */
}

.sidebar-icons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.sidebar-icons a img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.sidebar-icons a img:hover {
  opacity: 1;
}

/* .social-icons{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.social-icons a{
    text-decoration:none;
    color:#666;
    writing-mode:vertical-rl;
} */

/* Main */

.main-container{
    margin-left:90px;
    width:calc(100% - 90px);
    /* Ensure no left border or shadow here */
    border-left: none;
    box-shadow: none;
}

/* Navbar */

.navbar{
    position:fixed;
    top:0;
    left:90px;
    width:calc(100% - 90px);

    background:white;
    padding:25px 60px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:1000;
    border-bottom:1px solid #eee;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:40px;
}

.navbar a{
    text-decoration:none;
    color:black;
    font-weight:500;
}

.navbar a:hover{
    color:#ff2e63;
}

.hire-btn{
    padding:12px 30px;
    border:none;
    background:#ff2e63;
    color:white;
    cursor:pointer;
    border-radius:5px;
}

/* Sections */

.section{
    min-height:100vh;
    padding:140px 80px 80px;
    background:white;
    border-bottom:1px solid #eee;
}

/* Hero */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.hero-left{
    flex:1;
}

.intro{
    color:#ff2e63;
    letter-spacing:3px;
    margin-bottom:15px;
    font-weight:600;
}

.hero-left h1{
    font-size:80px;
    line-height:1.1;
}

.hero-left h1 span{
    color:#ff2e63;
}

.hero-left h2{
    font-size:28px;
    margin:25px 0;
    color:#333;
}

.hero-description{
    color:#666;
    line-height:1.8;
    max-width:550px;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
}

.primary-btn,
.secondary-btn{
    padding:15px 35px;
    border:none;
    cursor:pointer;
    font-size:16px;
    border-radius:6px;
}

.primary-btn{
    background:#ff2e63;
    color:white;
}

.secondary-btn{
    background:white;
    border:1px solid #ff2e63;
    color:#ff2e63;
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
    position:relative;
}

.image-bg{
    width:420px;
    height:420px;
    background:#ffdce5;
    border-radius:40% 60% 65% 35%;
    position:absolute;
    top:30px;
    animation:floatShape 6s infinite alternate;
}

.hero-right img{
    width:380px;
    height:500px;
    object-fit:cover;
    border-radius:30px;
    position:relative;
    z-index:2;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* Skills */

.skills{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:30px;
}

.skills span{
    background:#ff2e63;
    color:white;
    padding:12px 24px;
    border-radius:30px;
}

/* Education */

.education-card{
    padding:30px;
    border-radius:20px;
    background:#fafafa;
    margin-bottom:25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* Projects */

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.project-card{
    padding:30px;
    background:#fafafa;
    border-radius:20px;
    transition:0.3s;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card h3{
    margin-bottom:15px;
}

/* Contact */

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
    max-width:600px;
}

.contact-form input,
.contact-form textarea{
    padding:15px;
    border:1px solid #ccc;
    border-radius:5px;
}

.contact-form button{
    padding:15px;
    border:none;
    background:#ff2e63;
    color:white;
    cursor:pointer;
}

/* Experience & Certificates */
.experience-card,
.certificate-card{

    background:#fafafa;
    padding:30px;
    border-radius:20px;
    margin-top:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.certificate-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.experience-card ul{
    margin-top:20px;
    padding-left:20px;
}

.experience-card li{
    margin-bottom:10px;
}

@keyframes floatShape{

    from{
        transform:translateY(0px);
    }

    to{
        transform:translateY(20px);
    }

}