/* Service Template CSS - WorksDelight */

/* CSS Variables for Branding Consistency */
:root {
    --wd-primary-color: #28B463; /* Bright green from the image */
    --wd-secondary-color: #1C2A3E;
    --wd-accent-color: #4ECDC4;
    --wd-text-color: #4A5568;
    --wd-heading-color: #2C3E50;
    --wd-background-light: #FFFFFF;
    --wd-background-grey: #F8F9FA;
    --wd-background-dark: #1C2A3E;
    --wd-border-radius: 8px;
    --wd-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--wd-text-color);
    line-height: 1.6;
    background-color: var(--wd-background-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--wd-heading-color);
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 50px 0;
}

/* Heading Styles */
.section-heading {
    margin-bottom: 20px;
}

.section-heading.centered {
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    width: 900px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 18px;
    color: var(--wd-text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    background: linear-gradient(90deg, var(--primary), #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--wd-primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #219652;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(40, 180, 99, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: #2C3E50;
    border: 2px solid #DEE2E6;
    padding: 10px 25px;
}

.btn-outline:hover {
    border-color: var(--wd-primary-color);
    color: var(--wd-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.service-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(37, 132, 18, 0.12) 0%, rgba(37, 132, 18, 0.05) 100%);
    position: relative;
    margin-top: 80px;
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-subtitle{
    max-width: 700px;
text-align: center;
color: #6C757D;
font-size: 16px;
line-height: 1.6;

}
.hero-description {
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-image {
    text-align: center;
}

.hero-visual {
    max-width: 100%;
    height: auto;
}

/* Vision Section */
.vision-section {
    padding: 50px 0;
    /* background-color: var(--wd-background-light); */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    /* background-color: var(--wd-background-light); */
    border-radius: var(--wd-border-radius);
    padding: 1.5rem;
    box-shadow: var(--wd-box-shadow);
    transition: transform 0.3s ease;
    border: 1px solid #edf2f7;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.industry-card {
    margin-bottom: 20px !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(40, 180, 99, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--wd-primary-color);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: var(--wd-text-color);
    margin-bottom: 0;
}
.section-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    color: #6C757D;
    font-size: 18px;
    line-height: 1.6;
}
.section-title-left {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}
/* Why Choose Us Section */
.why-choose-section {
    padding: 50px 0;
    background-color:#fbfbfb;
    position: relative;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-choose-text {
    padding-right: 20px;
}

.checkmark-list {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.checkmark-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.checkmark-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-color: var(--wd-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.device-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--wd-box-shadow);
}

/* Solutions Section */
.solutions-section {
    padding: 50px 0;
    background-color: var(--wd-background-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.2rem;
    margin-top: 40px;
}

.solution-card {
    background-color: var(--wd-background-light);
    border-radius: var(--wd-border-radius);
    padding: 1.5rem;
    box-shadow: var(--wd-box-shadow);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #edf2f7;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-number {
    width: 50px;
    height: 50px;
    background-color: var(--wd-primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.solution-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.solution-content p {
    font-size: 15px;
    color: var(--wd-text-color);
    margin-bottom: 0;
}

/* Projects Section */
.projects-section {
    padding: 50px 0;
    background-color: #f8fbfa;
}

.projects-slider {
    position: relative;
    margin-bottom: 30px;
}

.project-card {
    display: flex;
    flex-direction: column;
    background-color: var(--wd-background-light);
    border-radius: var(--wd-border-radius);
    overflow: hidden;
    box-shadow: var(--wd-box-shadow);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 30px;
    position: relative;
}

.project-number {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--wd-primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.project-content h3 {
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.project-content p {
    font-size: 15px;
    color: var(--wd-text-color);
    margin-bottom: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #e2e8f0;
    color: var(--wd-heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--wd-primary-color);
    border-color: var(--wd-primary-color);
    color: white;
}

/* Process Section */
.process-section {
    padding: 50px 0;
    background-color: #fbfbfb;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.step-connector {
    position: relative;
    width: 50px;
    height: 2px;
    background-color: #e2e8f0;
    margin-top: 40px;
    flex-grow: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    max-width: 200px;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 2px solid var(--wd-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--wd-primary-color);
    font-size: 30px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background-color: var(--wd-primary-color);
    color: white;
    transform: translateY(-5px);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--wd-text-color);
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
    background-color: #ffff;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--wd-border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--wd-box-shadow);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
}

.faq-question i {
    color: var(--wd-primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    margin: 0;
}

.faq-item.active .faq-question {
    background-color: #f8f9fa;
}

/* Contact Section */
.contact-section {
    padding: 50px 0;
    background-color: var(--wd-background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-text {
    padding-right: 20px;
}

.contact-form-wrapper {
    background-color: white;
    border-radius: var(--wd-border-radius);
    padding: 40px;
    box-shadow: var(--wd-box-shadow);
}
.footer-policy ul {
    display: flex;
    gap: 20px;
    list-style: none;
}
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--wd-border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wd-primary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 50px 0;
    background-color: #fbfbfb
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto 30px;
}
.testimonial-card {
    display: block;
}
.testimonial-card {
    background-color: white;
    border-radius: var(--wd-border-radius);
    box-shadow: var(--wd-box-shadow);
}

.testimonial-quote {
    font-size: 36px;
    color: var(--wd-primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 18px;
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-heading.animate,
.feature-card.animate,
.solution-card.animate,
.process-step.animate,
.project-card.animate {
    animation: fadeIn 0.6s ease-out forwards;
}
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content,
    .why-choose-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image,
    .why-choose-image {
        order: -1;
    }
    
    .hero-text,
    .why-choose-text,
    .contact-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .checkmark-list {
        display: inline-block;
        text-align: left;
    }
    
     .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 991px) {
    .hero-content {
        display: block;
    }
   .process-steps {
        display: flex;
    }
    .process-step{
        width: 100% !important;
    }
    .process-step {
        padding-left: 20px !important;
    }

}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
        width: auto !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }
    
    .process-step {
        max-width: 100%;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
        border-radius: 10px;
        padding: 20px 20px;
        margin: 20px 0px;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }
    .hero-content h1{
        text-align: start;
    }
    .hero-content p {
        font-size: 16px;
        text-align: start;
    }
    .solution-content h3{
        font-size: 16px;
    }
    .solution-content p{
        font-size: 14px;
    }
    .solution-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .step-connector {
        display: none;
    }
    .process-steps {
        margin-top: 30px;
}
.footer-policy ul {
    display: flex;
    gap: 10px !important;
    list-style: none;
}
.footer-policy li a {
    font-size: 13px;
    padding: 5px;
    font-weight: 500;
}
.section-title-left {
    font-size: 24px;
}
.process-step {
        margin: 10px 0px;
    }

  .features-grid {
    gap: 20px;
} 
#toronto-portfolio {
    padding-bottom: 0;
}
.location-section.section-padding {
    padding-top: 20px;
}
.step-icon {
    width: 70px;
    height: 70px;
    font-size: 24px;
}

}



@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .solution-card {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }

} 