.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    background-image: url("https://images.pexels.com/photos/8566472/pexels-photo-8566472.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    color: white;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    color: #fff;
    border: 2px solid #fff;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    color: #fff;
    background-color: #0066ff;
    border: 2px solid #0066ff;
}

.btn-primary:hover {
    background-color: #0052cc;
    border-color: #0052cc;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
}

.services-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background circles */
.services-section::before,
.services-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.02);
    z-index: -1;
}

.services-section::before {
    top: -50px;
    left: -50px;
}

.services-section::after {
    bottom: -50px;
    right: -50px;
}

.services-wrapper {
    position: relative;
}

.services-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 300px;
    z-index: 2;
}

.services-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 15px;
}

.title-underline {
    width: 50px;
    height: 3px;
    background-color: #0066ff;
    margin: 0 auto;
}

.services-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    padding: 100px 0;
}

.feature-card {
    border-radius: 25px;
    padding: 20px;
    color: white;
    position: relative;
    min-height: 150px;
    display: flex;
    flex-direction: column;
}

.feature-time {
    background-color: #8bc34a;
    grid-column: 1;
    grid-row: 1;
    margin-right: 100px;
}

.feature-decisions {
    background-color: #1e88e5;
    grid-column: 2;
    grid-row: 1;
    margin-left: 100px;
}

.feature-integration {
    background-color: #26a69a;
    grid-column: 1;
    grid-row: 2;
    margin-right: 100px;
}

.feature-custom {
    background-color: #0d47a1;
    grid-column: 2;
    grid-row: 2;
    margin-left: 100px;
}

.feature-tag {
    display: inline-block;
    background-color: white;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-description {
    font-size: 1rem;
    max-width: 70%;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* Responsive styles */
@media (max-width: 992px) {
    .services-features {
        padding: 150px 0 100px;
    }

    .feature-time,
    .feature-decisions,
    .feature-integration,
    .feature-custom {
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media (max-width: 768px) {
    .services-center {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 0 auto 30px;
        width: 100%;
        max-width: 300px;
    }

    .services-features {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        padding: 0;
        gap: 20px;
    }

    .feature-time,
    .feature-decisions,
    .feature-integration,
    .feature-custom {
        margin-left: 0;
        margin-right: 0;
        grid-column: 1;
    }

    .feature-time {
        grid-row: 1;
    }

    .feature-decisions {
        grid-row: 2;
    }

    .feature-integration {
        grid-row: 3;
    }

    .feature-custom {
        grid-row: 4;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }

    .services-title {
        font-size: 1.2rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .feature-tag {
        font-size: 0.8rem;
    }
}

/* process timeline start */
.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header styles */
.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-header h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.timeline-divider {
    width: 48px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 10px auto;
}

/* Timeline container */
.timeline-wrapper {
    position: relative;
}

/* Vertical line */
.timeline-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: rgba(80, 78, 78, 0.3);
    transform: translateX(-50%);
}

/* Timeline step */
.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    margin-bottom: 64px;
    position: relative;
}

/* Left column */
.timeline-left-column {
    text-align: right;
    padding-right: 24px;
}

/* Right column */
.timeline-right-column {
    text-align: left;
    padding-left: 24px;
}

/* Step number */
.timeline-step-number {
    display: flex;
    align-items: center;
}

.timeline-step-number-left {
    justify-content: flex-end;
}

.timeline-step-number-right {
    justify-content: flex-start;
}

.timeline-number {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
}

.timeline-step-label {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 4px;
}

/* Step content */
.timeline-step-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.timeline-step-content p {
    font-size: 14px;
    color: #5f5b5b;
}

/* Center column with images */
.timeline-center-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.timeline-image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #333;
    overflow: hidden;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-spacer {
    height: 64px;
}

/* Step colors */
.timeline-color-01 {
    color: #ff3366;
}
.timeline-color-02 {
    color: #88cc00;
}
.timeline-color-03 {
    color: #33cccc;
}
.timeline-color-04 {
    color: #ffaa00;
}

/* Responsive styles */
@media (max-width: 768px) {
    .timeline-item {
        gap: 10px;
    }

    .timeline-left-column {
        padding-right: 16px;
    }

    .timeline-right-column {
        padding-left: 16px;
    }

    .timeline-number {
        font-size: 48px;
    }

    .timeline-image-container {
        width: 96px;
        height: 96px;
    }

    .timeline-step-content h3 {
        font-size: 18px;
    }

    .timeline-step-content p {
        font-size: 13px;
    }
}
/* process timeline end */

/* Header styles */
.aiuc-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.aiuc-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.aiuc-title span {
    color: #0066cc;
}

/* Grid container */
.aiuc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card styles */
.aiuc-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effects */
.aiuc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

.aiuc-card:hover::before {
    opacity: 1;
}

.aiuc-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #66a3ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Icon styles */
.aiuc-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.aiuc-icon {
    width: 60px;
    height: 60px;
    background-color: #e6f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.aiuc-icon img {
    width: 30px;
    height: 30px;
}

/* Card title */
.aiuc-card-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* List styles */
.aiuc-list {
    list-style-type: none;
}

.aiuc-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.aiuc-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .aiuc-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .aiuc-grid {
        grid-template-columns: 1fr;
    }
}

/* tech */

/* Main section container */
.tech-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Section title */
.tech-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 50px;
}

/* Technologies grid */
.tech-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Technology item */
.tech-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Circle connector dots */
.tech-item::before,
.tech-item::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border: 2px solid #66c2ff;
    border-radius: 50%;
    top: 80px;
    z-index: 1;
}

