
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #f9f9f9;
      color: #000;
      line-height: 1.5;
    }

    header {
      background: #fff;
      padding: 1rem 2rem;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Poppins', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #000;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
    }

    nav ul li a {
      color: #000;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      text-transform: uppercase;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: #f4c430;
    }

    .cta-button {
      background-color: #f4c430;
      color: #000;
      padding: 0.5rem 1.5rem;
      border-radius: 20px;
      text-decoration: none;
      font-weight: 500;
      transition: background-color 0.7s ease;
      transition: color 0.7s ease;
    }

    .cta-button:hover{
      background-color: #706e67;
      color: #fff;
    }



    .contact:hover {
      background-color: #e0b023  !important;
      color: #000 !important;
   
    }

    .hamburger {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    .hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 2rem;
    }

    .hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 4rem;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.1rem;
      max-width: 600px;
      margin-bottom: 2rem;
    }

    .hero .cta-button {
      font-size: 1rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }

      nav ul.active {
        display: flex;
      }

      nav ul li {
        margin: 0.5rem 0;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1rem;
      }
    }
 


/* service section */
  .services-section {
    padding-bottom: 70px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .services-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .services-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .services-tags {
    position: relative;
    height: 200px;
  }

  .tag {
    position: absolute;
    background: #000;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
  }

  .tag.web-design {
    top: 10px;
    left: 10px;
  }

  .tag.social-media {
    top: 50px;
    left: 50px;
    z-index: 1;
  }

  .tag.marketing {
    top: 90px;
    left: 20px;
  }

  .tag.paid-ads {
    top: 30px;
    left: 80px;
  }

  .tag.branding {
    top: 70px;
    left: 120px;
  }

  .tag.content-creation {
    top: 110px;
    left: 60px;
  }

  .tag.paid-ads::before {
    content: "★";
    color: #f4c430;
    margin-right: 0.5rem;
  }

  .stats-card {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
  }

  .stats-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .stats-card p {
    font-size: 0.9rem;
  }

  .testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .testimonial-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .testimonial-card .rating {
    color: #f4c430;
    font-size: 1.2rem;
  }

  @media (max-width: 768px) {
    .services-section {
      grid-template-columns: 1fr;
    }

    .services-tags {
      height: 300px;
    }
  }

  /* why choose us */

  .why-choose-us {
    background-color: #000;
    color: #fff;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
  }

  .title-card {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .title-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .reasons-container {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .reason-card {
    padding: 2rem;
    text-align: center;
  }

  .reason-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
  }

  .reason-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .icon {
    font-size: 2rem;
    color: #f4c430;
    margin-bottom: 1rem;
  }

  @media (max-width: 768px) {
    .why-choose-us {
      flex-direction: column;
      padding: 2rem;
    }

    .title-card h2 {
      font-size: 2rem;
    }

    .reasons-container {
      grid-template-columns: 1fr;
    }
  }


  /* know about us */
 


  .get-to-know-us {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 2rem;
    background-color: #f9f9f9;
  }

  .left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .left-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .left-section p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
  }

  .right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .image-placeholder {
    background: url('https://images.unsplash.com/photo-1612296727716-d6c69d2a2cbb?q=80&w=871&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center/cover;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .testimonial-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .get-to-know-us {
      flex-direction: column;
      padding: 2rem;
    }

    .left-section h2 {
      font-size: 2rem;
    }

    .image-placeholder {
      height: 200px;
    }
  }

  /* project section */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .projects-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
    text-align: center;
    overflow: hidden;
  }

  .projects-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
  }

  .projects-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #f4c430;
    transition: width 0.3s ease;
  }

  .category-buttons {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .category-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .category-btn.active {
    background: linear-gradient(90deg, #f4c430, #ffeb3b);
    color: #1a1a1a;
    transform: scale(1.05);
  }

  .category-btn:hover {
    background: linear-gradient(90deg, #333, #555);
    color: #fff;
  }

  .project-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    animation: fadeIn 0.5s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .content {
    flex: 1;
    text-align: left;
    padding-right: 2rem;
  }

  .content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .content h3::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #f4c430;
    bottom: -10px;
    left: 0;
  }

  .content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
  }

  .view-more {
    color: #f4c430;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .view-more:hover {
    color: #ffeb3b;
  }

  .image-placeholder {
    flex: 1;
    height: 250px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
  }

  .project-card:hover .image-placeholder {
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    .projects-section {
      padding: 3rem 1rem;
    }

    .projects-section h2 {
      font-size: 2rem;
    }

    .category-buttons {
      flex-direction: column;
      gap: 0.5rem;
    }

    .project-card {
      flex-direction: column;
      padding: 2rem;
    }

    .content {
      padding-right: 0;
      margin-bottom: 1.5rem;
    }

    .image-placeholder {
      margin-top: 1rem;
      height: 200px;
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .image-placeholder {
      height: 150px;
    }
  }


  /* client section */
  

  .clients-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    flex: 2;
  }

  .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .logo-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
  }

  .text-section {
    flex: 1;
    text-align: right;
  }

  .text-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
  }

  @media (max-width: 768px) {
    .clients-section {
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }

    .logo-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .text-section {
      margin-top: 2rem;
    }

    .text-section h2 {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .logo-grid {
      grid-template-columns: 1fr;
    }
  }

  /* let works together  */
  .hero-collaboration {
    background-color: #f4c430;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-collaboration h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .hero-collaboration p {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 2rem;
  }

  .cta-collaborate {
    background-color: #000;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
  }

  .cta-collaborate span {
    margin-left: 0.5rem;
    font-size: 1rem;
  }

  .cta-collaborate:hover {
    background-color: #333;
  }

  @media (max-width: 768px) {
    .hero-collaboration {
      padding: 2rem 1rem;
      min-height: 50vh;
    }

    .hero-collaboration h1 {
      font-size: 2.5rem;
    }

    .hero-collaboration p {
      font-size: 1.2rem;
    }
  }
  
  
 /*footer*/
.footer {
  background-color: #121212;
  color: #9aa4b1;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: Arial, sans-serif;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.logo-section .logo-text {
  font-weight: bold;
  font-size: 1.3em;
  color: white;
}

.logo-dot {
  font-weight: 300;
}

.tagline {
  font-size: 0.6em;
  font-weight: normal;
  opacity: 0.7;
}

.contact-info {
  margin-top: 15px;
  font-size: 0.9em;
}

.footer h4 {
  color: #e4621f;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1em;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin: 6px 0;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-block;
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.social-icons i{
    color:#fff;
}

.social-icons a:hover {
  filter: brightness(0) invert(0.7);
}

.chat-icon {
  position: fixed;
  bottom: 15px;
  right: 15px;
  /*background-color: black;*/
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
}

.copyright {
  width: 100%;
  background-color: #121212;
  text-align: center;
  color: #777;
  font-size: 14px;
  padding: 12px 10px;
  border-top: 1px solid #222;
  font-family: Arial, sans-serif;
  
}


.chat-icon img{
    width:50px;
    height:50px;
}


/* Responsive for desktop */
@media(min-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 50px;
  }

  .footer .section {
    flex: 1;
  }

  .social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .social-icons {
    margin-top: 10px;
  }
}



