/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

.main-container {
    min-height: 100vh;
}

/* Header Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid #e5e7eb;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 24px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    width: clamp(180px, 16vw, 330px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.nav {
    display: none;
    align-items: center;
    gap: 20px;
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
    }
}

.nav-item {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-item:hover {
    opacity: 0.7;
}

.cta-button {
    height: auto;
    border-radius: 50px;
    background-color: #ffdb57;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f7d041;
}

/* Hero Content */
.hero-content {
    background-color: rgba(20, 204, 183, 0.05);
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    align-items: center;
    gap: 40px;
    padding: 40px 24px;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1.2fr;
        padding: 0px 0px 0px 40px;
    }
}

.hero-text {
    order: 2;
}

@media (min-width: 1024px) {
    .hero-text {
        order: 1;
    }
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.8px;
    color: #000;
}

.hero-line {
    margin-top: 12px;
    height: 19px;
    width: 220px;
    background: linear-gradient(90deg, #14ccb7 0%, #ffdb57 100%);
}

.hero-title {
    margin-top: 16px;
    max-width: 902px;
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
    color: #000;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 30px;
    }
}

.text-primary {
    font-weight: 800;
    color: #00c6ad;
}

.text-bold {
    font-weight: 700;
    color: #000;
}

.hero-description {
    margin-top: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.63);
}

.hero-cta {
    margin-top: 32px;
    height: auto;
    border-radius: 50px;
    background-color: #14ccb7;
    padding: 12px 24px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-cta:hover {
    background-color: #11b8a5;
}

.hero-image {
    order: 1;
}

@media (min-width: 1024px) {
    .hero-image {
        order: 2;
    }
}

.hero-img {
    height: auto;
    width: 100%;
    border-radius: 15px;
}

/* Services Section */
.services-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 24px;
}

@media (min-width: 1280px) {
    .services-section {
        padding: 40px 32px;
    }
}

.section-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.7px;
    color: #000;
}

@media (min-width: 1280px) {
    .section-title {
        font-size: 70px;
    }
}

.services-grid {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background-color: #fff;
    padding: 32px;
}

.service-icon img {
    height: 90px;
    width: 90px;
    object-fit: contain;
    border-radius: 10px;
}

.service-title {
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #000;
}

.service-description {
    margin-top: 10px;
    max-width: 390px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.5);
}

.service-arrow {
    margin-top: 15px;
    display: flex;
    height: 60px;
    width: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 109, 91, 0.22);
    opacity: 0.8;
    color: #006d5b;
}

.special-card {
    border: none;
    background-color: transparent;
    box-shadow: none;
}

@media (min-width: 1280px) {
    .special-card {
        grid-column: 3;
        grid-row: 2;
    }
}

.special-content {
    position: relative;
    min-height: 392px;
    overflow: hidden;
    border-radius: 25px;
    background-color: #efefef;
    padding: 32px;
}

.special-title {
    max-width: 258px;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
}

.special-button {
    height: auto;
    border-radius: 50px;
    background-color: #14ccb7;
    padding: 12px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.special-button:hover {
    background-color: #11b8a5;
}

.special-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 280px;
    object-fit: contain;
}

/* About Section */
.about-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 24px;
    text-align: center;
}

.about-title {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.7px;
    color: #000;
}

@media (min-width: 1280px) {
    .about-title {
        font-size: 50px;
    }
}

.about-title .text-primary {
    font-weight: 500;
    letter-spacing: 0.49px;
    color: #14ccb7;
}

.about-description {
    margin: 20px auto 0;
    max-width: 1290px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.2px;
    color: rgba(0, 0, 0, 0.65);
}

@media (min-width: 1280px) {
    .about-description {
        font-size: 16px;
    }
}

.about-image {
    margin-top: 40px;
    overflow: hidden;
    border-radius: 25px;
}

.about-image img {
    height: auto;
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
}

/* Process Section */
.process-section {
    background-color: #14ccb7;
}

.process-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 24px;
}

@media (min-width: 1280px) {
    .process-container {
        padding: 64px 32px;
    }
}

