/* Steps Section Styles */
.steps-section {
    padding: 100px 0;
    background: #ffffff;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}



.section-subtitle {
    color: #6902df;
    font-size: 1.2rem;
    text-transform: uppercase;
    left: 60px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
    
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #6902df;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    background: #6902df;
}

.step-icon {
    font-size: 2.5rem;
    color: #6902df;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align:initial

}

.connector-line {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 60%;
    height: 2px;
    background: #6902df;
    transform: translateX(-50%);
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .connector-line {
        display: none;
    }

    .step-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}
 /* Footer Styles */
 .main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 0;
    font-family: 'Arial', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 20px;
    background-color: #fff;
}

.footer-title {
    color: #6902df;
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6902df;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6902df;
    transform: translateY(-3px);
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    background: #333;
    color: #ffffff;
    margin-bottom: 15px;
}

.newsletter-btn {
    background: #6902df;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #6902df;
}

.footer-bottom {
    background: #000000;
    padding: 25px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #cccccc;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #6902df;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    transform: translateY(-5px);
}
/* whatsapp button */
.button-container {
        position: fixed;
        bottom: 90px;
        right: 30px;
        background: #ffffff;
        width: 40px; /* Adjust size as needed */
        height: 40px; /* Adjust size as needed */
        border-radius: 50%;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s, transform 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #ffffff; 
  }
  
  .button-container:hover {
    transform: translateY(-5px);
}
/* whatsapp button */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
}