/* Laravel page */

/* laravel Hero Section */
.laravel-hero-card {
    background-color: transparent;
    border: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* max-width: 500px; */
    margin: 0 auto;
}

/*  Web Development - Hire Us */
.web-development-hire-us-btn {
    background-color: var(--secondary) !important;
    color: var(--white) !important;
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* Why choose Laravel section */
.technology-feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem 1.8rem;
    box-shadow: 0 15px 35px rgba(39, 176, 229, 0.1);
    height: 100%;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: none;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
}

.technology-feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.technology-feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.technology-feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.technology-feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.technology-feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.technology-feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

.technology-feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(39, 176, 229, 0.25);
    border-color: #27b0e5;
}

.technology-feature-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 25px;
    z-index: -1;
    opacity: 1;
}

.technology-feature-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #27b0e5 0%, #1e88e5 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    border-radius: 0 0 20px 20px;
}

.technology-feature-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.technology-feature-card:hover h5 {
    color: #0d8bc7;
}

.technology-feature-card:hover .technology-feature-icon-wrapper {
    background: linear-gradient(135deg, #27b0e5 0%, #1e88e5 100%);
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(39, 176, 229, 0.35);
}

.technology-feature-card:hover .technology-feature-icon {
    -webkit-text-fill-color: white;
    transition: 0.4s ease;
}

.technology-feature-icon-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f9ff;
    box-shadow: 0 10px 25px rgba(39, 176, 229, 0.2);
    position: relative;
    z-index: 1;
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.technology-feature-icon-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #27b0e5 0%, #1e88e5 100%);
    opacity: 0.2;
    z-index: -1;
}

.technology-feature-icon {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #27b0e5 0%, #1e88e5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.technology-feature-card h5 {
    font-weight: bold;
    margin-bottom: 1.2rem;
    color: #1e293b;
    /* font-size: 1.5rem; */
}

.technology-feature-card p {
    color: #64748b;
    margin-bottom: 0;
    /* font-size: 1rem; */
}

.technology-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.technology-particle {
    position: absolute;
    border-radius: 50%;
    background: #27b0e5;
    opacity: 0.3;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100px) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .technology-feature-card {
        padding: 2rem 1.5rem;
    }

    .technology-feature-icon-wrapper {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .technology-feature-card {
        padding: 1.8rem 1.2rem;
    }

    .technology-feature-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
}

/* Laravel Services Section */

.technology-service-card {
    background: #ffffff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 15px;
    transition: transform 0.3s ease;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.technology-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18) !important;
}

.icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 15px;
}

