/* .header {
    background: linear-gradient(135deg, #c56641, #d17a54);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="70" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
} */

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-100px);
    }
}

.header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Styling */
.section {
    padding: 40px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #fafafa;
}

.section-title {
    font-size: 2.5rem;
    color: #c56641;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c56641, #d17a54);
    margin: 20px auto;
    border-radius: 2px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(197, 102, 65, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #c56641;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(197, 102, 65, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.benefit-card:hover::before {
    top: -10%;
    right: -10%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 102, 65, 0.2);
}

.benefit-card h3 {
    color: #c56641;
    font-size: 18px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-number {
    background: linear-gradient(135deg, #c56641, #d17a54);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Applications Section */
.applications-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.applications-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.applications-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.applications-section .section-title span {
    color: #c56641;
    position: relative;
}

.applications-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c56641, #d17a54);
    border-radius: 2px;
}

.applications-section .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 15px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.application-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.application-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(197, 102, 65, 0.15);
}

.app-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c56641, #d17a54);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(197, 102, 65, 0.2);
    transition: all 0.3s ease;
}

.application-card:hover .app-icon {
    transform: rotateY(180deg);
}

.application-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.application-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #c56641, #d17a54);
    border-radius: 2px;
}

.application-card p {
    color: #666;
    line-height: 1.7;
    margin-top: 15px;
    font-size: 15px;
}

/* Add animation for the cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.application-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Add delay for each card */
.application-card:nth-child(1) { animation-delay: 0.1s; }
.application-card:nth-child(2) { animation-delay: 0.2s; }
.application-card:nth-child(3) { animation-delay: 0.3s; }
.application-card:nth-child(4) { animation-delay: 0.4s; }
.application-card:nth-child(5) { animation-delay: 0.5s; }
.application-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .applications-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .applications-section .section-title {
        font-size: 30px;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .application-card {
        padding: 25px 20px;
    }
}

/* Applications */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.application-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 3px solid #c56641;
}

.application-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 102, 65, 0.15);
}

.application-item h4 {
    color: #c56641;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* SEO Section */
.seo-section {
    background: linear-gradient(135deg, #c56641, #d17a54);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.seo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(15deg);
    border-radius: 50%;
}

.seo-content {
    position: relative;
    z-index: 1;
}

.seo-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.seo-feature {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.seo-feature h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Future Section */
.future-section {
    text-align: center;
    background: #f8f9fa;
}

.future-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.tech-tag {
    background: linear-gradient(135deg, #c56641, #d17a54);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(197, 102, 65, 0.3);
}

/* Conclusion */
.conclusion {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="rgba(197,102,65,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.conclusion h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.conclusion p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .header p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid,
    .applications-grid {
        grid-template-columns: 1fr;
    }

    .seo-section {
        padding: 2rem;
    }

    .tech-tags {
        justify-content: center;
    }
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.4s;
}

.fade-in:nth-child(5) {
    animation-delay: 0.5s;
}
.main-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 80px;
    color: #333;
}

.main-title .highlight {
    color: #ff6b35;
}



/* Wavy line connecting the circles */
.wavy-line {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 20'%3E%3Cpath d='M0,10 Q125,0 250,10 T500,10 T750,10 T1000,10' stroke='%23333' stroke-width='3' fill='none' stroke-dasharray='8,4'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: center;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.step-circle {
    width: 80px;
    height: 80px;
    background-color: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    margin: 0 auto 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.step-circle:hover {
    background-color: #c56641;
    transform: scale(1.1);
}

.step-content {
    background-color: #f0f0f0;
    padding: 30px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.95em;
}

/* Responsive design */
@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .wavy-line {
        display: none;
    }

    .step {
        max-width: 100%;
    }

    .main-title {
        font-size: 2em;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.2em;
    }

    .step-content {
        padding: 20px 15px;
    }

    .step-title {
        font-size: 1.2em;
    }
}
/* Applications of AI and Automation  start*/
.process-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    padding:0 0;          
    margin-bottom: 60px;
    padding: 0 12px;
}

/* Curved line SVG */
/* .process-container::before {
    content: '';
    position: absolute;
    top: 90px;
    left: 80px;
    right: 80px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 40'%3E%3Cpath d='M 0 20 Q 100 5 200 20 T 400 20 Q 500 5 600 20 T 800 20' stroke='%23666' stroke-width='2' fill='none' stroke-dasharray='8,4'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    z-index: 1;
} */

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ff6b35;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.circle:hover {
    background-color: #e85a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 107, 53, 0.4);
}

.card {
    background-color: #f7fafc;
    color: #2d3748;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 280px;
    transition: all 0.3s ease;
}

.card.active {
   
    color: #c56641;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.card h3 {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
}

.card p {
    font-size: 0.95em;
    line-height: 1.5;
    color: inherit;
    text-align: left;
}

.card.active p {
    color:#585858;
}

.process-step:hover .card {
    transform: translateY(-3px);
}

.process-step:hover .card:not(.active) {
    background-color: #c56641;
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.process-step:hover .card:not(.active) p,
.process-step:hover .card:not(.active) h3 {
    color: white !important;
}

.process-step:hover .card.active {
    background-color: #e85a2b;
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* Enhanced curved line with better wave effect */
.process-step {
    position: relative;
    z-index: 2;
}

.circle {
    position: relative;
    z-index: 3;
}

.curved-line-container {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 1;
    overflow: hidden;
}

.curved-line-container img {
    height: auto;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
}
/* 
.curved-line svg {
    width: 100%;
    height: 40px;
} */

@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .process-container::before {
        display: none;
    }
    
    .process-step {
        width: 100%;
        max-width: 320px;
    }
}
/* Applications of AI and Automation end */
/* Why application  */