
    body {
      background-color: #f8f9fa;
      font-family: "Poppins", sans-serif;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 2rem;
    }

    .section-heading h2 {
      font-weight: 700;
      font-size: 2rem;
      color: #001D3D;
    }

    .section-heading h2 span {
      color: #ED1566;
    }

    .section-heading p {
      color: #555;
      max-width: 700px;
      margin: auto;
    }

    .portfolio-img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .portfolio-img:hover {
      transform: scale(1.03);
    }

    .portfolio-content h3 {
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #001D3D;
    }

    .portfolio-content p {
      color: #666;
    }

    .portfolio-section {
      padding: 60px 0;
    }
 

    .btn-custom {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #f0045a, #ee3c7e);
  border: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-custom:hover {
  background: linear-gradient(135deg, #bb0548, #ED1566);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-custom:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
body {
  background-color: #f8f9fa;
  font-family: "Poppins", sans-serif;
}

/* Section Heading */
.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #001D3D;
}

.section-heading h2 span {
  color: #ED1566;
}

.section-heading p {
  color: #555;
  max-width: 700px;
  margin: auto;
  font-size: 1rem;
  line-height: 1.7;
}

/* Portfolio Section */
.portfolio-section {
  padding: 80px 0;
}

/* Portfolio Image */
.portfolio-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Portfolio Content */
.portfolio-content h3 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #001D3D;
}

.portfolio-content p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
  .portfolio-section {
    padding: 60px 0;
  }

  .portfolio-content {
    text-align: center;
  }

  .portfolio-img {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .section-heading h2 {
    font-size: 1.6rem;
  }

  .portfolio-content h3 {
    font-size: 1.3rem;
  }

  .portfolio-content p {
    font-size: 0.95rem;
  }
}
.why-choose-us {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
  }

  .why-image {
    flex: 1;
    min-height: 400px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .why-content {
    flex: 1;
  }

  .why-content h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000;
    line-height: 1.3;
  }

  .why-content p {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.6;
    color: #333;
  }

  .about-btn {
    display: inline-block;
    background-color: #ea0953;
    color: white;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 16px;
    margin-top: 15px;
    transition: all 0.3s ease;
  }

  .about-btn:hover {
    background-color: #d0084a;
    transform: translateY(-2px);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .why-choose-us {
      flex-direction: column;
      gap: 30px;
    }

    .why-image {
      min-height: 250px;
    }

    .why-content h1 {
      font-size: 24px;
      text-align: center;
    }

    .why-content p {
      font-size: 15px;
      text-align: center;
    }

    .about-btn {
      display: block;
      margin: 20px auto 0;
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .why-content h1 {
      font-size: 20px;
    }

    .why-content p {
      font-size: 14px;
    }

    .about-btn {
      padding: 10px 25px;
      font-size: 14px;
    }
  }

  .why-choose-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.why-image {
  flex: 1 1 45%;
}

.why-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.why-content {
  flex: 1 1 50%;
}

.why-content h1 {
  color: #001D3D;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.why-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.why-points li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 28px;
  color: #333;
}

.why-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ED1566;
  font-weight: bold;
}

.about-btn {
  display: inline-block;
  background-color: #ED1566;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: #001D3D;
}

@media (max-width: 768px) {
  .why-choose-us {
    flex-direction: column;
    text-align: center;
  }

  .why-image, .why-content {
    flex: 1 1 100%;
  }

  .why-content h1 {
    font-size: 1.6rem;
  }
}
/* ===== Web Development Hero Section ===== */
.webdev-hero {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 6s ease;
}

.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 29, 61, 0.7); /* navy-blue overlay */
  backdrop-filter: brightness(0.6);
}

.webdev-hero:hover .hero-img {
  transform: scale(1.15);
}

.webdev-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.webdev-hero p {
  color: #f1f1f1;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* CTA Buttons */
.btn-custom {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ED1566;
  color: #fff;
}

.btn-primary:hover {
  background-color: #c50f53;
}

.btn-outline {
  border: 2px solid #ED1566;
  color: #fff;
}

.btn-outline:hover {
  background-color: #ED1566;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .webdev-hero {
    min-height: 70vh;
    padding: 60px 20px;
  }

  .webdev-hero h1 {
    font-size: 2rem;
  }

  .webdev-hero p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
.portfolio-card {
  transition: all 0.3s ease;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.portfolio-img {
  object-fit: cover;
  max-height: 220px;
}
.btn-outline-primary:hover {
  background-color: #fd0d69;
  color: #fff;
}



    .portfolio-section {
      padding: 80px 0;
      text-align: center;
    }

    .portfolio-section h2 {
      font-weight: 700;
      font-size: 28px;
      margin-bottom: 10px;
      color: #111;
    }

    .portfolio-section p.lead {
      color: #666;
      font-size: 15px;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .portfolio-card {
      border-radius: 10px;
      padding: 25px;
      /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
      transition: transform 0.3s ease;
      /* border: 1px solid #ea0953; */

    }

    .portfolio-card:hover {
      transform: translateY(-5px);
    }

    .portfolio-img {
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 20px;
    }

    .portfolio-card h5 {
      color: #ea0953;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .portfolio-card p {
      color: #555;
      font-size: 14px;
    }

    .cta-section {
  background: #ea0953;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInDown 1s ease forwards;
}

/* Paragraph styling */
.cta-text {
  font-size: 17px;
  line-height: 1.8;
  color: #fff;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.cta-text span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.cta-text span:nth-child(1) { animation-delay: 0.3s; }
.cta-text span:nth-child(2) { animation-delay: 0.8s; }
.cta-text span:nth-child(3) { animation-delay: 1.3s; }
.cta-text span:nth-child(4) { animation-delay: 1.8s; }

/* Button */
.cta-btn {
  display: inline-block;
  background-color: white;
  color: #ea0953;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
.intro-section {
  background: #fff;
  color: #1a1a1a;
  padding: 120px 20px;
  display: flex;
  align-items: center;
  min-height: 70vh;
}

.intro-content {
  max-width: 700px;
  margin-left: 10%;
}

.intro-content h1 {
  font-size: clamp(22px, 5vw, 40px);
  font-weight: 700;
  color: #1c1f2a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.intro-form {
  display: flex;
  background: #f2f4f7;
  border-radius: 50px;
  overflow: hidden;
  max-width: 550px;
}

.intro-form input {
  flex: 1;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.intro-form button {
  background: #ea0953;
  color: white;
  border: none;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.intro-form button:hover {
  background: #c70745;
}

.intro-note {
  margin-top: 40px;
  font-size: 16px;
  color: #333;
}

.intro-logos {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.intro-logos img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

    @media (max-width: 992px) {
      .intro-section {
        padding: 40px 5%;
      }
    }

    @media (max-width: 768px) {
      .intro-section {
        flex-direction: column;
        text-align: center;
        justify-content: center;
      }

      .intro-content {
        max-width: 100%;
      }

      .intro-form {
        flex-direction: column;
        border-radius: 20px;
        background: #fff;
        box-shadow: none;
      }

      .intro-form input {
        border: 1px solid #ddd;
        border-radius: 10px;
        margin-bottom: 10px;
      }

      .intro-form button {
        border-radius: 10px;
        width: 100%;
      }

      .intro-logos {
        justify-content: center;
        flex-wrap: wrap;
      }
      .intro-content{
        margin-left: 0% !important;
      }
    }