
    body{
        font-family: 'Open Sans', sans-serif!important;
    }
:root {
    --primary-blue: #267BC1;
    --accent-orange: #E9963C;
    --text-dark: #212529;
    --white: #ffffff;
}
/*Header*/

.service-hero {
    overflow: hidden; 
    padding: 80px 0;
    background: #f9f9f9;
}

.container1 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

/* --- Content Styling --- */
.hero-content {
    flex: 1;
    opacity: 0;
    animation: slideInLeft 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.eyebrow {
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* --- Button Styling --- */
.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-orange);
    color: var(--white);
    border: 1px solid var(--accent-orange);
    padding: 16px 24px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--accent-orange);
}

/* --- Image Styling --- */
.hero-image {
    flex: 1;
    opacity: 0;
    animation: slideInRight 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Animations --- */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/*End of header*/

/*Section 1*/
.features-section {
    padding: 100px 20px;
    background-color: #ffffff;
    overflow: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary-blue); 
    transition: 
        transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
        box-shadow 0.4s ease, 
        border-color 0.3s ease,
        opacity 0.8s ease, 
        translateY 0.8s ease;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.feature-card:hover {
    transform: translateY(-15px); 
    border-top-color: var(--accent-orange); 
    box-shadow: 0 20px 40px rgba(0, 74, 153, 0.15); 
}
.feature-card:hover .feature-icon {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}
.feature-card:hover h3 {
    color: var(--accent-orange); 
    transition: color 0.3s ease;
}
.feature-card.reveal {
    opacity: 1;
    transform: translateY(0); 
}
/* Icon Specific Styling */
.feature-icon {
    font-size: 45px;
    color: var(--primary-blue); 
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.4s ease;
}


.feature-card:hover .feature-icon {
    color: #ff9900; /* Switches to Brand Orange */
    transform: scale(1.1) rotate(5deg); /* Slight pop and tilt */
}


.feature-card i {
    display: block;
}

.feature-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.4s; }

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/*End of section 1*/
/*Section 2*/
.details-section {
    padding: 100px 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

/* --- Left Image Styling --- */
.details-image {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(-50%); /* Start from -50% Left */
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.details-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-blue);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 74, 153, 0.3);
}

.experience-badge .number { font-size: 2rem; font-weight: 800; display: block; }
.experience-badge .label { font-size: 0.8rem; text-transform: uppercase; }

/* --- Right Text Styling --- */
.details-text {
    flex: 1;
    opacity: 0;
    transform: translateX(50%); /* Start from 50% Right */
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.details-text h2 {
    color: var(--primary-blue);
    font-size: 2.8rem;
    margin: 10px 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.stat-item i {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-top: 5px;
}

.stat-item h4 { 
    color: var(--primary-blue); 
    margin-bottom: 5px; 
}
.stat-item p { 
    font-size: 0.9rem; line-height: 1.3; 
}

/* --- Animation Trigger Class --- */
.details-image.reveal, .details-text.reveal {
    opacity: 1;
    transform: translateX(0);
}

/*End of section 2*/
/*Section 3*/
.process-section {
    padding: 100px 0;
    background-color: var(--primary-blue); 
    color: white;
    text-align: center;
}

.process-section .eyebrow { 
    color: var(--accent-orange); 
}
.process-section h2 { 
    color: white; 
    margin-bottom: 60px; 
    font-size: 2.5rem; 
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    
    /* Animation Initial State */
    opacity: 0;
    transform: scale(0.8) translateY(50px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-card.reveal {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.step-card:nth-child(2) { transition-delay: 0.2s; }
.step-card:nth-child(3) { transition-delay: 0.4s; }

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
/*End of section 3*/

/*Section 4*/
.guarantee-section {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
}

.guarantee-header {
    margin-bottom: 60px;
}

.guarantee-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.guarantee-box {
    flex: 1;
    padding: 40px;
    background: #f8faff; 
    border-radius: 20px;
    text-align: left;
    border: 1px solid #e1e8f0;
    transition: all 1s ease-out;
}

.badge-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.guarantee-box h3 {
    color: var(--primary-blue);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.check-list i {
    color: #28a745; /* Success Green for the checks */
}

.final-cta {
    background: #f4f4f4;
    padding: 50px;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.reveal {
    opacity: 1 !important;
    transform: translate(0) !important;
}
/*End of section 4*/

/* Responsive Design */
@media (max-width: 768px) {
    .container1 {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    /*Section 1*/
    .features-container {
        grid-template-columns: 1fr; 
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    /*Section 2*/
    .details-container {
        flex-direction: column;
        text-align: center;
    }
    .details-image { 
        transform: translateX(-30px); 
    } 
    .details-text { 
        transform: translateX(30px); 
    }
    .stats-grid { 
        grid-template-columns: 1fr; 
    }
    .stat-item { 
        flex-direction: column; 
        align-items: center; 
    }
    /*Section 3*/
    .process-steps {
        flex-direction: column;
        gap: 50px;
    }
    .process-section h2 { 
        font-size: 2rem; 
    }
    /*Section 4*/
    .guarantee-grid {
        flex-direction: column;
    }
    .guarantee-box {
        padding: 30px;
    }
    .final-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    /*Header*/
    .service-hero {
        padding: 40px 0;    
    }
    .features-section{
        padding: 60px 20px;
    }
    .details-section{
        padding: 60px 20px;
    }
    .process-section{
        padding: 60px 20px;
    }
    .guarantee-section{
        padding: 60px 20px;
    }

    .container1 {
        flex-direction: column; 
        gap: 30px;
        padding: 0 15px;
    }

    /* Adjust the text block */
    .hero-content {
        text-align: center;
        order: 2; 
    }

    .hero-content h1 {
        font-size: 2rem; 
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-image {
        order: 1; 
        width: 100%;
    }

    .hero-image img {
        border-radius: 10px;
        max-height: 250px; 
        object-fit: cover;
    }

    .cta-button {
        width: 100%; 
        justify-content: center;
        padding: 18px 10px;
        font-size: 1rem;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateY(30px); 
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateY(-30px); 
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /*End of header*/
}

