/* About Section Start */
#aboutContainer {
    background-color: var(--green);
    padding: 50px 20px;
}

.aboutSection {
    background-color: var(--green);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.aboutLeft img {
    width: 100%;
    max-width: 433px;
    margin: auto;
}

.aboutLeft h3{
    font-family:"MyFont";
    font-size:35px;
}
.aboutRight {
    flex: 1;
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.aboutRight h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
}

.aboutRight .detailPara {
    font-size: 1rem;
    text-align: justify;
    margin-top: 10px;
}

.aboutRight h3 {
    font-size: 2.2rem;
    font-weight: 700;
}

.btnLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btnLinks button {
    background-color: var(--black);
    color: var(--green);
    padding: 10px 20px;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(32, 32, 32, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btnLinks button:hover {
    background-color: var(--white);
    color: var(--black);
    box-shadow: 0px 4px 20px rgba(254, 255, 252, 0.5);
}

.btnLinks .socialLinks i {
    color: var(--green);
    padding: 12px;
    border-radius: 50%;
    background-color: var(--black);
    box-shadow: 0px 4px 20px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btnLinks .socialLinks i:hover {
    background-color: var(--white);
    color: var(--black);
}

/* Responsive About Section */
@media (max-width: 992px) {
    .aboutSection {
        flex-direction: column;
    }

    .aboutLeft img {
        max-width: 410px;
    }

    .aboutRight h2 {
        font-size: 2rem;
    }

    .aboutRight .detailPara {
        font-size: 0.9rem;
    }

    .btnLinks button {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

@media (max-width: 576px) {
    .aboutLeft img {
        max-width: 410px;
    }

    .aboutRight h2 {
        font-size: 1.8rem;
    }

    .aboutRight .detailPara {
        font-size: 0.8rem;
    }

    .btnLinks button {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

/* Explore My Work Section */
#containerExplore {
    background-color: var(--white);
    padding: 50px 20px;
}

.explore {
    color: var(--black);
    text-align: left;
}

.explore h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    white-space:nowrap;
}

.explore p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.explore h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.explore span {
    font-size: 1rem;
    font-style: italic;
}

.explore ul li {
    text-align:left;
    font-size: 1rem;
    font-weight: 700;
}

.explore a {
    color: var(--black);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-style: italic;
}

/* Responsive Explore Section */
@media (max-width: 992px) {
    .explore h2 {
        font-size: 2.4rem;
    }

    .explore p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .explore h2 {
        font-size: 2rem;
    }

    .explore p {
        font-size: 0.8rem;
    }
}

/* Portfolio Section */

#containerPortfolio {
    background-color: var(--black);
}

.portfolio-card .card {
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.portfolio-card .card-header {
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.portfolio-card .portfolio-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.portfolio-card .card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.portfolio-card .portfolio-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.5s ease;
}

.portfolio-card .card:hover .portfolio-overlay {
    top: 0;
}
.portfolio-card .card .portfolio-overlay button{
    background-color:var(--green);
}

.portfolio-card .card .portfolio-overlay button i{
    color:var(--black);
}

.portfolio-card .portfolio-details-btn .btn {
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    border-radius: 0;
    transition: bottom 0.5s ease;
}

.portfolio-card .card:hover .portfolio-details-btn .btn {
    bottom: 0;
    background-color:var(--green);
}

.portfolio-card a {
    text-decoration: none;
}

.portfolio-card small a {
    color: var(--text-light);
    transition: color 0.3s;
}

.portfolio-card small a:hover {
    color: var(--brand-heading);
}

.portfolio-card strong a {
    color: var(--white);
    transition: color 0.3s;
}

.portfolio-card strong a:hover {
    color: var(--brand-heading);
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-card .card-header {
        height: 300px;
    }
    .portfolio-card .portfolio-img {
        height: 100%;
    }
}

@media (max-width: 576px) {
    .portfolio-card .card-header {
        height: 250px;
    }
    .portfolio-card .portfolio-img {
        height: 100%;
    }
}


/* fiverr showcase */

/* Container Styles */
#container-fiver {
    background-color: var(--black);
    padding: 20px 0;
  }
  
  .fiver{
    margin-top:33px;
    background-color: var(--black);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
  }
  
  /* Text Styles */
  .fiver h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green);
  }
  
  .fiver span {
    color: var(--white);
  }
  
  /* Button Styles */

  .cta-button-book {
    padding: 10px 20px;
    width: 200px;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--black);
    background-color: var(--green);
    transition: all 0.3s ease;
  }
  
  .cta-button-book:hover {
    background-color: var(--white);
    color: var(--black);
  }
  .cta-button {
    padding: 10px 20px;
    width: 200px;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--black);
    background-color: var(--green);
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: var(--black);
    color: var(--green);
  }
  
  /* Image Styles */
  .tech-logo {
    width: 60px;
    height: 60px;
    margin: 10px 0;
    object-fit: contain;
  }
  
  .fiverr-girl {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .fiver h2 {
      font-size: 2rem;
    }
  
    .tech-logo {
      width: 50px;
      height: 50px;
    }
  
    .cta-button {
      width: 180px;
      font-size: 16px;
    }
  }
  
  @media (max-width: 576px) {
    .fiverr h2 {
      font-size: 1.8rem;
    }
  
    .tech-logo {
      width: 40px;
      height: 40px;
    }
  
    .cta-button {
      width: 160px;
      font-size: 14px;
    }
  }
  
  /* popup form */

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
  
  /* Popup Content */
  .popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    position: relative;
  }
  
  .popup-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .popup-content .form-group {
    margin-bottom: 15px;
    text-align: left;
  }
  
  .popup-content label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .popup-content input, .popup-content select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .popup-content button {
    margin-top: 10px;
  }
  
  .close-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color:var(--black);
    background: #000000;
    padding: 3px 10\px;
  }
  

  .close-btn:hover{
    background-color:var(--green);
    color:var(--white);
  }