/* =====================================================
   WEB DEVELOPMENT HERO
===================================================== */

.web-hero {
    position: relative;
    overflow: hidden;
    padding: 20px 0 0 0;
    background:
        radial-gradient(
            circle at 90% 45%,
            rgba(245, 56, 109, 0.08),
            transparent 28%
        ),
        #fff;
}


/* =====================================================
   SECTION TAG
===================================================== */

.web-hero .section-tag {
    display: inline-block;
    color: var(--pink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}


/* =====================================================
   HERO TITLE
===================================================== */

.web-hero-content h1 {
    color: var(--dark);
    font-size: 47px;
    font-weight: 700;
    line-height: 1.18;
    margin: 0;
}

.web-hero-content h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =====================================================
   TITLE LINE
===================================================== */

.hero-title-line {
    width: 55px;
    height: 3px;
    border-radius: 10px;
    margin: 25px 0;
    background: var(--gradient);
}


/* =====================================================
   DESCRIPTION
===================================================== */

.web-hero-content p {
    max-width: 510px;
    color: #555;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-gradient {
    padding: 15px 27px;
    border: none;
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background: var(--gradient);
    box-shadow: 0 10px 25px rgba(245, 56, 109, 0.2);
}

.btn-gradient:hover {
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-brand {
    padding: 14px 27px;
    border: 1.5px solid var(--pink);
    border-radius: 7px;
    color: var(--pink);
    font-size: 14px;
    font-weight: 600;
    background: #fff;
}

.btn-outline-brand:hover {
    color: #fff;
    background: var(--pink);
}


/* =====================================================
   HERO VISUAL
===================================================== */

.web-hero-visual {
    position: relative;
    width: 100%;
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.web-hero-visual::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: rgba(245, 56, 109, 0.04);
    filter: blur(20px);
}

.web-hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 720px;
    object-fit: contain;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199px) {

    .web-hero-content h1 {
        font-size: 40px;
    }

    .web-hero-visual {
        min-height: 450px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {

    .web-hero {
        padding-bottom: 30px;
    }

    .web-breadcrumb {
        margin-bottom: 35px;
    }

    .web-hero-content {
        text-align: center;
    }

    .web-hero-content h1 {
        font-size: 38px;
    }

    .hero-title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .web-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .web-hero-visual {
        min-height: auto;
        margin-top: 20px;
    }

}


@media (max-width: 576px) {

    .web-hero-content h1 {
        font-size: 31px;
        line-height: 1.3;
    }

    .web-hero-content p {
        font-size: 13px;
        line-height: 1.8;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn-gradient,
    .btn-outline-brand {
        padding: 13px 20px;
        font-size: 13px;
    }

    .web-hero-image {
        max-width: 100%;
    }

}

/* =====================================================
   WEB DEVELOPMENT FEATURES
===================================================== */

.web-features {
    padding: 0;
    background: #fff;
}

.web-features-wrapper {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f7eeee;
    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(31, 35, 48, 0.05);
}


/* =====================================================
   FEATURE CARD
===================================================== */

.web-feature-card {
    min-height: 330px;

    padding: 40px 30px 30px;

    position: relative;

    border-right: 1px solid #f1e7e9;

    transition: 0.35s ease;
}

.web-feature-card:hover {
    background: #fff;

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(245, 56, 109, 0.08);
}


/* =====================================================
   FEATURE ICON
===================================================== */

.web-feature-icon {
    width: 60px;
    height: 60px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 32px;

    border-radius: 12px;

    background: #fff1f5;
}

.web-feature-icon > i {
    color: var(--pink);
    font-size: 27px;
}

.web-feature-icon .small-icon {
    position: absolute;

    right: 8px;
    bottom: 9px;

    font-size: 12px;

    background: #fff1f5;
}


/* =====================================================
   FEATURE CONTENT
===================================================== */

.web-feature-card h5 {
    color: var(--dark);

    font-size: 16px;
    font-weight: 700;

    margin-bottom: 18px;
}

.web-feature-card p {
    color: #555;

    font-size: 13px;
    font-weight: 400;

    line-height: 1.9;

    margin: 0;

    max-width: 180px;
}


/* =====================================================
   ARROW
===================================================== */

.web-feature-card > a {
    position: absolute;

    left: 30px;
    bottom: 28px;

    color: var(--pink);

    font-size: 14px;

    text-decoration: none;

    transition: 0.3s;
}

.web-feature-card:hover > a {
    transform: translateX(6px);
}


/* =====================================================
   LAST CARD
===================================================== */

.web-feature-card.last-child {
    border-right: 0;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .web-feature-card {
        min-height: 300px;

        border-bottom: 1px solid #f1e7e9;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .web-features {
        padding-bottom: 0px;
    }

    .web-feature-card {
        min-height: 285px;

        padding: 25px 18px;
    }

    .web-feature-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 22px;
    }

    .web-feature-icon > i {
        font-size: 23px;
    }

    .web-feature-card h5 {
        font-size: 14px;

        line-height: 1.5;
    }

    .web-feature-card p {
        font-size: 11px;

        line-height: 1.7;
    }

    .web-feature-card > a {
        left: 18px;
        bottom: 20px;
    }

}

/* =====================================================
   WEB DEVELOPMENT PROCESS
===================================================== */

.web-process {
    background: #fff;
}

.web-process .section-heading h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
}

.process-tag {
    display: block;
    color: var(--pink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}


/* =====================================================
   PROCESS LINE
===================================================== */

.web-process-line {
    position: relative;
    padding-top: 10px;
}

.web-process-line::before {
    content: "";

    position: absolute;

    top: 48px;
    left: 8%;
    right: 8%;

    height: 1px;

    background:
        repeating-linear-gradient(
            90deg,
            #f5386d 0,
            #f5386d 3px,
            transparent 3px,
            transparent 8px
        );
}


/* =====================================================
   PROCESS ITEM
===================================================== */

.web-process-item {
    position: relative;
    z-index: 2;
    padding: 0 18px;
}


/* =====================================================
   PROCESS ICON
===================================================== */

.web-process-icon {
    width: 70px;
    height: 70px;

    margin: 0 0 32px;

    border-radius: 50%;

    background: #fff5f7;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 7px 20px rgba(245, 56, 109, 0.06);
}

.web-process-icon i {
    color: var(--pink);
    font-size: 25px;
}


/* =====================================================
   TIMELINE DOT
===================================================== */

.web-timeline-dot {
    position: absolute;

    top: 45px;
    right: -4px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--pink);
}

.web-last-dot {
    display: none;
}


/* =====================================================
   STEP
===================================================== */

.web-step {
    display: block;

    color: #555;

    font-size: 11px;
    font-weight: 500;

    margin-bottom: 9px;
}


/* =====================================================
   TITLE
===================================================== */

.web-process-item h5 {
    color: var(--dark);

    font-size: 14px;
    font-weight: 700;

    line-height: 1.5;

    min-height: 42px;

    margin-bottom: 12px;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.web-process-item p {
    color: #555;

    font-size: 11px;

    line-height: 1.8;

    max-width: 160px;

    margin: 0;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .web-process-line::before {
        display: none;
    }

    .web-timeline-dot {
        display: none;
    }

    .web-process-item {
        text-align: center;
    }

    .web-process-icon {
        margin: 0 auto 25px;
    }

    .web-process-item p {
        margin: auto;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .web-process {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .web-process .section-heading h2 {
        font-size: 23px;
    }

    .web-process-icon {
        width: 58px;
        height: 58px;
    }

    .web-process-icon i {
        font-size: 21px;
    }

    .web-process-item {
        padding: 0 8px;
    }

    .web-process-item h5 {
        font-size: 13px;
    }

    .web-process-item p {
        font-size: 10px;
    }

}

/*=====================================================
PROJECTS
=====================================================*/

.app-project-card {

    background: #fff;

    border-radius: 24px;

    border: 1px solid #eee;

    padding: 0px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

}



.app-project-card h3 {

    font-size: 28px;

    font-weight: 700;

}



.view-project-link {

    color: var(--pink);

    font-weight: 700;

    text-decoration: none;

}



.mobile-project {

    background: #fafafa;

    border-radius: 20px;

    overflow: hidden;

    transition: .35s;

}



.mobile-project:hover {

    transform: translateY(-8px);

}



.mobile-project img {

    width: 100%;

    height: 200px;

    object-fit: cover;

}



.mobile-project-content {

    padding: 15px;

}



.mobile-project-content h5 {

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 10px;

}



.mobile-project-content p {

    font-size: 13px;

    color: #666;

    margin-bottom: 10px;

}



.mobile-project-content a {

    color: var(--pink);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;

}

.app-project-card{
    background: transparent;
    border: none;
    box-shadow: none;
}

.mobile-project{
    border-radius: 10px;
}

/* =========================================
   FEATURE CARD FLIP
========================================= */

.web-feature-card-wrapper {
   perspective: 1200px;
   height: 300px;
}


/* Main card */

.web-feature-card {
   position: relative;
   width: 100%;
   height: 100%;

   transform-style: preserve-3d;

   transition:
      transform 0.8s cubic-bezier(.4, .2, .2, 1),
      box-shadow 0.4s ease;

   cursor: pointer;
}


/* Flip */

.web-feature-card-wrapper:hover .web-feature-card {
   transform: rotateY(180deg);
}


/* =========================================
   FRONT + BACK
========================================= */

.web-feature-front,
.web-feature-back {
   position: absolute;
   inset: 0;

   width: 100%;
   height: 100%;

   padding: 35px 25px;

   display: flex;
   flex-direction: column;
   align-items: flex-start;

   justify-content: center;

   backface-visibility: hidden;
   -webkit-backface-visibility: hidden;

   border: 1px solid rgba(0, 0, 0, 0.08);

   overflow: hidden;
}


/* =========================================
   FRONT
========================================= */

/* FRONT */
.web-feature-front {
   background: #ffffff;
   transform: rotateY(0deg);
}


/* BACK - HOVER KE BAAD YE DIKHEGA */
.web-feature-back {
   background: linear-gradient(
      90deg,
      #f5386d 0%,
      #ff8a1e 100%
   );

   color: #ffffff;

   transform: rotateY(180deg);

   justify-content: center;
}

/* =========================================
   ICON
========================================= */

.web-feature-icon {
   position: relative;

   width: 58px;
   height: 58px;

   display: flex;
   align-items: center;
   justify-content: center;

   margin-bottom: 20px;

   border-radius: 16px;

   background: #f1f5f9;

   color: #111827;

   font-size: 25px;

   transition:
      transform 0.5s ease,
      background 0.4s ease,
      color 0.4s ease;
}


/* Small mobile icon */

.web-feature-icon .small-icon {
   position: absolute;

   font-size: 13px;

   right: -5px;
   bottom: -4px;

   background: #ffffff;

   border-radius: 50%;

   padding: 6px;

   box-shadow: 0 4px 10px rgba(0,0,0,.12);
}


/* Icon animation */

.web-feature-card-wrapper:hover .web-feature-icon {
   transform: rotate(-8deg) scale(1.08);
}

.web-feature-card-wrapper:hover h5{
    color: #fafbfd;
}


/* =========================================
   HEADING
========================================= */

.web-feature-front h5,
.web-feature-back h5 {
   font-size: 20px;

   font-weight: 700;

   margin-bottom: 12px;

   letter-spacing: -0.2px;
}


/* =========================================
   DESCRIPTION
========================================= */

.web-feature-front p,
.web-feature-back p {
   margin: 0;

   max-width: 240px;

   font-size: 14px;

   line-height: 1.7;

   color: #64748b;
}


/* Back paragraph */

.web-feature-back p {
   color: rgba(255, 255, 255, 0.72);
}


/* =========================================
   ARROW
========================================= */

.web-feature-front a,
.web-feature-back a {
   margin-top: 22px;

   width: 42px;
   height: 42px;

   display: flex;
   align-items: center;
   justify-content: center;

   border-radius: 50%;

   text-decoration: none;

   background: var(--gradient);

   color: #ffffff;

   transition:
      transform 0.3s ease,
      background 0.3s ease;
}


/* Arrow animation */

.web-feature-card-wrapper:hover .web-feature-front a {
   transform: translateX(5px);
}


/* Back button */

.web-feature-back a {
   width: auto;
   height: auto;

   padding: 10px 18px;

   border-radius: 30px;

   gap: 8px;

   background: #ffffff;

   color: #111827;
}


/* =========================================
   DECORATIVE BACKGROUND
========================================= */

.web-feature-front::before,
.web-feature-back::before {
   content: "";

   position: absolute;

   width: 160px;
   height: 160px;

   border-radius: 50%;

   top: -80px;
   right: -80px;

   background: rgba(0, 0, 0, 0.035);

   transition:
      transform 0.6s ease,
      opacity 0.4s ease;
}


.web-feature-back::before {
   background: rgba(255, 255, 255, 0.06);
}


.web-feature-card-wrapper:hover
.web-feature-back::before {
   transform: scale(1.5);
}


/* =========================================
   HOVER SHADOW
========================================= */

.web-feature-card-wrapper:hover {
   z-index: 5;
}


.web-feature-card-wrapper:hover .web-feature-card {
   box-shadow:
      0 25px 50px rgba(0, 0, 0, 0.18);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

   .web-feature-card-wrapper {
      height: 280px;
   }

   .web-feature-front,
   .web-feature-back {
      padding: 25px 20px;
   }

   .web-feature-front h5,
   .web-feature-back h5 {
      font-size: 17px;
   }

   .web-feature-front p,
   .web-feature-back p {
      font-size: 13px;
   }

}