.process-header {
    margin-bottom: 40px;
}

.process-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.process-line {
    height: 13px;
    width: 42px;
    background: linear-gradient(90deg, #ffdb57 0%, #fff 100%);
}

.process-subtitle p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffdb57;
}

.process-title {
    margin-top: 16px;
    max-width: 100%;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

@media (min-width: 1280px) {
    .process-title {
        font-size: 50px;
    }
}

.process-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.process-card {
    min-height: 360px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
}

@media (min-width: 1280px) {
    .process-card {
        padding: 40px;
    }
}

.process-icon {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 10px;
}

@media (min-width: 1280px) {
    .process-icon {
        height: 96px;
        width: 96px;
    }
}

.process-card-title {
    margin-top: 24px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

@media (min-width: 1280px) {
    .process-card-title {
        font-size: 30px;
    }
}

.process-card-description {
    margin-top: 10px;
    max-width: 741px;
    /* text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2); */
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.22px;
    color: #fff;
}

@media (min-width: 1280px) {
    .process-card-description {
        font-size: 16px;
    }
}

/* Values Section */
.values-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 24px;
}

@media (min-width: 1280px) {
    .values-section {
        padding: 40px 32px;
    }
}

.values-container {
    display: grid;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1280px) {
    .values-container {
        grid-template-columns: minmax(0, 700px) minmax(0, 1fr);
        gap: 56px;
    }
}

.values-title {
    max-width: 690px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #0f172a;
}

.values-subtitle {
    margin-top: 18px;
    max-width: 620px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.4vw, 16px);
    font-weight: 400;
    line-height: 1.7;
    color: #475569;
}

.accordion {
    margin-top: 36px;
    width: 100%;
    max-width: 680px;
    display: grid;
    gap: 16px;
}

.accordion-item {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #dbe3f1;
    background: linear-gradient(140deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    padding: 0 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    border-color: #93c5fd;
    box-shadow: 0 16px 34px rgba(20, 204, 183, 0.14);
}

.accordion-item.active {
    border-color: #14ccb7;
    box-shadow: 0 18px 36px rgba(20, 204, 183, 0.2);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    font-family: 'Inter', sans-serif;
    font-size: clamp(20px, 2.2vw, 20px);
    font-weight: 600;
    letter-spacing: -0.2px;
    color: #0f172a;
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid #bfd1ef;
    background-color: #fff;
    font-size: 24px;
    line-height: 1;
    color: #0f172a;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background-color: #14ccb7;
    color: #fff;
    border-color: #14ccb7;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
}

.accordion-item.active .accordion-content {
    max-height: 220px;
    padding-bottom: 22px;
}

.values-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.values-image img {
    height: auto;
    width: min(100%, 420px);
    max-width: 420px;
    border-radius: 24px;
    border: 1px solid #dbe3f1;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.18);
}

@media (max-width: 767px) {
    .values-section {
        padding: 40px 18px;
    }

    .values-subtitle {
        line-height: 1.65;
    }

    .accordion {
        margin-top: 28px;
        gap: 12px;
    }

    .accordion-item {
        border-radius: 16px;
        padding: 0 16px;
    }

    .accordion-header {
        padding: 16px 0;
    }

    .accordion-content {
        font-size: 15px;
        line-height: 1.6;
    }

    .accordion-item.active .accordion-content {
        max-height: 260px;
        padding-bottom: 16px;
    }

    .values-image img {
        width: min(100%, 320px);
        max-width: 320px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #14ccb7;
}

.testimonials-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 24px;
}

@media (min-width: 1280px) {
    .testimonials-container {
        padding: 64px 32px;
    }
}

.testimonials-header {
    text-align: center;
}

.testimonials-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
    width: fit-content;
}

