/*nav*/
.nav-link {
    position: relative;
    transition: color 0.3s;
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff; 
    transition: width 0.3s;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  .navbar-nav .nav-link {
    position: relative;
    padding-bottom: 5px;
  }
  
  .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: currentColor;
    transition: width 0.3s;
  }
  
  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 85%;
  }
  
  /*home page*/
  
  .typing-text::after {
    content: "";
    animation: typing 10s steps(11) infinite,
               blink 0.7s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #fff;
    display: inline-block;
  }
  
  @keyframes typing {
    0%   { content: "D"; }
    2.5%   { content: "De"; }
    5%  { content: "Des"; }
    7.5%  { content: "Desi"; }
    10%  { content: "Desig"; }
    12.5%  { content: "Design"; }
    15%  { content: "Designe"; }
    17.5%  { content: "Designer"; }
  
    20%  { content: "De"; }
    22.5%  { content: "Dev"; }
    25%  { content: "Deve"; }
    27.5%  { content: "Devel"; }
    30%  { content: "Develo"; }
    32.5%  { content: "Develop"; }
    35%  { content: "Developer"; }
  
    37.5%  { content: "F"; }
    40%  { content: "Fr"; }
    42.5%  { content: "Fre"; }
    45%  { content: "Free"; }
    47.5%  { content: "Freel"; }
    50%  { content: "Freela"; }
    52.5%  { content: "Freelan"; }
    55%  { content: "Freelanc"; }
    57.5%  { content: "Freelance"; }
    60%  { content: "Freelancer"; }
  
    62.5%  { content: "Ph"; }
    65%  { content: "Pho"; }
    67.5%  { content: "Phot"; }
    70%  { content: "Photo"; }
    72.5%  { content: "Photog"; }
    75%  { content: "Photogr"; }
    77.5%  { content: "Photogra"; }
    80%  { content: "Photograp"; }
    82.5%  { content: "Photograph"; }
    85%  { content: "Photographe"; }
    87.5%  { content: "Photographer"; }
  
    100%  { content: ""; }
  }
  
  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }

/* about section*/
.border-wrapper {
    border: 2px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
body {
    background-color: #f5f5f5;
    color: #4e4e4e;
}
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 18%;
    height: 4px;
    background-color: #0d6efd; 
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
.text {
    font-size: 1.25rem;
    font-weight: 300;
}
/*service page */
  .card__icon {
    background-color: white;
    border: 9px solid #0078ff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
  }
  
  .card__icon i {
    color: black;
    transition: 0.3s ease;
  }
  
  .card__icon:hover {
    background-color: #0078ff;
  }
  
  .card__icon:hover i {
    color: white;
  }
  
/*work*/
.carousel-indicators {
    bottom: 10px;
  }
  
  .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.4;
    margin: 0 5px;
    border: none;
    transition: 0.3s;
  }
  
  .carousel-indicators .active {
    opacity: 1;
    background-color: #0d6efd; 
  }

  /*blog*/
  .blog__avatar {
    width: 35px;  
    height: 35px;
    object-fit: cover;
  }
  .post__author span {
    color: #000;  
    font-weight: 500;  
  }
  .card__title a,
  .card__description {
    color: #000;
  }
  .card__title a,
  .post__author a {
    text-decoration: none;
    color: #000;
  }
  .card__description {
    color: gray;
  }
  .post__author span {
    color: gray;
  }
 
  /*contact*/
  .contact-bg-image {
    background-image: url('../imgs/Background/overlay-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .contact-info-icon {
    color: #007bff; 
  }
  .social-icon-circle {
    width: 60px;
    height: 60px;
    border: 5px solid #007bff; 
    background-color: #fff;     
    transition: all 0.3s ease;
    gap: 5px;
  }
  
  .social-icon-circle i {
    color: #000; 
    font-size: 20px;
  }
  
  .social-icon-circle:hover {
    background-color: #007bff;
  }
  
  .social-icon-circle:hover i {
    color: #fff;
  }
  
    

        

  
  


  /*footer*/
  .footer {
    background-color: #0062d3;  
    color: white;  
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-text p {
    font-size: 16px;
  }
  
  .footer-copy, .footer-credits {
    margin: 0;
  }
  
  
  