
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    body {
      background-color: #EEEEEE;
      color: #000;
    }
    header, footer, section {
      padding: 40px 20px;
    }
    .container {
      max-width: 1200px;
      margin: auto;
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      
    }
    nav ul {
      display: flex;
      list-style: none;
      gap: 20px;
    }
    .name{
        font-size: 24px;
        font-weight: bold;
        color: #0d1b2a;
        font-family: "Mozilla Headline", sans-serif;
    }
    nav ul li a{
      text-decoration: none;
      color: black;
      font-family: "Mozilla Headline", sans-serif;
      font-style: normal;
    font-variation-settings:
      "wdth" 100;
    }
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }

    .hero-text {
      max-width: 600px;  
      /* text-align: center; */
      
    }
    .hero-text h1 {
      font-size: 36px;
      margin-bottom: 10px;
      font-weight: 700;
        font-family: "Mozilla Headline", sans-serif;
    }
    .hero-text p {
      margin: 20px 0;
      font-family: "Ubuntu", sans-serif;
        font-weight: 400;
        font-style: normal;
    }
    /* ================= */
.infinite-scroll-container {
  width: 100%;
  overflow: hidden;
  /* background: var(--bg-secondary, #f4f4f4); */
  padding: 20px 0;
}

.infinite-scroll-track {
  display: flex;
  gap: 40px;
  animation: scroll-cards 15s linear infinite;
}

.infinite-scroll-card {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.infinite-scroll-card img {
  height: 60px;
  width: auto;
  display: block;
}

.infinite-scroll-card:hover {
  transform: translateY(-5px);
}

@keyframes scroll-cards {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

    /* ======================== */
    .buttons,.buttons p {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        font-weight: 500;
    }
    .btn-yellow {
      background-color: #222831;
      border: none;
      padding: 10px;
      cursor: pointer;
      font-weight: bold;
      border-radius: 5px;
      font-family: "mozilla Headline", sans-serif;
      color: #fff;
    }
    .about-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  /* gap: 2rem; */
  align-items: center;
}

.about-img img {
  height: 250px;
  max-width: 250px;
  border-radius: 50%;
  border: 4px solid #222831; /* matches yellow button */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.about-content p {
  /* max-width: 200px; */
  /* max-width: 800px; */
  font-family: "Ubuntu", sans-serif;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 19px;
}


    .profile{
      margin-top: 10px;
    }
      
    
    #services h2, #portfolio h2, #testimonials h2, #contact h2, #pricing h2, #about h2 , #why-choose-me h2, #process h2 {
      font-family: "Mozilla Headline", sans-serif;
      font-size: 30px;
      margin-bottom: 10px;
    }
    #services p, #portfolio p, #testimonials p, #contact p ,#pricing p , #about p , #why-choose-me p, #process p {
        padding: 5px 0;
      font-family: "Ubuntu", sans-serif;
    }
    .portfolio {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #f0f0f0;
        /* padding: 40px 20px; */
    }
    .services-grid, .portfolio-grid,.testimonials-grid, .pricing-grid, .why-grid, .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }
    .card {
      display: flex;
      flex-direction: column; /* stack icon above text for services */
      align-items: center;
      text-align: center;
      background: #fff;
      padding: 25px 20px;
      border: 1px solid #e0e0e0;
      border-radius: 5px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-family: "Nata Sans", sans-serif;
    }
    .card img {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
      border-radius: 12px;
    }
    /* Card title */
.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

/* Card description */
.card p {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.4rem;
}

  /* ========================= */
    .card-port {
    max-width: 300px;
    border-radius: 0.5rem;
    background-color: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* flex: 1 1 300px; responsive cards */
    }

    .card-port a {
    text-decoration: none
    }
    .image img {
    width: 100%;
    height: 150px;
    }

    .content {
    padding: 1.1rem;
    
    }

    .image {
    object-fit: cover;
    width: 100%;
    height: 150px;
    background-color: #222831;
    }

    .title {
    color: #111827;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
    }

    .desc {
    margin-top: 0.5rem;
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.25rem;
    }

    .action {
    display: inline-flex;
    margin-top: 1rem;
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    align-items: center;
    gap: 0.25rem;
    background-color: #222831;
    padding: 4px 8px;
    border-radius: 4px;
    }

    .action span {
    transition: .3s ease;
    }

    .action:hover span {
    transform: translateX(4px);
    }   
/* ========================================================== */


#why-choose-me .card {
  background: #fff;
  border-radius: 5px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

#why-choose-me .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

#why-choose-me i {
  font-size: 40px;
  color: #111827;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

/* ========================================================= */

#process .card {
  background: #fff;
  border-radius: 5px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

#process .step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

#process i {
  font-size: 40px;
  color: #111827;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

