
/* About Section */
.about-section {
    background-color: #fff;
    padding: 50px 0;
}
 /* Styles for individual services */
 h1.resizable-border {
  position: relative;
  text-align: center;
  }
  h1.resizable-border::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 48%;
  width: 7%;
  height: 7px; /* Adjust the height of the border here */
  background-color:  #28a745;  /* Adjust the color of the border here */
  cursor: row-resize;
  text-align: left;
  pointer-events: none;
  margin-bottom: 20px;
  }
.about {
    text-align: center;
    padding: 4rem;
    position: relative;
}

/* Modify the styles for the image here */
.about::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; /* Set your desired width */
    height: 200px; /* Set your desired height */
    border-radius: 50%;
    background: url('./src/images/01725874024.png') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
}


.about p.text-uppercase {
    font-size: 12vw;
    opacity: 0.02;
}

.about_1 {
    margin-top: -150px;
}

.about_1 .fs-1 {
    font-family: cursive;
    text-transform: uppercase;
    text-align: center;
    margin-top: 5rem;
    font-size: 3rem; /* Adjust as needed */
}

.about_1 .text-center.fs-6 {
    font-size: 1rem; /* Adjust as needed */
    margin-top: 1rem;
}

/* Auto Text (the circular part) */
.auto_text{
  top: 25%;
  padding-top: 100px;
  width: 100%;
  padding: 20px;
    border-radius: 50%;
    text-align: center;
  overflow: hidden;
}
.auto_text .text{
  position: relative;
  padding-left: 15px;
  color: #28a745;
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  font-family: 'Tilt Prism', cursive;
}
.auto_text .text.first-text{
 color: #070707;
}
.text.sec-text::before,
.text.sec-text::after{
content: "";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: white;
border-left: 6px solid black;
animation: animate 4s steps(12) infinite;
}
@keyframes animate{
  40%, 60%{
      left: calc(100% + 4px) ;
  }
  100%{
      left: 0%;
  }
}
.counter-wrap {
  text-align: center;
  margin-bottom: 20px;
  border-right: 2px solid #ddd;
}

.counter {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}

.caption {
  font-size: 18px;
  color: #777;
}
/* Responsive Styling */
@media (max-width: 768px) {
    .about p.text-uppercase {
        font-size: 8vw;
    }

    .about_1 .fs-1 {
        font-size: 2rem;
        margin-top: 2rem;
    }

    .about_1 .text-center.fs-6 {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}
/* Skills Section Styles */
.skills {
    background-color: #f8f9fa; /* Set your desired background color */
    padding: 50px 0; /* Adjust the padding as needed */
  }
  
  .skills h1 {
    font-size: 36px; /* Adjust the font size as needed */
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px; /* Adjust the margin as needed */
  }
  
  .skills .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .skills .col-lg-6 {
    flex-basis: calc(50% - 30px); /* Adjust the width and margin as needed */
    margin: 0 15px;
  }
  
  .skills .mb-4 {
    margin-bottom: 20px; /* Adjust the margin as needed */
  }
  
  .skills label {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
  }
  
  .skills .progress {
    height: 20px; /* Adjust the height as needed */
    margin-top: 5px; /* Adjust the margin as needed */
  }
  
  .skills .progress-bar {
    border-radius: 5px;
  }
  
  /* Keyframes animation for percentage */
  @keyframes fillPercentage {
    0% {
      width: 0;
    }
  }
  
  /* Apply the animation to the progress bars */
  .progress-bar {
    animation: fillPercentage 2s ease-out forwards;
  }
  
  /* Custom property to define the width based on the percentage value */
  :root {
    --progress-value-htmlCss: 0%;
    --progress-value-bootstrap: 0%;
    --progress-value-tailwindReact: 0%;
    --progress-value-javascript: 0%;
    --progress-value-github: 0%;
    --progress-value-jqueryAjax: 0%;
    --progress-value-php: 0%;
    --progress-value-laravel: 0%;
  }
  
  /* Update the --progress-value custom property for each progress bar */
  #htmlCss {
    --progress-value-htmlCss: 95%;
  }
  
  #bootstrap {
    --progress-value-bootstrap: 85%;
  }
  
  #tailwindReact {
    --progress-value-tailwindReact: 65%;
  }
  
  #javascript {
    --progress-value-javascript: 80%;
  }
  
  #github {
    --progress-value-github: 80%;
  }
  
  #jqueryAjax {
    --progress-value-jqueryAjax: 85%;
  }
  
  #php {
    --progress-value-php: 80%;
  }
  
  #laravel {
    --progress-value-laravel: 75%;
  }
  
  