.tech-item::before {
    left: -20px;
}

.tech-item::after {
    right: -20px;
}

/* Hide connectors for first and last items */
.tech-item:first-child::before,
.tech-item:last-child::after {
    display: none;
}

/* Icon container with double circle effect */
.tech-icon-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.tech-icon-container:hover {
    transform: scale(1.05);
}

/* Outer circle with gradient */
.tech-icon-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #33adff, #0066cc);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Inner white circle */
.tech-icon-inner {
    width: 75%;
    height: 75%;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Icon image */
.tech-icon {
    width: 40%;
    height: 40%;
    color: #33adff;
}

/* Technology name */
.tech-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

/* Technology description */
.tech-description {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .tech-grid {
        gap: 40px 20px;
    }

    .tech-item::before,
    .tech-item::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .tech-item {
        min-width: 160px;
    }

    .tech-icon-container {
        width: 140px;
        height: 140px;
    }
}

/* aigc */
/* Main section container */
.aigc-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

/* Section title */
.aigc-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 50px;
    line-height: 1.3;
}

.aigc-title .aigc-highlight {
    color: #0066cc;
}

/* Benefits container */
.aigc-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 0;
    margin-bottom: 40px;
}

/* Individual benefit item */
.aigc-benefit {
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

/* Add separator between items */
.aigc-benefit:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: #ddd;
}

/* Checkmark icon */
.aigc-checkmark {
    color: #0066cc;
    margin-right: 8px;
    font-weight: bold;
}

/* Benefit text */
.aigc-text {
    font-size: 16px;
    color: #666;
}

/* Bottom divider */
.aigc-divider {
    width: 40px;
    height: 4px;
    background-color: #0066cc;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .aigc-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .aigc-benefit {
        width: 100%;
        justify-content: center;
    }

    .aigc-benefit:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .aigc-title {
        font-size: 26px;
    }
}

/* CTA section container */
.cta-section {
    max-width: 1200px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Content wrapper */
.cta-wrapper {
    display: flex;
    align-items: center;
    min-height: 300px;
}

/* Left content area */
.cta-content {
    background-color: #e9f4fb;
    padding: 40px;
    width: 60%;
    position: relative;
    z-index: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Right image area */
.cta-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background-image: url("https://source.unsplash.com/random/600x400/?business,professional,man,thumbs-up");
    background-size: cover;
    background-position: center right;
    z-index: 0;
}

/* Heading styles */
.cta-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Description text */
.cta-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 500px;
}

/* Button styles */
.cta-button {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

/* Responsive adjustments */
@media (max-width: 900px) {
    .cta-wrapper {
        flex-direction: column;
    }

    .cta-content {
        width: 100%;
        padding: 30px;
    }

    .cta-image {
        position: relative;
        width: 100%;
        height: 250px;
        background-position: center top;
    }
}

@media (max-width: 600px) {
    .cta-title {
        font-size: 24px;
    }

    .cta-description {
        font-size: 15px;
    }

    .cta-content {
        padding: 25px 20px;
    }
}

/* Main section container */
.case-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Section header */
.case-header {
    text-align: center;
    margin-bottom: 50px;
}

.case-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.case-divider {
    width: 40px;
    height: 4px;
    background-color: #0066cc;
    margin: 0 auto;
}

/* Case studies container */
.case-container {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* Image container with decorative borders */
.case-image-wrapper {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.case-image-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #0066cc;
    border-radius: 10px;
    top: -15px;
    left: -15px;
    z-index: 0;
}

.case-image {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.case-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Case studies content */
.case-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.case-item {
    margin-bottom: 5px;
}

.case-item-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.case-item-description {
    color: #555;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .case-container {
        flex-direction: column;
    }

    .case-image-wrapper {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 30px;
    }
}

@media (max-width: 600px) {
    .case-title {
        font-size: 26px;
    }

    .case-image-border {
        top: -10px;
        left: -10px;
    }
}