@media (max-width: 991px) {
    .technology-service-card {
        padding: 12px;
    }

    .icon-box {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
}

@media (max-width: 575px) {
    .technology-service-card {
        align-items: flex-start;
    }

    .icon-box {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
}

/* Laravel Expertise Section */
.animate {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    opacity: 1 !important;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.fadeInRight {
    animation-name: fadeInRight;
}

.expertise-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.expertise-content {
    flex: 1;
}

.expertise-item {
    position: relative;
    border: 2px solid #000;
    padding: 40px;
    margin-bottom: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease-in-out;
    border-radius: 12px;
}

.expertise-item:hover {
    background: #f9f9f9;
    transform: translateY(-4px);
}

.expertise-number {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    background: #fff;
    color: #000;
    font-weight: bold;
    border: 2px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tablet */
@media (max-width: 992px) {
    .expertise-item {
        padding: 25px 20px 25px 55px;
        gap: 12px;
    }

    .expertise-number {
        width: 35px;
        height: 35px;
        left: -15px;
    }

    .expertise-icon img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .expertise-item {
        flex-direction: row;
        /* keep row layout */
        align-items: center;
        /* center icon + text vertically */
        padding: 15px 15px 15px 55px;
        /* add left space for number */
        text-align: left;
        margin-left: 10px;
    }

    .expertise-number {
        position: absolute;
        top: 50%;
        left: -18px;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
    }

    .expertise-icon img {
        width: 28px;
        height: 28px;
    }
}

/* Very small devices */
@media (max-width: 400px) {
    .expertise-item {
        padding: 14px;
    }

    .expertise-number {
        width: 28px;
        height: 28px;
    }
}

.step-circle {
    width: 40px;
    height: 40px;
    background: #27b0e5;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    position: relative;
    z-index: 2;
}

.step-content {
    background: #fff;
    border: 2px solid #27b0e5;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    z-index: 1;
}

.custom-radius {
    border-bottom-right-radius: 80px;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 0;
}

.blue-radius {
    border-top-left-radius: 82px;
    border-bottom-right-radius: 82px;
    border-bottom-left-radius: 0;
    display: inline-block;
    border-top: 5px solid #27b0e5;
    border-right: 5px solid #27b0e5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Laravel Process Section */

.process-container {
    position: relative;
}

.step-title {
    text-align: center;
    margin-bottom: 60px;
}

.step-title h4 {
    color: #00aeef;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-title h2 {
    font-weight: 700;
}

.step-box {
    background: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
    border-top: 4px solid #f58220;
}

.step-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.2);
}

.step-box img {
    width: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.1));
}

.step-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.step-box p {
    color: #64748b;
}

/* Connector lines */
.line-planning-design,
.line-vertical-design-support,
.line-bottom {
    position: absolute;
    background-color: #f58220;
    z-index: 1;
    border-radius: 2px;
    top: 77%;
    left: 13.5%;
    width: 73%;
    height: 4px;
}

.line-planning-design {
    top: 42%;
    left: 58.2%;
    width: 130px;
    height: 4px;
}

.line-vertical-design-support {
    top: 50%;
    left: 86%;
    width: 4px;
    height: 140px;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .line-planning-design {
        left: 56%;
        width: 110px;
    }

    .line-vertical-design-support {
        left: 86%;
    }

    .line-bottom {
        left: 12.5%;
        width: 75%;
    }
}

@media (max-width: 991.98px) {
    .line-planning-design {
        top: 43%;
        left: 55%;
        width: 100px;
    }

    .line-vertical-design-support {
        left: 86%;
    }

    .line-bottom {
        top: 78%;
        left: 11.5%;
        width: 77%;
    }
}

@media (max-width: 767.98px) {
    .line-planning-design,
    .line-vertical-design-support,
    .line-bottom {
        display: none;
    }

    .step-box {
        margin-bottom: 30px;
    }
}

.line-between-planning-design {
    position: absolute;
    top: 50%;
    left: 16%;
    width: 68%;
    height: 4px;
    background-color: #fa923d;
    z-index: 1;
    border-radius: 2px;
}

/* PHP Page */

/* Php Expertise Section */
.php-expertise-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.php-expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.php-expertise-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto;
    font-size: 35px;
}