/* Style for the main container */
.container-fluid {
    padding: 20px;
}

/* Style for section headings */
h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Style for the accordion items */
.accordion-item {
    margin-bottom: 15px;
}

/* Style for the accordion buttons */
.accordion-button {
    background-color: #f8f9fa; /* Light gray background color */
    color: #333; /* Text color */
    border: none;
    border-radius: 0;
    padding: 10px 20px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

/* Style for the active accordion button */
.accordion-button[aria-expanded="true"] {
    background-color: #28a745; /* Blue background color for active button */
    color: #fff; /* White text color for active button */
}

/* Style for the accordion content */
.accordion-body {
    background-color: #fff; /* White background color */
    border: 1px solid #ddd; /* Gray border */
    border-radius: 0;
    padding: 15px;
    margin-top: -1px; /* Offset border to create seamless transition */
    transition: all 0.3s ease;
}

/* Style for the address element within accordion content */
address {
    font-style: normal;
    margin-top: 10px;
}

/* Style for muted text within accordion content */
.text-muted {
    color: #888; /* Gray text color */
}

/* Additional custom styles for specific elements */
/* You can customize these further as needed */

/* Style for the timeline item year (e.g., "2017-2021") */
.accordion-button::after {
    content: ''; /* Add content using CSS pseudo-element */
    display: block;
    clear: both;
    border: none;
}

/* Style for the university/project name within accordion content */
.accordion-body h3 {
    font-size: 24px;
    margin-top: 15px;
    color: #333;
}

/* Style for the text within accordion content */
.accordion-body p {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
}

/* Style for the span element containing university/company name */
.accordion-body span {
    display: block;
    font-size: 20px;
    margin-top: 15px;
    color: #333; /* Blue color for university/company name */
}

/* Style for the accordion content when expanded */
.accordion-button[aria-expanded="true"] + .accordion-collapse .accordion-body {
    border-top: 1px solid #ddd;
    border: none;
}

/* Hover effect for accordion buttons */
.accordion-button:hover {
  border: none;
    background-color: #ddd; /* Light gray background color on hover */
    color: none; /* Text color on hover */
}



/* Styling for the contact section */
.section-contact {
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
    font-family: 'Poppins', sans-serif;
  }
  
  .sec-contact {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .contacts {
    position: relative;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%; /* Ensure full width */
  }
  
  .contacts_1 {
    position: absolute; /* Reset the position to relative for this element */
    margin-top: -150px; /* Adjust the margin as needed */
  }
  
  .location {
    width: 30%;
    height: 300px;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 15px 20px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .location:hover {
    transform: translateY(-5px);
  }
  
  .location span {
    color: #28a745;
  }
  
  .location h1 {
    font-size: 24px;
    margin-top: 10px;
  }
  
  .location h6 {
    font-size: 18px;
    margin-top: 5px;
  }
  .bi.fa-5x {
    font-size: 5rem; /* Adjust the size as needed */
    color: #28a745;
  }
  /* Styling for the sub-contact section */
  .sub-contact {
    font-family: 'Poppins', sans-serif;
    position: relative;
    width: 100%;
    height: 600px;
    padding: 10px 15px 20px;
    display: flex;
    flex-wrap: wrap;
  }
  
  .maps {
    width: 50%;
    height: 520px;
    padding-right: 10px;
    margin-top: 20px;
    box-sizing: border-box;
    background-color: #f7f7f7;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .maps iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .contact-form {
    width: 50%;
    padding-left: 10px;
    box-sizing: border-box;
  }
  
  /* Form styles */
  .contact-form legend {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .contact-form label {
    font-weight: bold;
  }
  
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact-form textarea {
    resize: vertical;
  }
  
  .contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #000000;
  }
  