.testimonials-line {
    height: 11px;
    width: 60px;
    background: linear-gradient(90deg, #fff 0%, #ffdb57 100%);
}

.testimonials-title {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.7px;
    color: #fff;
}

@media (min-width: 1280px) {
    .testimonials-title {
        font-size: 70px;
    }
}

.testimonials-subtitle {
    margin-top: 8px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #fff;
}

@media (min-width: 1280px) {
    .testimonials-subtitle {
        font-size: 20px;
    }
}

.testimonials-carousel {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-btn {
    display: flex;
    height: 34px;
    width: 34px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.testimonials-scroll {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-scroll::-webkit-scrollbar {
    display: none;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    padding-bottom: 24px;
}

.testimonial-card {
    width: 260px;
    flex-shrink: 0;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background-color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    min-height: 260px;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    text-align: center;
}

@media (min-width: 1280px) {
    .testimonial-card {
        width: 360px;
        min-height: 400px;
        padding: 32px;
    }
}

.testimonial-avatar {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
}

@media (min-width: 1280px) {
    .testimonial-avatar {
        height: 100px;
        width: 100px;
    }
}

.testimonial-name {
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.28px;
    color: #000;
}

@media (min-width: 1280px) {
    .testimonial-name {
        font-size: 20px;
    }
}

.testimonial-quote {
    margin-top: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.2px;
    color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 1280px) {
    .testimonial-quote {
        font-size: 16px;
    }
}

/* Projects Section */
.projects-section {
    background-color: #fff;
    /* padding: 48px 0; */
}

/* @media (min-width: 1280px) {
    .projects-section {
        padding: 64px 0;
    }
} */

.projects-container {
    max-width: 1662px;
    margin: 0 auto;
    border-radius: 30px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.75) 0%, rgba(239, 239, 239, 0.75) 100%);
    padding: 48px 24px;
}

@media (min-width: 1280px) {
    .projects-container {
        border-radius: 0px;
        padding: 50px 40px;
    }
}

.projects-header {
    text-align: center;
}

.projects-title {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 0.65px;
    color: #000;
}

@media (min-width: 1280px) {
    .projects-title {
        font-size: 65px;
    }
}

.projects-subtitle {
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.32px;
    color: rgba(0, 0, 0, 0.75);
}

@media (min-width: 1280px) {
    .projects-subtitle {
        font-size: 22px;
    }
}

.projects-grid {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}

@media (min-width: 1280px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    border-radius: 25px;
    background-color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    min-height: 400px;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    text-align: center;
}

.project-icon {
    display: flex;
    height: 95px;
    width: 95px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.project-icon img {
    height: 95px;
    width: 95px;
    object-fit: cover;
    border-radius: 50%;
}

.web-dev {
    background-color: #96ebe6;
}

.ios-dev {
    background: linear-gradient(90deg, rgba(0, 237, 149, 1) 0%, rgba(0, 159, 253, 1) 100%);
}

.android-dev {
    background: linear-gradient(230deg, rgba(251, 105, 255, 1) 0%, rgba(96, 30, 233, 1) 100%);
}

.project-title {
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #000;
}

@media (min-width: 1280px) {
    .project-title {
        font-size: 20px;
    }
}

.project-description {
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 1280px) {
    .project-description {
        font-size: 16px;
        color: gray !important;
    }
}

.project-button {
    margin-top: auto;
    height: auto;
    border-radius: 50px;
    background-color: #ffdb57;
    padding: 12px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.project-button:hover {
    background-color: #f7d041;
}

/* Packages Section */
.packages-section {
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px 24px 36px;
    text-align: center;
    background: #efefef;
    /* border-radius: 0 0 24px 24px; */
}

@media (min-width: 1280px) {
    .packages-section {
        padding: 45px 56px 48px;
    }
}

.packages-title {
    font-family: 'Inter', sans-serif;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 0;
    color: #000;
    line-height: 1.08;
}

@media (min-width: 1280px) {
    .packages-title {
        font-size: 70px;
    }
}

.packages-description {
    margin: 18px auto 0;
    max-width: 1020px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.1px;
    color: rgba(0, 0, 0, 0.62);
}

@media (min-width: 1280px) {
    .packages-description {
        font-size: 18px;
        max-width: 1080px;
    }
}

.packages-grid {
    margin-top: 80px;
    display: grid;
    gap: 20px;
}

@media (min-width: 1280px) {
    .packages-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

.package-card {
    display: flex;
    min-width: 0;
}

.package-shell {
    position: relative;
    width: 100%;
    background: #efefef;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    display: flex;
    flex-direction: column;
    min-height: 450px;
    overflow: visible;
}

.package-badge {
    position: absolute;
    left: 50%;
    top: -56px;
    transform: translateX(-50%);
    width: 135px;
    height: 122px;
    background: linear-gradient(180deg, #20c8bc 0%, #17c6b8 100%);
    clip-path: polygon(50% 0%, 88% 21%, 88% 79%, 50% 100%, 12% 79%, 12% 21%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    overflow: hidden;
}

.package-badge svg {
    width: 64px;
    height: 64px;
    display: block;
}

.package-top {
    min-height: 155px;
    padding: 70px 20px 24px;
    background: #dcdcdc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0;
    color: #1f2127;
    line-height: 1.25;
    text-align: center;
}

.package-body {
    flex: 1;
    background: #f0f0f0;
    padding: 34px 26px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.package-description {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.2px;
    color: rgba(0, 0, 0, 0.47);
    text-align: center;
}

.package-button {
    margin-top: auto;
    min-width: 206px;
    height: auto;
    border-radius: 50px;
    background-color: #e0e0e0;
    padding: 11px 26px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 8px;
}

.package-button:hover {
    background-color: #d3d3d3;
}

@media (max-width: 1279px) {
    .packages-title {
        font-size: 48px;
    }

    .packages-description {
        font-size: 18px;
        max-width: 720px;
    }

    .package-shell {
        min-height: 460px;
    }

    .package-top {
        min-height: 138px;
        padding: 64px 16px 22px;
    }

    .package-title {
        font-size: 30px;
    }

    .package-body {
        padding: 24px 20px 22px;
    }

    .package-description {
        font-size: 15px;
        letter-spacing: 0.6px;
    }

    .package-button {
        min-width: 170px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .packages-section {
        border-radius: 0;
        padding: 24px 16px 36px;
    }

    .packages-title {
        font-size: 40px;
    }

    .packages-description {
        font-size: 16px;
    }

    .packages-grid {
        margin-top: 46px;
    }

    .package-badge {
        width: 90px;
        height: 108px;
        top: -44px;
    }

    .package-top {
        min-height: 126px;
        padding-top: 54px;
    }

    .package-title {
        font-size: 28px;
    }

    .package-button {
        font-size: 20px;
        min-width: 156px;
    }
}

/* Footer */
.footer {
    background-color: rgba(20, 204, 183, 0.1);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 24px;
}

@media (min-width: 1280px) {
    .footer-container {
        padding: 48px 32px 15px 32px;
    }
}

.footer-grid {
    display: grid;
    gap: 40px;
}

@media (min-width: 1280px) {
    .footer-grid {
        grid-template-columns: 1.3fr 0.8fr 0.9fr 1.3fr;
    }
}

.footer-logo {
    width: clamp(200px, 18vw, 320px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (min-width: 1280px) {
    .footer-logo {
        width: 290px;
    }
}

.footer-address {
    margin-top: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.65);
}

.footer-contact {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item svg {
    height: 28px;
    width: 28px;
    color: rgba(0, 0, 0, 0.65);
}

.contact-item span {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.65);
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.65);
}

.footer-links {
    margin-top: 40px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #000;
}

.newsletter-form {
    margin-top: 15px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    background-color: #fff;
    padding: 8px 8px 8px 20px;
}

.newsletter-form svg {
    margin-right: 16px;
    height: 24px;
    width: 24px;
    color: rgba(0, 0, 0, 0.4);
}

.newsletter-input {
    flex: 1;
    height: auto;
    border: none;
    background-color: transparent;
    padding: 0;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.25);
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

.newsletter-button {
    margin-left: 16px;
    display: flex;
    height: 61px;
    width: 62px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(20, 204, 183, 0.2);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: rgba(20, 204, 183, 0.3);
}

.newsletter-button svg {
    height: 16px;
    width: 16px;
    opacity: 0.75;
    color: #14ccb7;
    margin: 0;
}

.newsletter_section {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.social-heading {
    margin-top: 32px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.65);
}

.social-icons {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.twitter {
    background-color: #1da1f2;
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.125);
    padding-top: 16px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.75);
}

/* Responsive Design */
@media (min-width: 1280px) {
    .logo {
        width: 270px;
    }

    .nav-item {
        font-size: 18px;
    }

    .cta-button {
        padding: 10px 30px;
        font-size: 19px;
        text-decoration: none;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-line {
        width: 314px;
    }

    .hero-description {
        font-size: 20px;
    }

    .hero-cta {
        padding: 20px 40px;
        font-size: 25px;
    }

    .service-icon img {
        height: 113px;
        width: 113px;
    }

    .service-title {
        font-size: 22px;
    }

    .service-description {
        font-size: 16px;
    }

    .special-title {
        font-size: 30px;
    }

    .special-button {
        font-size: 22px;
    }

    .special-image {
        width: 334px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
    outline: 2px solid #14ccb7;
    outline-offset: 2px;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.testimonial-card,
.project-card,
.package-card {
    animation: fadeIn 0.6s ease-out;
}

/* Hover effects */
.service-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

.package-card:hover .package-shell {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Full Page UX Polish */
:root {
    --cf-text-strong: #0f172a;
    --cf-text-body: #475569;
    --cf-accent: #14ccb7;
    --cf-accent-deep: #0ea696;
    --cf-surface: #ffffff;
    --cf-surface-soft: #f8fafc;
    --cf-border-soft: #dbe3f1;
    --cf-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --cf-radius-lg: 22px;
}

body {
    color: var(--cf-text-strong);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

section {
    scroll-margin-top: 88px;
}

.services-section,
.about-section,
.process-container,
.values-section,
.testimonials-container,
.projects-container,
.packages-section,
.footer-container {
    padding-left: clamp(16px, 3vw, 32px);
    padding-right: clamp(16px, 3vw, 32px);
}

.section-title,
.about-title,
.process-title,
.testimonials-title,
.projects-title,
.packages-title {
    letter-spacing: -0.4px;
    line-height: 1.15;
}

.section-title {
    font-size: clamp(32px, 5vw, 40px);
}

.about-title {
    font-size: clamp(30px, 4.2vw, 40px);
}

.process-title {
    font-size: clamp(30px, 4.2vw, 40px);
}

.testimonials-title {
    font-size: clamp(32px, 5vw, 40px);
}

.projects-title {
    font-size: clamp(32px, 5vw, 40px);
}

.packages-title {
    font-size: clamp(34px, 5.5vw, 40px);
}

.hero-title {
    line-height: 1.08;
}

.hero-description,
.about-description,
.process-card-description,
.service-description,
.testimonial-quote,
.project-description,
.package-description {
    color: #000000;
}

.service-card,
.process-card,
.testimonial-card,
.project-card,
.package-shell,
.about-image,
.values-image img {
    border-radius: var(--cf-radius-lg);
}

.service-card,
.testimonial-card,
.project-card,
.package-shell {
    border: 1px solid var(--cf-border-soft);
    box-shadow: var(--cf-shadow-soft);
}

.service-card,
.project-card,
.testimonial-card,
.package-shell,
.accordion-item,
.cta-button,
.hero-cta,
.special-button,
.project-button,
.package-button {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.cta-button,
.hero-cta,
.special-button,
.package-button,
.project-button {
    font-weight: 600;
}

.hero-cta:hover,
.special-button:hover,
.package-button:hover,
.project-button:hover {
    transform: translateY(-1px);
}

.service-card:hover,
.project-card:hover,
.testimonial-card:hover,
.package-card:hover .package-shell {
    transform: translateY(-6px);
}

.footer {
    background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.footer-heading {
    color: var(--cf-text-strong);
}

.footer-links a,
.footer-address,
.contact-item span,
.footer-bottom p {
    color: var(--cf-text-body);
}

@media (max-width: 1023px) {
    .header-container {
        gap: 12px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .logo {
        width: clamp(150px, 38vw, 210px);
    }

    .cta-button {
        padding: 10px 16px;
        font-size: 13px;
    }

    .hero-title {
        font-size: clamp(32px, 10vw, 46px);
    }

    .special-content {
        min-height: 340px;
    }

    .process-card,
    .project-card,
    .testimonial-card {
        min-height: auto;
    }
}

/* Awesome Design Upgrade */
:root {
    --cf-accent-gold: #f5b51f;
    --cf-shadow-premium: 0 24px 55px rgba(15, 23, 42, 0.16);
}

.hero-content {
    background:
        radial-gradient(circle at 85% 10%, rgba(20, 204, 183, 0.18) 0%, rgba(20, 204, 183, 0) 38%),
        radial-gradient(circle at 12% 85%, rgba(245, 181, 31, 0.16) 0%, rgba(245, 181, 31, 0) 36%),
        linear-gradient(180deg, #f9fffe 0%, #f4faff 100%);
}

.hero-title {
    font-weight: 700;
}

.hero-img {
    border: 1px solid #dbe3f1;
    box-shadow: var(--cf-shadow-premium);
}

.services-grid,
.process-grid,
.projects-grid,
.packages-grid {
    gap: clamp(18px, 2vw, 28px);
}

.service-card,
.project-card,
.testimonial-card,
.package-shell {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #d7e4f2;
}

.service-arrow {
    background: linear-gradient(140deg, rgba(20, 204, 183, 0.2) 0%, rgba(245, 181, 31, 0.3) 100%);
    color: #0b7669;
}

.special-content {
    background:
        radial-gradient(circle at 90% 20%, rgba(20, 204, 183, 0.2) 0%, rgba(20, 204, 183, 0) 45%),
        linear-gradient(180deg, #f8fdff 0%, #eef6ff 100%);
    border: 1px solid #d7e4f2;
    box-shadow: var(--cf-shadow-soft);
}

.about-image img,
.values-image img {
    box-shadow: var(--cf-shadow-premium);
}

.process-section {
    background: linear-gradient(130deg, #0f8f81 0%, #14ccb7 45%, #5ddfd0 100%);
}

.process-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.testimonials-section {
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 30%),
        linear-gradient(135deg, #10b8a4 0%, #0f9f8e 100%);
}

.projects-container {
    background:
        radial-gradient(circle at 90% 0%, rgba(20, 204, 183, 0.16) 0%, transparent 35%),
        radial-gradient(circle at 5% 95%, rgba(245, 181, 31, 0.12) 0%, transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

.packages-section {
    background:
        radial-gradient(circle at 10% 15%, rgba(20, 204, 183, 0.1) 0%, transparent 24%),
        radial-gradient(circle at 92% 88%, rgba(245, 181, 31, 0.14) 0%, transparent 32%);
}

.hero-cta,
.special-button,
.package-button,
.project-button {
    background: linear-gradient(135deg, var(--cf-accent) 0%, #19b7a7 100%);
    color: #ffffff;
    border: none;
}

.hero-cta:hover,
.special-button:hover,
.package-button:hover,
.project-button:hover {
    background: linear-gradient(135deg, #109f8f 0%, #0f8f81 100%);
}

.cta-button {
    background: linear-gradient(135deg, #ffdc63 0%, var(--cf-accent-gold) 100%);
}

.service-card:hover,
.project-card:hover,
.testimonial-card:hover,
.package-card:hover .package-shell,
.accordion-item:hover {
    box-shadow: var(--cf-shadow-premium);
}

@media (max-width: 767px) {

    .hero-container,
    .services-section,
    .about-section,
    .process-container,
    .values-section,
    .testimonials-container,
    .projects-container,
    .packages-section,
    .footer-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Banner Redesign */
.hero-section {
    background: #ffffff;
}

.hero-content {
    background: linear-gradient(90deg, #f7fbfb 0%, #e9f5f4 100%);
    border-top: 1px solid #e7eef4;
    border-bottom: 1px solid #e7eef4;
}

.hero-container {
    gap: clamp(20px, 3vw, 38px);
    /* padding-top: clamp(26px, 3vw, 40px);
    padding-bottom: clamp(26px, 3vw, 40px); */
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        /* padding-left: clamp(24px, 3vw, 40px);
        padding-right: clamp(24px, 3vw, 40px); */
    }
}

.hero-text {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.hero-subtitle {
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 600;
    letter-spacing: 2px;
    color: #334155;
}

.hero-line {
    margin-top: 10px;
    height: 6px;
    width: clamp(120px, 16vw, 210px);
    border-radius: 999px;
    background: linear-gradient(90deg, #14ccb7 0%, #ffdb57 100%);
}

.hero-title {
    margin-top: 20px;
    max-width: 100ch;
    font-size: clamp(38px, 5.4vw, 72px);
    line-height: 51px;
    letter-spacing: -0.4px;
    font-weight: 700;
    color: #0f172a;
}

.hero-description {
    margin-top: 14px;
    font-size: clamp(12px, 1.2vw, 17px);
    letter-spacing: 1px;
    color: #334155;
}

.hero-cta {
    margin-top: 0px;
    padding: 12px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1ccbb7 0%, #12aa97 100%);
    box-shadow: 0 8px 18px rgba(20, 170, 151, 0.24);
    font-size: clamp(14px, 1.1vw, 17px);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: min(100%, 980px);
    max-height: 520px;
    object-fit: cover;
    border-radius: 14px;
    border: none;
    box-shadow: none;
    background: transparent;
}

@media (max-width: 1023px) {
    .hero-container {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .hero-title {
        max-width: 100%;
        font-size: clamp(34px, 9.5vw, 56px);
        line-height: 1.1;
    }

    .hero-description {
        letter-spacing: 1.2px;
        font-size: 14px;
    }

    .hero-img {
        max-height: 400px;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 35px;
    }

    .hero-description {
        font-size: 16px;
    }
}


/* CareStreamSync content update additions */
.nav a.nav-item {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.hero-actions,
.closing-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 30px;
}

.hero-actions .hero-cta,
.closing-cta-actions .hero-cta {
    display: inline-flex;
    text-decoration: none;
}

.hero-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #14ccb7;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0f766e;
    text-decoration: none;
    background: #fff;
    transition: all 0.3s ease;
}

.hero-secondary-cta:hover {
    background: rgba(20, 204, 183, 0.1);
}

.section-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.service-arrow {
    font-size: 30px;
    font-weight: 700;
    text-decoration: none;
}

.secondary-capabilities-section {
    background: rgba(20, 204, 183, 0.06);
    padding: 54px 24px;
}

.secondary-capabilities-container {
    max-width: 1440px;
    margin: 0 auto;
}

.secondary-capabilities-grid {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 22px;
}

.secondary-capability-card {
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(20, 204, 183, 0.22);
    padding: 26px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.secondary-capability-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
}

.secondary-capability-card p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #475569;
    margin: 0;
}

.testimonial-role {
    margin-top: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.55);
}

.closing-cta-section {
    padding: 64px 24px;
    background: linear-gradient(135deg, rgba(20, 204, 183, 0.12), rgba(255, 219, 87, 0.18));
}

.closing-cta-container {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
    border-radius: 32px;
    background: #fff;
    padding: 48px 28px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}

.closing-cta-container h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    color: #0f172a;
    margin: 0;
}

.closing-cta-container p {
    max-width: 780px;
    margin: 18px auto 0;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: #475569;
}

.closing-cta-actions {
    justify-content: center;
}

.package-badge {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 800;
}

.newsletter-heading {
    margin-top: 28px;
    font-size: 25px;
}

@media (min-width: 768px) {
    .secondary-capabilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .secondary-capabilities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .carestream-footer-grid {
        grid-template-columns: 1.35fr 0.8fr 1fr 0.8fr 1.1fr;
    }
}

@media (max-width: 767px) {

    .newsletter_section {
        width: 100%;
    }

    .hero-actions,
    .closing-cta-actions {
        align-items: stretch;
    }

    .hero-actions a,
    .closing-cta-actions a {
        width: 100%;
        justify-content: center;
    }

    .closing-cta-container {
        padding: 36px 20px;
    }
}