* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
  }
  
html, body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

p{
    font-size: 1.3rem;
}
 ul li{
    font-size: 1.3rem;
 }

/* Sidebar Styling */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    height: 100vh;
    background: #0c1013;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Sidebar anchor tag */
.sidebar a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 18px;
    display: flex;
    margin-bottom: 2.2rem;
    margin-top: 2rem;
    margin-left: 2rem;
   
}
.sidebar i{
    margin-right: 1.2rem;
}

.sidebar a:hover {
    background: #34495e;
    border-radius: 5px;
}

/* Push main content to the right */
.main-content {
    margin-left: 300px; 
    
}

/* Hero Image */
.hero img {
    width: 100%;
    max-height: 100vh;
    object-fit: cover;    
}

/* Responsive Design for sidebar */
@media (max-width: 1200px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        text-align: center;
        width: 100%;
    }

    .main-content {
        margin-left: 0; /* Remove margin on small screens */
        /* padding: 10px; */
    }
    .main-content img{
        width: 100%;
    }
}

/* image and about section  */
.image-about img{
    width: 100%;
    max-height: 100%;
}

/* progress bar  */

.progress{
    margin-bottom: 1rem;
}


/* project images  */
.projects img{
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    border-radius: 5px; 
  
}

@media (max-width: 768px) {
    p {
        font-size: 1rem;
    }
    ul li{
        font-size: 1rem;
    }
    h1{
        font-size: 15px;
    }
}


@media (max-width: 768px) { 
    .projects {
        padding: 1.2rem; 
    .resume{
        padding: 1.2rem;

    }
}
}

/* resume section border style  */
.resume {
    position: relative;
}

.left-box, .righ-box {
    position: relative;
    padding-left: 40px; /* Space from left */
    margin-bottom: 40px;
    border-left: 2px solid #0563bb; /* Blue left border */
}

/* Border च्या टॉपला circle */
.left-box::before,
.righ-box::before {
    content: '';
    position: absolute;
    left: -11px; /* Border वर middle मध्ये ठेवण्यासाठी */
    top: 0;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #0563bb;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* Border च्या मध्ये circle */
.left-box::after,
.righ-box::after {
    content: '';
    position: absolute;
    left: -11px; /* Border वर middle मध्ये ठेवण्यासाठी */
    top: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #0563bb;
    border-radius: 50%;
    transform: translateY(-50%);
}


/* testimonial section  */
/* .testimonial img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
   
  } */
  
  
  @media (max-width: 768px) {
    img.rounded-circle {
        width: 80px;
        height: 80px;
    }
}

@media (min-width: 768px) {
    img.rounded-circle {
        width: 80px;
        height: 80px;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%); /* White karayla */
}
/* Dark color sathi */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(30%); /* Darker shade */
  marg
}
