/* Web Development page css  */
.hero-title {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(90deg, #ff4b33, #7e65e3);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dashboard-wrapper {
    position: relative;
    z-index: 2;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 20px;
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    position: relative;
}

.dashboard-card img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.floating-card {
    position: absolute;
    background: #1b1143;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    animation: float 4s ease-in-out infinite;
}

.floating-card h5 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #fff;
}

.floating-card p {
    font-size: 13px;
    color: #f2c9c9;
    margin-bottom: 0;
}

.card-1 {
    top: -30px;
    left: -40px;
    width: 220px;
}

.card-2 {
    right: -30px;
    top: 60px;
    width: 180px;
    animation-delay: 1s;
}

.card-3 {
    bottom: -30px;
    left: 40px;
    width: 200px;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.section-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #000;
}

.section-title span {
    background: linear-gradient(to right, #ff4b33, #1a1142);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-text {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 7px;
    font-size: 17px;
    color: #000;
}

.feature-list li i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 75, 51, 0.3);
    color: #ff4b33;
    font-size: 20px;
    flex: none;
}

.ui-wrapper {
    position: relative;
    height: 650px;
}

/* @media (max-width:767px) {
    .ui-wrapper {
        transform: scale(.85);
        transform-origin: center;
        left: -20px;
    }
} */

