/* Unique Portfolio Section CSS */
.portfolio__section {
    padding: 80px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f9f9f9;
  }
  
  .portfolio__heading {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
  }
  
  .portfolio__section > p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    text-align: center;
  }
  
  .portfolio__cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    max-width: 1200px;
    width: 100%;
  }
  
  .portfolio__card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: calc(25% - 20px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .portfolio__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .portfolio__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .portfolio__card-title {
    margin: 15px 20px 5px;
    color: #222;
    font-size: 20px;
  }
  
  .portfolio__card-text {
    font-size: 1rem;
    color: #666;
    margin: 0 20px 20px;
    flex-grow: 1;
    line-height: 140%;
    margin-top: 7px;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 860px) {
    .portfolio__card {
      width: calc(50% - 20px);
    }
  }
  
  @media screen and (max-width: 560px) {
    .portfolio__card {
      width: 100%;
    }
  
    .portfolio__heading {
      font-size: 2rem;
    }
  
    .portfolio__section > p {
      font-size: 1rem;
    }
  }
  

  /* ----------------------------------------------------------------------[ */
  /* Main Container */
.chalo-container {
    width: 100%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
  }
  
  /* Hero Section */
  .chalo-hero-section {
    background-color: #f6ac01; /* Orange background */
    text-align: center;
    padding: 4rem 2rem 3rem 2rem;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    position: relative;
  }
  
  /* Logo Container */
  .chalo-logo-wrapper {
    background-color: #ffffff;
    width: 136px;
    height: 134px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -68px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .chalo-logo-img {
    width: 87px;
    height: auto;
  }
  
  /* Heading */
  .chalo-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 80px;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.3;
  }
  
  /* Description */
  .chalo-description {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
  }
  
  /* Tagline */
  .chalo-tagline {
    font-weight: bold;
    margin-bottom: 2rem;
    color: #ffffff;
  }
  
  /* CTA Button */
  .chalo-cta-button {
    background-color: #000;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .chalo-cta-button:hover {
    background-color: #000;
  }
  
  /* Responsive Styles */
  @media (max-width: 600px) {
    .chalo-hero-section {
      padding: 3rem 1.5rem 2rem 1.5rem;
    }
  
    .chalo-heading {
      font-size: 1.5rem;
    }
  
    .chalo-description,
    .chalo-tagline {
      font-size: 0.9rem;
    }
  
    .chalo-cta-button {
      font-size: 0.9rem;
      padding: 0.7rem 1.5rem;
    }
  
    .chalo-logo-wrapper {
      width: 100px;
      height: 100px;
      top: -50px;
    }
  
    .chalo-logo-img {
      width: 60px;
    }
  }