/* 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;
}

/* 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: 700;
    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;
    }
}

.technology-decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* Desktop (large screens) */
.technology-decoration-circle-1 {
    width: 300px;
    height: 300px;
    background: #27b0e5;
    top: 10px;
    right: -150px;
}

.technology-decoration-circle-2 {
    width: 200px;
    height: 200px;
    background: #fa923d;
    bottom: -100px;
    left: -100px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .technology-section-title {
        font-size: 2.5rem;
    }

    .technology-feature-card {
        padding: 2rem 1.5rem;
    }

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

    .technology-feature-icon {
        font-size: 2.5rem;
    }

    .technology-decoration-circle-1 {
        width: 220px;
        height: 220px;
        top: 20px;
        right: -80px;
    }

    .technology-decoration-circle-2 {
        width: 150px;
        height: 150px;
        bottom: -60px;
        left: -60px;
    }
}

@media (max-width: 768px) {
    .technology-section-title {
        font-size: 2.2rem;
    }

    .technology-feature-card {
        padding: 1.8rem 1.2rem;
    }

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

    .technology-feature-icon {
        font-size: 2.2rem;
    }

    .technology-feature-card h5 {
        font-size: 1.3rem;
    }

    .technology-decoration-circle-1 {
        width: 150px;
        height: 150px;
        top: 30px;
        right: 10px;
    }

    .technology-decoration-circle-2 {
        width: 100px;
        height: 100px;
        bottom: 20px;
        left: 10px;
    }
}

@media (max-width: 576px) {
    .technology-decoration-circle-1 {
        width: 90px;
        height: 90px;
        top: 15px;
        right: 10px;
    }

    .technology-decoration-circle-2 {
        width: 70px;
        height: 70px;
        bottom: 15px;
        left: 10px;
    }
}

/* 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;
    font-size: 22px;
    color: #fff;
    margin-right: 15px;
}

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

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

    .technology-service-card h6 {
        font-size: 1rem;
    }

    .technology-service-card p {
        font-size: 0.85rem;
    }
}

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

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

    .technology-service-card h6 {
        font-size: 0.95rem;
    }

    .technology-service-card p {
        font-size: 0.8rem;
    }
}

/* 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;
        font-size: 14px;
        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;
        font-size: 12px;
    }

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

    .expertise-content h5 {
        font-size: 15px;
    }

    .expertise-content p {
        font-size: 12px;
    }
}

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

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

    .expertise-content h5 {
        font-size: 15px;
    }

    .expertise-content p {
        font-size: 12px;
    }
}
.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;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.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;
    font-size: 18px;
    margin-bottom: 10px;
    color: #000000;
}

.step-box p {
    font-size: 14px;
    color: #444;
}

/* 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;
    }

    .step-title h2 {
        font-size: 26px;
    }
}

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

#stats-section .stat {
    opacity: 1;
    position: relative;
}

#stats-section .stat.animate__animated {
    opacity: 1;
}

#stats-section .stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        rgba(250, 146, 61, 0) 0%,
        rgba(250, 146, 61, 1) 20%,
        rgba(250, 146, 61, 1) 80%,
        rgba(250, 146, 61, 0) 100%
    );
}

@media (max-width: 767px) {
    #stats-section .stat {
        border-right: none;
        margin-bottom: 15px;
    }

    #stats-section .stat:nth-child(2n) {
        border-right: none !important;
    }

    #stats-section .stat:last-child {
        border-bottom: none;
    }
}

/* 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;
    font-size: 30px;
    color: #fff;
    margin: 0 auto;
}

.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%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

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

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

/* Tablet (≥768px and <992px) */
@media (max-width: 991.98px) {
    .whychoose-nodejs-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whychoose-nodejs-card h5 {
        font-size: 18px;
    }

    .whychoose-nodejs-card p {
        font-size: 14px;
    }

    .whychoose-nodejs-footer {
        font-size: 0.95rem;
        padding: 0 15px;
    }
}

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

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

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

    .whychoose-nodejs-card p {
        font-size: 13px;
    }

    .whychoose-nodejs-footer {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 24px !important;
    }
}

/* END WHY choose Node Js */

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

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

.nodejs-section-subtitle {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 40px;
    color: #000;
}

/* 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;
    font-size: 18px;
    margin-bottom: 10px;
    color: #000000;
}

.nodejs-step-box p {
    font-size: 14px;
    color: #444;
    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-section-subtitle {
        font-size: 26px;
    }

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

    .nodejs-step-box h5 {
        font-size: 16px;
    }

    .nodejs-step-box p {
        font-size: 13px;
    }
}

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

    .nodejs-section-subtitle {
        font-size: 22px;
        margin-bottom: 25px;
    }

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

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

    .nodejs-step-box h5 {
        font-size: 16px;
    }

    .nodejs-step-box p {
        font-size: 13px;
    }

    .nodejs-section-title {
        font-size: 13px;
    }
    .nodejs-process-container .text-start.text-center {
        padding: 0 10px;
    }

    .nodejs-process-container h5 {
        font-size: 22px;
    }

    .nodejs-process-container p {
        font-size: 14px;
    }
}
/* 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;
    }
}

.service-section {
    text-align: start;
}

.left-inner {
    position: sticky !important;
    top: 110px;
}

.left-inner p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Right section full width */
.right-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px; /* replaces margin-bottom */
}

/* Cards */
.right-section .card {
    max-width: 100%;
    background: #fff;
    border: none;
    padding: 20px;
    border-radius: 9px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}

.right-section .card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.right-section .card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Scrollbar style */
.right-section::-webkit-scrollbar {
    width: 6px;
}

.right-section::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.scroll-lock {
    position: relative;
}

@media (max-width: 576px) {
    .service-section {
        text-align: center;
    }
}
/* END  Service Section of Node Js */

/* 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;
    margin-top: 2rem;
}
.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;
}
.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: 40px;
    object-fit: contain;
    margin-bottom: 0px !important;
}
.python-why-choose-card h3 {
    color: #222;
    margin-bottom: 12px;
}
.python-why-choose-card p {
    color: #444;
    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: 100%;
    height: 100%;
    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(231deg);
}

.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: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: absolute;
    top: 70px;
    left: 70px;
    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: 15px 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;
    font-size: 15px;
    text-transform: uppercase;
    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;
    font-size: 14px;
    line-height: 1.4;
}

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

/* Tablet */
@media (max-width: 992px) {
    .python-process-wrapper {
        gap: 40px;
    }

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

/* Mobile */
@media (max-width: 768px) {
    .python-process-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .python-process-step {
        max-width: 100%;
        margin-top: 0 !important;
    }

    .python-process-circle-wrapper {
        width: 120px;
        height: 120px;
    }

    .python-process-inner-circle {
        width: 90px;
        height: 90px;
        top: 60px;
        left: 60px;
    }

    .python-process-label {
        width: auto;
        max-width: 260px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .python-process-circle-wrapper {
        width: 100px;
        height: 100px;
    }

    .python-process-inner-circle {
        width: 70px;
        height: 70px;
        top: 50px;
        left: 50px;
    }

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

    .python-process-label {
        font-size: 13px;
        padding: 12px 15px;
    }
}