.glass-card {
    position: absolute;
    border-radius: 28px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.ui-wrapper .glass-card.card-1 {
    width: 300px;
    height: 190px;
    padding: 30px;
    top: 4%;
    left: 3%;
    color: #fff;
    background: linear-gradient(135deg, #ff4b33, #1a1141);
}

.ui-wrapper .glass-card.card-2 {
    width: 320px;
    height: 220px;
    top: 14%;
    right: 3%;
    padding: 30px;
}

.ui-wrapper .glass-card.card-3 {
    width: 240px;
    height: 270px;
    bottom: 22%;
    left: 6%;
    padding: 30px;
}

.ui-wrapper .glass-card.card-4 {
    width: 260px;
    height: 300px;
    bottom: 3%;
    right: 12%;
    padding: 30px;
}

@media(max-width:767px) {
    .dashboard-wrapper {
        margin-top: 70px;
    }

    /* .card-1,
    .card-2,
    .card-3 {
        display: none;
    } */

    .ui-wrapper {
        height: 550px;
        margin-bottom: 60px;
    }

    .ui-wrapper .glass-card.card-1 {
        width: 240px;
    }

    .ui-wrapper .glass-card.card-2 {
        width: 260px;
    }

    .ui-wrapper .glass-card.card-3 {
        width: 220px;
    }

    .ui-wrapper .glass-card.card-4 {                       
        width: 220px;
    }
}
@media (min-width: 768px) and (max-width: 1200px) {
    .ui-wrapper {
        width: 40rem;
    }
}
@media (min-width: 768px) and (max-width: 1200px) {
    .dashboard-area {
        width: 40rem;
    }
}

.credit-number {
    letter-spacing: 2px;
    margin: 10px 0;
    font-size: 15px;
    font-weight: 600;
}

.small-label {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
}

.chart-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: auto;
    background:
        conic-gradient(#60a5fa 0% 30%,
            #f472b6 30% 65%,
            #fbbf24 65% 100%);
    position: relative;
}

.chart-circle::before {
    content: "";
    position: absolute;
    width: 85px;
    height: 85px;
    background: #0f172a;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.stats h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0px;
}

.stats span {
    color: #94a3b8;
    font-size: 14px;
}

/* section  */
.section-tag {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(255, 75, 51, 0.08);
    color: #ff4b33;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 7px;
}

.main-title {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #0f172a;
}

.main-title span {
    color: #2563eb;
}

@media (max-width: 991px) {
    .dashboard-wrapper1 {
        margin-top: 60px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .dashboard-wrapper1 .glass-card {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
        right: auto;
    }
}

@media (max-width: 576px) {}

.dashboard-wrapper1 {
    position: relative;
    min-height: 550px;
}

.dashboard-wrapper1 .glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transition: 0.4s ease;
}

.dashboard-wrapper1 .glass-card:hover {
    transform: translateY(-8px);
}

.dashboard-wrapper1 .card-1 {
    width: 290px;
    top: 20px;
    left: 40px;
    height: 300px;
}

.dashboard-wrapper1 .card-2 {
    width: 260px;
    top: 210px;
    left: 0;
}

.dashboard-wrapper1 .card-3 {
    width: 320px;
    top: 150px;
    left: 310px;
}

.stat {
    font-size: 32px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0px;
}

.mini-text {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 18px;
}

.dashboard-wrapper1 .graph {
    height: 140px;
    background: linear-gradient(180deg, #371ab4, #ff4b33);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.dashboard-wrapper1 .graph::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.12;
}

.dashboard-wrapper1 .chart-lines {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 120px;
    margin-top: 10px;
}

.dashboard-wrapper1 .chart-lines span {
    width: 14px;
    border-radius: 30px;
    background: linear-gradient(180deg, #371ab4, #ff4b33);
}

.dashboard-wrapper1 .profile {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.dashboard-wrapper1 .profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.dashboard-wrapper1 .social-bar {
    margin-bottom: 18px;
}

.dashboard-wrapper1 .social-bar .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.dashboard-wrapper1 .progress {
    height: 10px;
    border-radius: 20px;
    background: #e2e8f0;
}

.dashboard-wrapper1 .progress-bar {
    border-radius: 20px;
    background: linear-gradient(180deg, #371ab4, #ff4b33);
}

.dashboard-wrapper1 .bg-blur {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #2563eb;
    filter: blur(120px);
    opacity: 0.12;
    border-radius: 50%;
    top: 0;
    right: 0;
    z-index: -1;
}

/* section  */
.dashboard-area {
    position: relative;
    min-height: 600px;
}

@media (max-width:991px) {
    .dashboard-area {
        /* min-height: auto; */
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 60px;
    }

    .dashboard-area .glass-card {
        position: relative;
        width: 100%;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
    }
}

.dashboard-area .glass-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    position: absolute;
    transition: 0.4s ease;
}

.dashboard-area .glass-card:hover {
    transform: translateY(-8px);
}

.dashboard-area .main-card {
    width: 340px;
    top: 80px;
    left: 0;
}

.dashboard-area .main-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.dashboard-area .main-card-content {
    padding: 28px;
}

.dashboard-area .main-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
}

.dashboard-area .main-card p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 8px;
}

.dashboard-area .team {
    display: flex;
    align-items: center;
}

.dashboard-area .team img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
}

.dashboard-area .team img:first-child {
    margin-left: 0;
}

.dashboard-area .analytics-card {
    width: 320px;
    padding: 24px;
    top: 20px;
    right: 10px;
}


.dashboard-area .analytics-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 7px;
}

.dashboard-area .progress-line {
    height: 8px;
    border-radius: 30px;
    background: #e2e8f0;
    overflow: hidden;
    margin-bottom: 18px;
}

.dashboard-area .progress-fill {
    width: 78%;
    height: 100%;
    background: linear-gradient(90deg, #ff4b33, #1b1143);
    border-radius: 30px;
}

.dashboard-area .user-group {
    display: flex;
    align-items: center;
}

.dashboard-area .user-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.dashboard-area .user-group img:first-child {
    margin-left: 0;
}

.dashboard-area .plus-btn {
    width: 40px;
    height: 40px;
    background: #ff4b33;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    font-size: 20px;
}

.dashboard-area .small-card {
    width: 280px;
    padding: 18px;
    bottom: 20px;
    right: 70px;
}

.dashboard-area .small-card img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 18px;
}



.dashboard-area .small-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.dashboard-area .tag-wrap {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.dashboard-area .tag {
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.dashboard-area .tag-blue {
    background: #dbeafe;
    color: #2563eb;
}

.dashboard-area .tag-pink {
    background: #ffe4e6;
    color: #e11d48;
}

/* section */
.feature-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
    height: 25rem;
    overflow-y: scroll;
    scrollbar-width: none;
}

.feature-wrapper .feature-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    min-height: 250px;
}

.feature-wrapper .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.feature-wrapper .feature-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    right: -40px;
    top: -40px;
    opacity: 0.08;
}

.feature-wrapper .feature-card:nth-child(even) {
    margin-left: 70px;
}

.feature-wrapper .feature-card:nth-child(odd) {
    margin-right: 70px;
}

.card-blue::before {
    background: #3b82f6;
}

.card-orange::before {
    background: #ff5733;
}

.card-green::before {
    background: #10b981;
}

.card-purple::before {
    background: #8b5cf6;
}

@media (max-width: 991px) {

    .feature-wrapper .feature-card:nth-child(even),
    .feature-wrapper .feature-card:nth-child(odd) {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .feature-wrapper .feature-card {
        padding: 28px;
    }
}

.feature-wrapper .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 20px;
    color: #fff;
}

