body{
    color: white;
    width: 100%;
}  

#About, #Services, #Portfolio, #Contact{
  padding-top: 70px;
}

.animated-logo {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  display: inline-block;
  transition: transform 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

/* Add hover effect */
.animated-logo:hover {
  transform: scale(1.2);
  text-shadow: 0 0 15px rgba(254, 232, 37, 0.8), 0 0 30px rgba(218, 215, 40, 0.8);
}

/* Optional: Add an initial fade-in effect */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.animated-logo {
  animation: fadeIn 1s ease-in-out;
}

  
  /* Navbar link hover effect */
  li a {
    font-weight: 800;
    margin-left: 18px;
    color: white;
    position: relative;
    display: inline-block;
}

li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    background-color: gold;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

li a:hover::after {
    transform: scaleX(1);
}

li a:hover {
    color: gold;
}

/* Navbar brand image */
.navbar-brand img {
    max-height: 40px;
}

/* Navbar toggler icon */
.navbar-toggler {
    border: none;
    font-size: 24px;
    color: white;
}

/* Adjustments for smaller screens */
@media (max-width: 991.98px) {
    .navbar-brand, .navbar-toggler {
        margin-left: 0;
    }
}

.section{
    margin-top: 66px;
}


h3{
    color: gold;
}
h1{
    font-size:4rem;
    font-weight: 700;
}
h4{
    color: gold;
    font-weight: 500;
}
h2{
    text-align: center;
    color: gold;
}
h5{
    font-size: 50px;
}
hr{
    height: 3px;
    border-radius: 2px;
    color: white;
}
.im img{
  height: 400px;
  width: 100%;
  /* border: 1px solid rgb(57, 57, 49); */
  /* border-bottom-left-radius: 200px;
  border-bottom-right-radius: 200px;
  border-top-left-radius: 200px; */
  /* background-image: url(download\ \(13\).jpg); */
  border: 5px solid gold;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  
}

.me{
  height: 400px;
  width: 100%;
  border: 5px solid gold;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);

}


/* Hire Me Button */
.hire-btn {
  background: linear-gradient(45deg, #ff9800, #ff5722);
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
  position: relative;
  overflow: hidden;
}

/* Button Text */
.hire-btn a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
}

/* Hover Effects */
.hire-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
}

/* Glowing Effect */
.hire-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.4s ease, height 0.4s ease, top 0.4s ease, left 0.4s ease;
  border-radius: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.hire-btn:hover::before {
  width: 0;
  height: 0;
}

/* Button Click Effect */
.hire-btn:active {
  transform: scale(0.95);
}



/* CV */
.cv-link {
    /* display: inline-block; */
    padding: 10px 15px;
    /* background-color: #007bff; */
    color: black;
    text-decoration: none;
    /* border-radius: 5px; */
    transition: background-color 0.3s ease;
  }
  .cv-link:hover{
    color: white;
    font-weight: 600;
  }
  
  .icn{
    font-size: 1rem;
  }

  .icn i {
    margin-right: 8px;
    color: #f39c12;
  }


  /* Achievement */
  .counter {
    font-size: 3rem;
    font-weight: bold;
    color: #007bff;
}
.counter-section {
    padding: 60px 0;
}

  /* -- Services Start-- */
  
    .Serv {
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
    }
  
    .card {
      width: 100%;
      height: 300px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      position: relative;
      transition: transform 0.3s ease;
      margin: 20px;
      background-color: black;
  
    }
  
    .card:hover {
      transform: translateY(-10px);
      background-color: gold;
    }
  
    .card-icon {
      width: 100%;
      height: 130px;
      background-color: #000000;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .card-icon i {
      font-size: 50px;
      color: #fff;
    }
  
    .card-content {
      padding: 20px;
    }
  
    .card-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
      text-align: center;
    }
  
    h6{
      text-align: center;
    }
    .card-description {
      font-size: 14px;
      color: #d2cece;
      text-align: center;
    }



    /* General Styles */
.container_service {
  text-align: center;
  padding: 50px 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Services Grid */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* Service Card Styles */
.service-card {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.service-card:hover{
  background-color: gold;
}

/* Card Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.card-icon {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in-out;
}
.card-icon i{
  width: 100%;
}

/* Text Styles */
.service-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px 0;
}

.service-description {
  font-size: 0.9rem;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
  }
}

  
    /* -- Services End -- */
  
  /* Portfolio */