.php-bg-gradient-blue {
    background: linear-gradient(135deg, #36a3f7, #0066ff);
}

.php-bg-gradient-purple {
    background: linear-gradient(135deg, #a855f7, #6b21a8);
}

.php-bg-gradient-green {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

.php-bg-gradient-orange {
    background: linear-gradient(135deg, #f97316, #c2410c);
}

/* Node Js Page CSS */

/* WHY Choose Node JS */
/* Card styling */
.whychoose-nodejs-card {
    border: none;
    border-radius: 15px;
    background: linear-gradient(to bottom, #ffffff, #f4f9ff);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.whychoose-nodejs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Icon styling */
.whychoose-nodejs-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fa923d, #ffb347);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 24px;
}

/* Footer text */
.whychoose-nodejs-footer {
    text-align: center;
    color: #333;
}

/* Accent text */
.whychoose-nodejs-accent-text {
    color: #f7941e;
}

/* Tablet (≥768px and <992px) */
@media (max-width: 992px) {
    .whychoose-nodejs-icon {
        width: 50px;
        height: 50px;
    }
    .left-inner {
        text-align: center;
    }
}

/* Mobile (<768px) */
@media (max-width: 767.98px) {
    .whychoose-nodejs-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .whychoose-nodejs-card {
        padding: 20px 15px;
    }

    .whychoose-nodejs-card h5 {
        margin-bottom: 10px;
    }

    .whychoose-nodejs-footer {
        padding: 0 10px;
    }
}

/* END WHY choose Node Js */

/* Process Section of Node Js */
.nodejs-process-container {
    position: relative;
}

/* Title */
.nodejs-section-title {
    text-align: center;
    margin-bottom: 15px;
    color: #00aeef;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Step Box */
.nodejs-step-box {
    background: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
    border-top: 4px solid #f58220;
}

.nodejs-step-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.2);
}

.nodejs-step-box img {
    width: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.1));
}

.nodejs-step-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}
.whychoose-nodejs-card p {
    color: #64748b;
}
.service-content-web {
    color: #64748b !important;
    font-size: 15px !important;
}
.nodejs-step-box p {
    color: #64748b;
    line-height: 1.5;
}

/* Connector Lines */
.nodejs-line-between-planning-design,
.nodejs-line-bottom,
.nodejs-line-vertical-planning-development {
    position: absolute;
    background-color: #f58220;
    z-index: 1;
    border-radius: 2px;
}

.nodejs-line-between-planning-design {
    top: 50%;
    left: 16%;
    width: 68%;
    height: 4px;
    background-color: #fa923d;
}

.nodejs-line-bottom {
    top: 77%;
    left: 13.5%;
    width: 73%;
    height: 4px;
}

.nodejs-line-vertical-planning-development {
    top: 52%;
    left: 13%;
    width: 4px;
    height: 140px;
}

@media (max-width: 1199.98px) {
    .nodejs-line-vertical-planning-development {
        left: 15.5%;
        height: 130px;
    }

    .nodejs-line-bottom {
        left: 12.5%;
        width: 75%;
    }
}

@media (max-width: 991.98px) {
    .nodejs-line-vertical-planning-development {
        left: 14.5%;
        height: 120px;
    }

    .nodejs-line-bottom {
        top: 78%;
        left: 11.5%;
        width: 77%;
    }

    .nodejs-step-box {
        padding: 25px 15px;
    }
}

@media (max-width: 767.98px) {
    .nodejs-line-vertical-planning-development,
    .nodejs-line-bottom,
    .nodejs-line-between-planning-design {
        display: none;
    }

    .nodejs-step-box {
        margin-bottom: 30px;
        padding: 20px 15px;
    }

    .nodejs-step-box img {
        width: 40px;
    }

    .nodejs-process-container .text-start.text-center {
        padding: 0 10px;
    }
}

/* END Process Section of Node Js */

/* Services Section of Node JS */
.text-orange {
    color: #f57c00;
}

.nodejs-feature-cards {
    max-height: 550px;
    overflow-y: auto;
    padding-right: 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.nodejs-feature-cards::-webkit-scrollbar {
    display: none;
}

.nodejs-card {
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.nodejs-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.responsive-heading {
    font-size: 2rem;
}

.responsive-paragraph {
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .responsive-heading {
        font-size: 1.75rem;
    }

    .responsive-paragraph {
        font-size: 0.95rem;
    }

    .nodejs-feature-cards {
        max-height: 400px;
    }
}

@media (max-width: 767.98px) {
    .responsive-heading {
        font-size: 1.5rem;
    }

    .responsive-paragraph {
        font-size: 0.9rem;
    }

    .nodejs-feature-cards {
        max-height: none;
        overflow: visible;
    }

    .nodejs-card {
        padding: 1rem;
    }

    .desktop-button {
        /* width: 100%; */
        text-align: center;
    }
}

/* Python Pages */
/* Python Why Choose Section */

.python-why-choose-card-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 12px;
}

.python-why-choose-card {
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: none;
    align-items: center !important;
}

.python-why-choose-card:nth-child(odd) {
    background-color: #fff4f0;
    border: 1px solid #ffd3c8;
}

.python-why-choose-card:nth-child(even) {
    background-color: #f0f9ff;
    border: 1px solid #d6eaff;
}

.python-why-choose-card-icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.python-why-choose-card-icon img {
    width: 40px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 0px !important;
}

.python-why-choose-card h3 {
    color: #222;
    margin-bottom: 12px;
}

.python-why-choose-card p {
    color: #64748b;
    line-height: 1.6;
}

.python-process-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 64px; */
}

.python-process-step {
    text-align: center;
    position: relative;
    flex: 1 1 220px;
    /* allows flexible sizing */
    max-width: 250px;
}

.python-process-circle-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: auto;
}

.python-process-dotted-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border-left: 6px dotted #b7b2b2;
    border-bottom: 6px dotted #b7b2b2;
    border-top: 6px dotted transparent;
    border-right: 6px dotted transparent;
    transform: rotate(235deg);
}

.python-process-arc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-left: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-top: 6px solid transparent;
    border-right: 6px solid transparent;
    transform: rotate(50deg);
    z-index: 1;
}

/* Odd Steps: Orange */
.python-process-step:nth-child(odd) .python-process-arc {
    border-left: 6px solid #fa923d;
    border-bottom: 6px solid #fa923d;
}

/* Even Steps: Blue */
.python-process-step:nth-child(even) .python-process-arc {
    border-left: 6px solid #27b0e5;
    border-bottom: 6px solid #27b0e5;
}