#process .step:hover i {
  color: #0056b3;
  transform: scale(1.2);
}

    /* ========================================================== */
    #contact {
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      align-items: center;
      gap: 40px;
      justify-content: space-between;
      background-color: #f0f0f0;
      /* padding-right: 5%; */
    } 
    #contact img {
      width: 400px;
      height: auto;
      padding-right: 20px;
      /* margin-right: 40px; */
    }
    .contact h2 {
      /* font-size: 36px; */
      margin-bottom: 10px;
      font-family: "Mozilla Headline", sans-serif;
    }
    .contact p {
      margin: 20px 0;
      font-family: "Ubuntu", sans-serif;
    }
    .form {
      display: flex;
      flex-direction: row;
      gap: 10px;
      max-width: 600px;
      /* margin: auto; */
      
    }
    .contact textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-family: "Ubuntu", sans-serif;
    }
    .contact ::placeholder{
        color: #000;
    }
    .contact button {
      background-color: #222831;
      color: white;
      padding: 10px 20px;
      border: none;
      cursor: pointer;
      font-weight: bold;
      border-radius: 5px;
      font-family: "Mozilla Headline", sans-serif;
    }
    .social-links {
  margin-top: 20px;
  display: flex;
  justify-content: start;
  gap: 30px;
}

.social-links a {
  color: #333;
  font-size: 30px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #007bff;
  transform: scale(1.1);
}

    /* ===============Pricing============  */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 300px; /* responsive cards */
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-family: "Mozilla Headline", sans-serif;
}

.pricing-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  font-family: "Ubuntu", sans-serif;
}

.pricing-card a {
  text-decoration: none;
  font-weight: bold;
  font-family: "Mozilla Headline", sans-serif;
  border: 1px solid #222831;
  padding: 8px 15px;
  border-radius: 5px;
  color: #fff;
  background-color: #222831;
  align-self: center; /* keeps button centered */
  margin-top: 10px; /* pushes button to bottom */
}

.pricing-card ul {
  margin-bottom: 10px;
}

.pricing-card ul li {
  text-align: left;
  list-style: none;
  color: #555;
  font-family: "Ubuntu", sans-serif;
  margin-bottom: 5px;
}

    /* ==============Testimonials============= */
    .testimonial {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      /* width: 250px; */
      text-align: left;
    }
    .testimonial p {
      font-style: italic;
      color: #555;
      margin-bottom: 5px;
    }
    /* =========================================== */
/* FAQ Section */
.faq-section {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  padding: 60px 20px;
  justify-content: center;
  gap: 2rem;
  
}

.faq-header {
  max-width: 400px;
  margin-bottom: 40px;
}

.faq-label {
  font-size: 14px;
  color: #541212;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.faq-header h2 {
  font-size: 2.2rem;
  margin-top: 10px;
  color: #222;
}

.faq-header h2 span {
  color: #541212;
}

.faq-header p {
  color: #555;
  margin-top: 10px;
}

.faq-container {
  max-width: 700px;
}

.faq-item {
  background: #f9f9ff;
  border-radius: 5px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #222;
  cursor: pointer;
}

.faq-question .arrow {
  border: solid #541212;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .arrow {
  transform: rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

.faq-answer p {
  color: #555;
  line-height: 1.6;
}

    /* =========footer=========== */
    footer{
      background-color: #222831;
      color: white;
      text-align: center;
    }
    footer h2 {
      font-family: "Mozilla Headline", sans-serif;
      font-size: 24px;
      margin-bottom: 10px;
    }
    footer .socials i {
      margin: 0 3px;
      color: white;
    }
    .socials {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 10px;
      font-family: "Ubuntu", sans-serif;

    }

    .socials a {
      color: white;
      text-decoration: none;
    }

    /* From Uiverse.io by Voxybuns */ 
    button {
      /* Variables */
      --button_radius: 0.75em;
      --button_color: #e8e8e8;
      --button_outline_color: #000000;
      font-size: 17px;
      
      font-weight: bold;
      border: none;
      cursor: pointer;
      border-radius: var(--button_radius);
      background: var(--button_outline_color);
    }

    .button_top {
      display: block;
      box-sizing: border-box;
      border: 2px solid var(--button_outline_color);
      border-radius: var(--button_radius);
      padding: 0.75em 1.5em;
      background: var(--button_color);
      color: var(--button_outline_color);
      transform: translateY(-0.2em);
      transition: transform 0.1s ease;
    }

    button:hover .button_top {
      /* Pull the button upwards when hovered */
      transform: translateY(-0.33em);
    }

    button:active .button_top {
      /* Push the button downwards when pressed */
      transform: translateY(0);
    }
    button a {
      text-decoration: none;
      color: var(--button_outline_color);
    }


    /* Responsive — Hide menu on mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Hide menu */
  }
}