body{
    margin: 0;
    padding: 0;
}

.frontenddev-con {
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.frontend-heading {
  font-size: 3rem;
}


/* Tablets (768px - 991.98px) */
@media (max-width: 991.98px) {
  .frontenddev-con {
    min-height: 60vh;
  }
  .frontend-heading {
    font-size: 2.2rem;
  }
}

/* Mobiles (<768px) */
@media (max-width: 767.98px) {
  .frontenddev-con {
    text-align: center;
    justify-content: center;
    padding-left: 0 !important;
    
  }

  .frontend-heading {
    font-size: 1.6rem;
    text-align: center;
  }
}


.frontenddev2 {
  left: 0;
  padding-top: 2px;
  width: 100%;
}

.frontenddev2-left {
    display: flex;
}

.frontenddev2-h2 {
  font-size: 3rem;
  font-weight: 800;
}

.custom-bullet {
font-size: 2rem;
color: #000000;
margin-right: 15px;
}

.custom-text {
color: #000000;
font-size: 1.2rem;
}

@media (max-width: 991.98px) {
  .frontenddev2-h2 {
    font-size: 2.2rem;
    text-align: center;
  }

  .custom-text {
    font-size: 1.3rem;
    margin-left: 30px;
  }

  .frontenddev2-list{
    margin-left: 10px;
  }

  .frontenddev2{
    flex-direction: column-reverse;
  }

  .frontenddev2-left {
    flex-direction: column-reverse;
  }
}

@media (max-width: 767.98px) {
  .frontenddev2-h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .custom-text {
    font-size: 1rem;
    margin-left: 30px;
  }

  .custom-bullet {
    font-size: 1rem;
  }
}

.frontenddev3-h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-left: 30px;
}

.frontenddev3 .custom-text {
color: #000000;
font-size: 1.2rem;
margin-left: 30px;
}

@media (max-width: 991.98px) {
  .frontenddev3-h2 {
    font-size: 2.2rem;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .frontenddev3-h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-left: 0px;
  }

  .frontenddev3 .custom-text {
    font-size: 1rem;
    margin-left: 20px;
  }
}

.frontenddev4 .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.frontenddev4 .col-md-4 {
  flex: 1 1 380px;
  max-width: 380px;
}


.tech-box {
border: 2px solid #5e7ed2;
border-radius: 12px;
padding: 24px;
position: relative;
background-color: #fff;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tech-box::before {
content: "❝";
font-size: 35px;
color: #5C6BC0;
position: absolute;
top: -10px;
left: 20px;
background-color: #fff;
padding: 0 8px;
}

.tech-title {
font-size: 1.25rem;
font-weight: 700;
color: #333;
}

.tech-dot {
color: #333;
font-size: 1rem;
margin-right: 10px;
}

.tech-item {
font-weight: 500;
margin-bottom: 10px;
color: #333;
}

.tech-heading {
font-size: 1.5rem;
font-weight: 700;
color: #333;
margin-bottom: 10px;
}

.filled-dot {
color: #333;
font-size: 1.8rem;
margin-right: 10px;
}

@media (max-width: 991.98px) {
  .frontenddev4-h2 {
    font-size: 2.2rem;
    text-align: center;
  }

  .frontenddev4 .col-md-4 {
  flex: 1 1 500px; /* allows the box to grow, but not below 300px */
  max-width: 500px;
  }
}

@media (max-width: 767.98px) {
  .tech-box {
    margin-top: 0px;
  }

  .frontenddev4 .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  }
}

.frontenddev5-h2{
  font-size: 3rem;
  font-weight: 800;
}

.frontenddev5 .custom-text {
color: #000000;
font-size: 1.2rem;
margin-left: 30px;
}

@media (max-width: 991.98px) {
  .frontenddev5-h2 {
    font-size: 2.2rem;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .frontenddev5-h2 {
    font-size: 1.8rem;
    text-align: center;
  }
}

.ticket-box {
    position: relative;
    border-radius: 20px;
    padding: 2rem;
    color: #000;
    min-height: 100%;
    gap: 10px;
    margin-left: 40px;
    margin-right: 40px;
}

.ticket-box::after {
    content: "";
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
}

.ticket-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ticket-box ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.ticket-box ul li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #000;
    font-size: 1.7rem;
}

.ticket-heading {
    font-weight: 750;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Responsive spacing between columns */
.ticket-col {
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .frontenddev6 .col-md-4 {
    flex: 1 1 500px; /* allows the box to grow, but not below 300px */
    max-width: 500px;
}
}