.python-process-inner-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: absolute;
    top: 83px;
    left: 80px;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.python-process-step:nth-child(odd) .python-process-inner-circle {
    background: linear-gradient(135deg, #fa923d, #fbc296);
}

.python-process-step:nth-child(even) .python-process-inner-circle {
    background: linear-gradient(135deg, #27b0e5, #a0e4f8);
}

.python-process-inner-circle i {
    font-size: 36px;
}

.python-process-line {
    width: 0px;
    height: 35px;
    margin: 30px auto 0;
    border-left: 6px dotted #b7b2b2;
    position: relative;
}

.python-process-line::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #7e8a96;
    border-radius: 50%;
    position: absolute;
    bottom: -10px;
    top: -10px;
    margin-top: 50px;
    left: -2px;
    transform: translateX(-50%);
}

.python-process-label {
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 30px;
    width: 200px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    word-wrap: break-word;
}

.python-process-step:nth-child(odd) .python-process-label {
    background: linear-gradient(135deg, #fa923d, #fbc296);
}

.python-process-step:nth-child(even) .python-process-label {
    background: linear-gradient(135deg, #27b0e5, #a0e4f8);
}

.python-process-section {
    background: #fefefe;
}

.python-process-container {
    max-width: 1200px;
    margin: auto;
}

.python-process-step:nth-child(even) {
    margin-top: 100px;
}

.python-process-inner-circle .inner-content {
    text-align: center;
    color: #fff;
    line-height: 1.4;
}

.python-process-inner-circle .inner-content i {
    margin-bottom: 5px;
}

@media (max-width: 576px) {
    .python-process-step:nth-child(even) {
        margin-top: 0px;
    }
}

/* Golang */

/* Golang - Why Choose Section */
.golang-why-choose-card-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    /* margin-top: 2rem; */
    padding: 12px;
}

.golang-why-choose-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 365px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.golang-why-choose-card:nth-child(odd) {
    background-color: #fff4f0;
    border: 1px solid #ffd3c8;
}

.golang-why-choose-card:nth-child(even) {
    background-color: #f0f9ff;
    border: 1px solid #d6eaff;
}

.golang-why-choose-card-icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.golang-why-choose-card-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 0px !important;
}

.golang-why-choose-card h3 {
    color: #222;
    margin-bottom: 12px;
}

.golang-why-choose-card p {
    color: #444;
    line-height: 1.6;
}

.golang-why-choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Golang - Expertise Section */
.golang-expertise-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #e74c3c;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.golang-expertise-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.golang-expertise-text {
    color: #555;
    font-size: 16px;
    margin-bottom: 25px;
}

.golang-expertise-image {
    position: relative;
    display: inline-block;
}

.golang-expertise-image img {
    width: 100%;
    border-radius: 20%;
    object-fit: cover;
}

.golang-expertise-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.golang-expertise-play:hover {
    background: #c0392b;
}

.golang-expertise-play::before {
    content: "";
    display: inline-block;
    margin-left: 4px;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
}

/* Feature Card */
.golang-expertise-card {
    background: #fff;
    padding: 25px;
    text-align: left;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.golang-expertise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.golang-expertise-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fceaea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #e74c3c;
    font-size: 22px;
}