/* Portfolio Section */
.portfolio_section {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.fade-text {
  width: 200px;
  height: 12px;
  background: linear-gradient(to right, #ff8c00, #ff4500);
  border: none;
  margin: 10px auto;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* Project Card */
.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInScale 0.8s ease-in-out forwards;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Project Image */
.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

/* Overlay Effect */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.project-card:hover .overlay {
  opacity: 1;
}

/* View Project Button */
.view-project {
  background: #ff4500;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease-in-out;
}

.view-project:hover {
  background: #ff8c00;
}

/* Project Content */
.project-content {
  padding: 20px;
  text-align: center;
}

.project-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
  transition: color 0.3s ease-in-out;
}

.project-card:hover .project-title {
  color: #ff4500;
}

.project-description {
  font-size: 1rem;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Animations */
@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(30px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInScale {
  0% {
      opacity: 0;
      transform: scale(0.9);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }

  .project-title {
      font-size: 1.3rem;
  }

  .portfolio-grid {
      grid-template-columns: 1fr;
  }
}






    .port {
      font-family: Arial, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
      background-color: black
    }
  
    .portfolio {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
  
    .project-card {
      width: 100%;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      position: relative;
      transition: transform 0.3s ease;
    }
  
    .project-card:hover {
      transform: translateY(-10px);
      background-color: gold;
    }
  
    .project-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }
  
    .project-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
  
    .project-content {
      padding: 20px;
    }
  
    .project-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
    }
  
    .project-description {
      font-size: 14px;
      color: #666;
    }
  
    .project-links {
      margin-top: 20px;
      display: flex;
      justify-content: space-between;
    }
  
    .project-link {
      color: #3498db;
      text-decoration: none;
      transition: color 0.3s ease;
    }
  
    .project-link:hover {
      color: #2980b9;
    }
  
    .project-icon {
      font-size: 18px;
    }
  
  /* Contact */

 .contactus{
  margin-top: 30px;
 }
    .contact h2{
      margin-bottom: 4rem;
  }
  
  .contact form{
      width: 100%;
      margin: 1rem auto;
      text-align: center;
      margin-bottom: 3rem;
  }
  
  .contact form .input-bx{
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }
  
  .contact form .input-bx input,
  .contact form textarea{
      width: 100%;
      padding: 1.5rem;
      font-size: 1.6rem;
      color: white;
      background-color: black;
      border-radius: .5rem;
      margin: .7rem 0;
  }
  
  .contact form .input-bx input{
      width: 100%;
      
  }
  .contact form .input-bx input:focus{
    border: .2rem solid gold;
  }
  
  .contact form textarea{
      resize: none;
  }
  
  .contact form .btn{
      margin-top: 2rem;
      cursor: pointer;
      border-radius: 50px;
  }

  .sendmsg{
    color: white;
    font-weight: 500;
  }
  
  .header{
    text-align: center;
    color: gold;
  }
  
  #typewriter-text {
    font-family: Arial, sans-serif;
    font-size: 20px;
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflowing text */
    border-right: .15em solid orange; /* Create the typewriter cursor effect */
    animation: typing 2s steps(20, end);
  }
  /* Typing animation */
  @keyframes typing {
    from { width: 0 }
    to { width:20% }
  }
  
  
  /* Back to Top Button */
  #backToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed position */
    bottom: 20px; /* Place the button 20px from the bottom */
    right: 20px; /* Place the button 30px from the right */
    z-index: 1000; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #ffffff; /* Set a background color */
    color: black; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 6px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
  }
  
  #backToTopBtn:hover {
    background-color: gold; /* Add a dark-grey background on hover */
    color: red;
  }
  
  
  .fade-text {
    font-size: 3em;
    color: gold;
    animation: fadeColor 3s infinite;
  }
  
  @keyframes fadeColor {
    0% {
        color: gold;
        animation-duration: 4s;
  
    }
    50% {
        color: rgb(255, 0, 0);
    }
    100% {
        color: gold;
    }
  }
  
  
  .stars {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
    overflow: hidden;
  }
  
  .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px 3px white;
    animation: glitter 2s infinite;
    opacity: 0;
  }
  
  @keyframes glitter {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
  }
  
  @keyframes moveStars {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
  }
  
  @keyframes moveStars2 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-200%);
    }
  }
  .typewriter{
    color: white;
  }

  /* clients */
  .clients {
    overflow: hidden;
    .slider {
      animation: slidein 30s linear infinite;
      white-space: nowrap;
      .logos {
        width: 100%;
        display: inline-block;
        margin-top: 30px;
        opacity: 0.6;

        .fab {
          width: calc(100% / 5);
          animation: fade-in 0.5s 
            cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
        }
      }
    }
  }
  
  @keyframes slidein {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-100%, 0, 0);
    }
  }
  
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }


  /* Social Media Icons */

  /* Social Icons Container */
.social {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

/* Social Links Styling */
.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  color: white;
  background-color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

/* Hover Effects */
.social-link:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Unique Colors for Each Platform */
.facebook { background: #1877f2; }
.instagram { background: #e4405f; }
.linkedin { background: #0077b5; }
.twitter { background: #000; }

/* Icon Style */
.social-link i {
  transition: color 0.3s ease;
}

/* Hover Effects - Change icon color */
.social-link:hover i {
  color: #fff;
}


/* Footer Styling */
.footer {
  color: #fff;
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  overflow: hidden;
}

/* Contact Information */
.contact-info {
  margin-bottom: 10px;
}

.contact-info p {
  margin: 5px 0;
  font-size: 16px;
}

.contact-info i {
  margin-right: 8px;
  color: #f39c12;
}

.contact-info a {
  color: #f39c12;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #fff;
}

/* Footer Text */
.footer-text {
  margin-top: 20px;
  opacity: 0.8;
}
strong{
  color: gold;
}

/* Responsive Design */
@media (max-width: 600px) {
  .social {
      gap: 10px;
  }
  .social-link {
      width: 40px;
      height: 40px;
      font-size: 18px;
  }
  .contact-info p {
      font-size: 14px;
  }
}





