* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid green; */
  }
  
  body {
    font-family: 'Rubik', sans-serif;
   
    
  
   
    background-color: #e1e1e1;
  }
/* download cv print format */
  @media print {
    body * {
      visibility: hidden;
    }
    #resume, #resume * {
      visibility: visible;
    }
    #resume {
      position: absolute;
      left: 0;
      top: 0;
    }
  }
  
  /* body.noscroll {
    overflow: hidden;
  } */
  
  
  /* ---------------------- Vertical Navbar ---------------------- */
  .vertical-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 100vh;
    background-color: #f8f9fa;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    transition: width 0.3s ease;
  }
  
  .vertical-navbar .logo {
    background-color: #e40046;
    color: white;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .vertical-navbar .nav-link {
    color: black;
    text-align: center;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .vertical-navbar .nav-link:hover {
    color: white;
    background-color: red;
    transform: scale(1.05);
  }
  
  .pencil-sticker {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: red;
    color: #212529;
    padding: 4px 12px;
    font-size: 0.75rem;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 100;
  }
  
  .pencil-sticker::after {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 8px solid red;
  }
  
  .nav-item:hover .pencil-sticker {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
  }
  
  .social a {
    margin: 0 5px;
    font-size: 1rem;
    color: black;
  }
  
  /* Bottom Nav for md and below */
  .mobile-bottom-nav {
    border-top: 1px solid #ddd;
    background-color: #f8f9fa;
    z-index: 1050;
  }
  
  .mobile-bottom-nav a {
    font-size: 0.9rem;
    color: black;
    text-align: center;
  }
  
  .mobile-bottom-nav i {
    font-size: 1.2rem;
    display: block;
  }
  
/* ------------------------mobile bottom-nav-------------------- */




  /* ------------------------right side scroll nav ------------- */


  .scroll-tab {
    right: 10px;
  }
  
  .scroll-nav-icon {
  
    color: darkgrey;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }
  
  .scroll-nav-icon:hover {
    background: #c7003a;
  }
  
  .dot {
  
    width: 8px;
    height: 8px;
    background: darkgrey;
    border-radius: 50%;
    display: block;
    transition: background 10s ease;
  }
  
  .dot:hover {
    border-radius: 100%;
    border: 6px solid  red;
    background: #e40046;
    transition: background 20s ease;
  }
  
  @media (max-width: 768px) {
    .scroll-tab {
      top: auto;
    bottom: auto;
      flex-direction: row;
      right: 50%;
      transform: translateX(50%);
      background: white;
      padding: 5px 10px;
      border-radius: 30px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
  
    .dot, .scroll-nav-icon {
      margin: 0 5px;
    }
  }
 
  
  
  
  /* ---------------------- Bottom Navbar ---------------------- */
  .bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    z-index: 1050;
    display: flex;
    align-items: center;
  }
  

  .search-icon {
    background-color: #e40046;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .search-icon a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
  }

  .search-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 9999;
    display: none;
    width: 300px;
  }
  
  .search-box {
    position: relative;
  }
  
  .search-box input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  
  .close-search {
    position: absolute;
    right: 10px;
    top: 8px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  
  .search-suggestions {
    margin-top: 10px;
  }
  
  .search-suggestions p {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
  }
  
  .search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .search-suggestions ul li {
    margin-bottom: 4px;
  }
  
  .search-suggestions ul li a {
    text-decoration: none;
    color: #007bff;
    font-size: 14px;
  }
  
  
  

  .nav-links {
    display: flex;
    margin: 0 auto;
    padding: 0;
  }
  
  .nav-links li {
    margin: 0 10px;
    list-style: none;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    position: relative;
  }
  

.nav-links li a.selected-link {
  display: inline-block;
  border-top: 1px solid #ffc107;
  border-bottom: 1px solid #ffc107;
  padding: 4px 10px;
}


.nav-links li a:hover {
  display: inline-block;
  border-top: 1px solid red;
  border-bottom: 1px solid red;
  padding: 4px 10px;
}

  
  /* Contact Info and Scroll */
  .contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 1rem;
  }
  
  .scroll-down {
    text-align: right;
    background-color:  #da062c;
  }
  
  .scroll-text {
    font-size: 0.8rem;
    color: white;
  }
  .scroll-indicator {
    position: fixed;
    bottom: 5px;
    right: 0px;
    width: 20px;
    height: 40px;
    border: 2px solid black;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    z-index: 999;
    background-color:  #da062c;
  }
  
  .scroll-line {
    width: 2px;
    height: 10px;
    background-color: black;
    border-radius: 1px;
  }
  
  
  /* ---------------------- Responsive Design ---------------------- */
  @media (max-width: 768px) {
    .vertical-navbar {
      width: 30px;
    }
  
    .menu-text {
      display: none;
    }
  
    body {
      margin-left: 30px;
      margin-bottom: 160px;
    }
  
    .bottom-navbar {
    
      flex-direction: column;
      text-align: center;
      height: auto;
      padding: 0.5rem 0;
    }
    .menu-box{
      display: flex;
    }

    .contact-box{
      display: flex;
    }
  
    .contact-info {
      flex-direction: column;
      margin-top: 0.5rem;
    }
  
    .scroll-down {
      margin-top: 0.5rem;
    }
  
    .nav-links {
      flex-direction: row;
    }
  
    .nav-links li {
      margin: 5px 0;
    }
  }


  /* -----------------------------Main content----------------- */
.home-section .container{
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;

}

  .left-column {
    position: relative;
    padding-right: 20px;
    z-index: 1;
  }

  .left-shadow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 70%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), transparent);
    z-index: -1;
  }

  .red-line {
    width: 60px;
    height: 1px;
    background-color: red;
    margin: 10px 0;
    
  }

  .welcome-msg {
    font-size: 0.7rem;
    color: #6c757d;
  }

  .main-heading {
   font-family: 'Poppins', sans-serif;
   letter-spacing: .5px;
   line-height: 3rem;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 15px 0;
  }
  .design{
    color: #da062c;
  }

  .description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 20px;
    
  }