.golang-expertise-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.golang-expertise-card p {
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .golang-expertise-title {
        text-align: center;
    }

    .golang-expertise-subtitle,
    .golang-expertise-text {
        text-align: center;
    }

    .golang-expertise-image {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
}

/* Express JS */

/* Expressjs Expertise Section */

.expressjs-expertise-section {
    background: linear-gradient(180deg, #e5f8ff 65%, #fff 35%);
    position: relative;
    overflow: visible;
}

.expressjs-expertise-section p {
    color: #64748b;
}

.expressjs-expertise-btn-appointment {
    background-color: #f18c4f;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    margin-bottom: 40px;
    transition: background-color 0.3s ease;
}

.expressjs-expertise-btn-appointment:hover {
    background-color: #d67a3e;
}

.expressjs-expertise-card {
    background-color: white;
    color: black;
    border-radius: 12px;
    padding: 12px 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transform: translateY(2%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.expressjs-expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expressjs-expertise-icon {
    background-color: #27b0e5;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(39, 176, 229, 0.3);
    font-size: 25px;
}

.expressjs-expertise-row {
    align-items: stretch;
}

@media (max-width: 992px) {
    .expressjs-expertise-card {
        padding: 40px 20px;
    }

    .expressjs-expertise-icon {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .expressjs-expertise-section {
        background: #fff !important;
    }

    .expressjs-expertise-card {
        padding: 30px 15px;
        margin-bottom: 15px;
    }

    .expressjs-expertise-icon {
        width: 50px;
        height: 50px;
    }

    .expressjs-expertise-card h5 {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .expressjs-expertise-card {
        padding: 25px 12px;
    }

    .expressjs-expertise-icon {
        width: 45px;
        height: 45px;
    }
}

/* Angular Js */

/* Angular Js - Why choose */

.angularjs-why-choose-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00a3e1, #ccefff);
    transform: rotate(45deg);
    border-radius: 15px;
    z-index: 0;
    opacity: 0.08;
}

.angularjs-why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.angularjs-why-choose-card h4,
.angularjs-why-choose-card p {
    position: relative;
    z-index: 1;
}

.angularjs-why-choose-card {
    border-radius: 15px;
    border: none;
    position: relative;
    overflow: hidden;
    height: 100%;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.angularjs-why-choose-card.blue-shade::before {
    background: linear-gradient(135deg, #00a3e1, #ccefff);
}

.angularjs-why-choose-card.orange-shade::before {
    background: linear-gradient(135deg, #f7941d, #ffe7cc);
}

/* Angular Js Expertise */

.angularjs-expertise-feature-card {
    background: #fff;
    border-radius: 5px;
    padding: 25px 20px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease-in-out;
}

.angularjs-expertise-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.angularjs-expertise-feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #f36c21;
    flex-shrink: 0;
    position: absolute;
}

.angularjs-expertise-feature-text {
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    color: #333;
}

.angularjs-expertise-img-icon {
    background-color: #f2d0a3;
    width: 25px;
    height: 25px;
    bottom: -8%;
    left: 11%;
    border-radius: 50%;
    margin-left: 18px;
    margin-bottom: 18px;
}

/* Vue Js Design */

/* Vue js- Why choose */
.vuejs-why-choose-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 1.6rem;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: start;
}

.vuejs-why-choose-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 40px;
    background: #fa923d;
    color: #fff;
    text-align: center;
    line-height: 40px;
    transform: rotate(45deg) translate(30px, -20px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.vuejs-why-choose-card:hover::before {
    opacity: 0.25;
}

.vuejs-why-choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.15);
}

.vuejs-why-choose-icon {
    font-size: 25px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #f0fdf4;
    color: #fa923d;
    /* Vue green */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.vuejs-why-choose-card:hover .vuejs-why-choose-icon {
    background: #fa923d;
    color: #fff;
    transform: scale(1.1);
}

.vuejs-why-choose-card h4 {
    margin-bottom: 0.7rem;
    color: #111827;
}

.vuejs-why-choose-card p {
    line-height: 1.6;
    color: #64748b !important;
}

@media (min-width: 992px) and (max-width: 1025px) {
    .webdevlopement-hero {
        text-align: start;
    }
}

/* tablet */

/* nodejs */
.nodejs-process-tablet-container {
    display: none;
}

@media (min-width: 768px) and (max-width: 991px) {
    .nodejs-process-container {
        display: none;
    }

    .nodejs-process-tablet-container {
        display: block;
    }
}

.nodejs-process-tablet-container {
    position: relative;
}

/* Title */
.nodejs-section-title {
    text-align: center;
    margin-bottom: 15px;
    color: #00aeef;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Step Box */
.nodejs-step-box {
    background: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
    border-top: 4px solid #f58220;
}

.nodejs-step-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.2);
}

.nodejs-step-box img {
    width: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.1));
}

.nodejs-step-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}
.whychoose-nodejs-card p {
    color: #64748b;
}
.service-content-web {
    color: #64748b !important;
    font-size: 15px !important;
}
.nodejs-step-box p {
    color: #64748b;
    line-height: 1.5;
}

/* Connector Lines */
.nodejs-line-between-planning-design,
.nodejs-line-bottom,
.nodejs-line-bottom-2,
.nodejs-line-vertical-planning-development,
.nodejs-line-vertical-planning-development-2 {
    position: absolute;
    background-color: #f58220;
    z-index: 1;
    border-radius: 2px;
}

.nodejs-line-between-planning-design {
    top: 50%;
    left: 16%;
    width: 77%;
    height: 4px;
    background-color: #fa923d;
}

.nodejs-line-bottom {
    top: 77%;
    left: 13.5%;
    width: 73%;
    height: 4px;
}
.nodejs-line-bottom-2 {
    top: 84%;
    left: 50%;
    width: 25%;
    height: 4px;
}

.nodejs-line-vertical-planning-development {
    top: 52%;
    left: 13%;
    width: 4px;
    height: 140px;
}
.nodejs-line-vertical-planning-development-2 {
    top: 52%;
    left: 13%;
    width: 4px;
    height: 140px;
}

@media (max-width: 1199.98px) {
    .nodejs-line-vertical-planning-development {
        left: 15.5%;
        height: 130px;
    }
    .nodejs-line-vertical-planning-development-2 {
        left: 80.5%;
        top: 66%;
        height: 130px;
    }

    .nodejs-line-bottom {
        left: 12.5%;
        width: 75%;
    }
}

@media (max-width: 991.98px) {
    .nodejs-line-between-planning-design {
        width: 40%;
    }
    .nodejs-line-vertical-planning-development {
        left: 17%;
        top: 35%;
        height: 120px;
    }

    .nodejs-line-bottom {
        top: 55%;
        left: 11.5%;
        width: 77%;
    }

    .nodejs-step-box {
        padding: 25px 15px;
    }
}

@media (max-width: 767.98px) {
    .nodejs-line-vertical-planning-development,
    .nodejs-line-bottom,
    .nodejs-line-between-planning-design {
        display: none;
    }

    .nodejs-step-box {
        margin-bottom: 30px;
        padding: 20px 15px;
    }

    .nodejs-step-box img {
        width: 40px;
    }

    .nodejs-process-tablet-container .text-start.text-center {
        padding: 0 10px;
    }
}

/* laravel  */

.process-tablet-container {
    display: none;
}

@media (min-width: 768px) and (max-width: 991px) {
    .process-container {
        display: none;
    }

    .process-tablet-container {
        display: block;
    }
}

.process-tablet-container {
    position: relative;
}

/* Title */
.laravel-section-title {
    text-align: center;
    margin-bottom: 15px;
    color: #00aeef;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Step Box */
.laravel-step-box {
    background: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
    border-top: 4px solid #f58220;
}

.laravel-step-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.2);
}

.laravel-step-box img {
    width: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.1));
}