.blue-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.orange-icon {
    background: linear-gradient(135deg, #ff5733, #ff8a65);
}

.green-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.purple-icon {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.feature-wrapper .feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #162033;
}

.feature-wrapper .feature-text {
    color: #64748b;
    line-height: 1.5;
    font-size: 15px;
    margin-bottom: 10px;
}

.feature-wrapper .feature-link {
    text-decoration: none;
    font-weight: 500;
    color: #162033;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.feature-wrapper .feature-link:hover {
    color: #ff5733;
}

/* section */
.process-wrapper {
    position: relative;
    z-index: 2;
}

@media(max-width:991px) {
    .process-wrapper::before {
        display: none;
    }

    .process-wrapper .process-card {
        margin-bottom: 30px;
    }
}

@media(max-width:576px) {
    .process-card {
        padding: 28px;
    }
}

.process-wrapper .process-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px 30px;
    height: 100%;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
    height: 100%;
}

.process-wrapper .process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.process-wrapper .process-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 87, 51, 0.06);
    border-radius: 50%;
    top: -40px;
    right: -40px;
}

.process-wrapper .process-card:hover .step-number {
    transform: scale(1.08);
    transition: 0.4s ease;
}

.process-wrapper .step-number {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5733, #ff7b54);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(255, 87, 51, 0.3);
}

.process-card:hover .step-number {
    transform: scale(1.08);
    transition: 0.4s ease;
}

.process-wrapper .process-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-wrapper .process-text {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* odoo page  */
.hero-content {
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    backdrop-filter: blur(15px);
}

.hero-title {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.hero-title span {
    background: linear-gradient(90deg,
            #ff7b54,
            #ffb26b);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media(max-width: 1200px) {
    .hero-title {
        font-size: 58px;
    }
}

@media(max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
}

@media(max-width: 576px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-text {
        font-size: 16px;
    }
}

.hero-text {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    /* max-width: 650px; */
    margin-bottom: 20px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
}

@media(max-width: 991px) {
    .hero-image-wrapper {
        margin-top: 60px;
    }
}

@media(max-width: 576px) {
    .glass-card {
        padding: 28px;
    }

    .card-title {
        font-size: 28px;
    }
}

.hero-image-wrapper .glass-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    padding: 40px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    box-shadow:
        0 20px 80px rgba(0, 0, 0, 0.35);
}

.hero-image-wrapper .glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.35),
            rgba(255, 255, 255, 0.05));
    z-index: -1;
}

.odoo-logo {
    width: 130px;
    margin-bottom: 35px;
}

.hero-image-wrapper .card-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-image-wrapper .card-text {
    color: rgba(255, 255, 255, .72);
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 15px;
}

.hero-image-wrapper .feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-image-wrapper .feature-item {
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.outsystems .dashboard-wrapper {
    position: relative;
    margin-top: 140px;
}

.outsystems .feature-card {
    position: absolute;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 15px 22px;
    color: white;
    font-weight: 600;
}

.outsystems .card1 {
    top: 50px;
    left: 5%;
}

.outsystems .card2 {
    top: 50px;
    right: 5%;
}

.outsystems .card3 {
    bottom: 50px;
    left: 10%;
}

.outsystems .card4 {
    bottom: 50px;
    right: 10%;
}

.outsystems .dashboard {
    width: 80%;
    margin: auto;
    background: rgba(255, 255, 255, .05);
    padding: 15px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(30px);
}

.outsystems .dashboard img {
    width: 100%;
    border-radius: 20px;
}

.outsystems .services {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.outsystems .services span {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 12px 20px;
    border-radius: 50px;
    color: #d1d5db;
}

@media(max-width:991px) {
    .outsystems .feature-card {
        display: none;
    }

    .outsystems .dashboard {
        width: 95%;
    }
}

/* careers page styles  */
.primary-bottom-border {
    border-bottom: 4px solid #FF4B33;
    border-radius: 20px;
}

.job-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    transition: .4s;
    margin-bottom: 25px;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.job-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.job-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.job-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff6a3d, #ff9966);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex: none;
}

.job-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.meta-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
}

.openings {
    color: #ff6a3d;
    font-weight: 600;
}

.expand-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8fafc;
    border: none;
    font-size: 24px;
    transition: .3s;
}

.expand-btn:hover {
    background: #ff6a3d;
    color: #fff;
}

.job-body {
    padding: 0 30px 30px;
}

.content-box {
    background: #fafbfd;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 25px;
}

.content-box h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.content-box ul {
    padding-left: 18px;
}

.content-box li {
    margin-bottom: 8px;
    color: #555;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.info-card {
    background: white;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #eef2f7;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.info-card span {
    display: block;
    font-size: 13px;
    color: #888;
}

.info-card strong {
    color: #222;
}

.apply-btn {
    margin-top: 25px;
    background: linear-gradient(135deg, #ff6a3d, #ff8f50);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.apply-btn:hover {
    transform: translateY(-2px);
}