/* button */
  .get-started {
    background-color: #da062c;
    color: white;
   
    padding: 10px 25px;
    border: none;
  }

  .circular-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  @media (max-width: 768px) {
    .main-heading {
      font-size: 2rem;
    }
  }


/* -------------------about section-------------------- */


.about-title{
  font-size: 0.9rem;
}
.about-heading{
font-size: 1.2rem;
}
.about-description{
font-size: 0.9rem;
}
.details{
  font-size: 0.9rem;
}

.about-img img {
  max-width: 100%;
  height: 20rem;
 
 
}
.info-icon {
  color: #e40046;
  margin-right: 8px;
}
.download-btn {
  background-color: #e40046;
  color: #fff;
  font-size: 12px;
  padding: 10px 30px;
  border: none;
  border-radius: 0;
}
.download-btn:hover {
  color: white;
  background-color: #c1003b;
}
.social-icons i {
  font-size: 15px;
  color: #333;
  margin-right: 15px;
  transition: color 0.3s;
  background-color: white;
  padding: 5px;
}

.social-icons i:hover {
  color: #e40046;
}


.half-pill {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;

  background-color: white;
  border: none;
  padding: 5px;
  height: 2rem;
  font-size: 15px;
}
.half-pill i{
  color:  #e40046;
  font-size: 0.8rem;
  background-color: none;
}


/* ----------------service section------------------- */
.services-section .container {

  padding: 30px;

}

.service-card{
 
  max-width: 280px;
  height: 200 px;
}


/* -----------------education and service------------------ */


.experience-button{
  background-color: white;
  color: black;
}

/* ----------------------skill section------------- */

.progress{
  position: relative;
  height: 6px;
  border-radius: 0;
}
.skill-icon{
  color: #e40046;
}
.skill-percent{
  background-color: white;
  position: absolute;
  z-index: 10;
left: 60%;
top: 49%;
  height: 25px;
  width: 25px;
  font-size: 0.7rem;
  
}
/* --------------my portfolio section-------------- */
.portfolio-btn{
  background-color: white;

}
.portfolio-btn:hover{
  background-color:  #e40046;
}

/* ---------------news & update card --------------------------------------*/


.news-update-card{
  background-color: #f6f6f6;

}
.news-update-card .about-heading{
  font-size: 15px;
  font-weight: bold;
}

.details-more-button{
max-width: 10rem;

  padding: 10px 10px;
font-size: 0.8rem;
}
.details-more-button:hover{
  background-color:  #e40046!important;
  
}


/* ---------------contact section--------------- */

.image-border {
  display: inline-block;
  border: 5px solid white; 
  padding: 0;
  margin: 0;
  line-height: 0; 
}

.image-border img {
  display: block;
  width: 100%; 
  height: auto;
  border: none; 
}