.laravel-step-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}
.whychoose-laravel-card p {
    color: #64748b;
}
.service-content-web {
    color: #64748b !important;
    font-size: 15px !important;
}
.laravel-step-box p {
    color: #64748b;
    line-height: 1.5;
}

/* Connector Lines */
.laravel-line-between-planning-design,
.laravel-line-bottom,
.laravel-line-bottom-2,
.laravel-line-vertical-planning-development,
.laravel-line-vertical-planning-development-2 {
    position: absolute;
    background-color: #f58220;
    z-index: 1;
    border-radius: 2px;
}

.laravel-line-between-planning-design {
    top: 50%;
    left: 55%;
    width: 77%;
    height: 4px;
    background-color: #fa923d;
}

.laravel-line-bottom {
    top: 77%;
    left: 13.5%;
    width: 73%;
    height: 4px;
}
.laravel-line-bottom-2 {
    top: 84%;
    left: 25%;
    width: 25%;
    height: 4px;
}

.laravel-line-vertical-planning-development {
    top: 52%;
    left: 13%;
    width: 4px;
    height: 140px;
}
.laravel-line-vertical-planning-development-2 {
    top: 52%;
    left: 13%;
    width: 4px;
    height: 140px;
}

@media (max-width: 1199.98px) {
    .laravel-line-vertical-planning-development {
        left: 15.5%;
        height: 130px;
    }
    .laravel-line-vertical-planning-development-2 {
        left: 17%;
        top: 66%;
        height: 130px;
    }

    .laravel-line-bottom {
        left: 12.5%;
        width: 75%;
    }
}

@media (max-width: 991.98px) {
    .laravel-line-between-planning-design {
        width: 40%;
    }
    .laravel-line-vertical-planning-development {
        left: 83%;
        top: 35%;
        height: 120px;
    }

    .laravel-line-bottom {
        top: 55%;
        left: 11.5%;
        width: 77%;
    }

    .laravel-step-box {
        padding: 25px 15px;
    }
}

@media (max-width: 767.98px) {
    .laravel-line-vertical-planning-development,
    .laravel-line-bottom,
    .laravel-line-bottom-2,
    .laravel-line-between-planning-design {
        display: none;
    }

    .laravel-step-box {
        margin-bottom: 30px;
        padding: 20px 15px;
    }

    .laravel-step-box img {
        width: 40px;
    }

    .process-tablet-container .text-start.text-center {
        padding: 0 10px;
    }
}
