

/* --- Hero Section Styles --- */

#hero-section {

    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/services/section 1 services.webp') no-repeat center center/cover;

    color: #fff;

    padding: 60px 0;

    min-height: 80vh;

    display: flex;

    align-items: center;

    /* Prevents content from spilling out during animation */

    overflow: hidden;

}


#hero-container {

    display: flex;

    align-items: center;

    gap: 40px;

}


/* Left Content Article */

#hero-content {

    flex: 1.2;

}


#hero-main-title {

    font-size: 3.5rem;

    line-height: 1.2;

    margin-bottom: 20px;

    /* --- ANIMATION ADDED --- */

    opacity: 0; /* Start hidden */

    animation: fadeInUp 0.8s ease-out forwards;

}


#hero-description {

    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    text-align: justify;
    text-justify: inter-word;

    /* --- ANIMATION ADDED --- */

    opacity: 0; /* Start hidden */

    animation: fadeInUp 0.8s ease-out 0.3s forwards; /* 0.3s delay */

}


.btn {

    text-decoration: none;

    padding: 12px 28px;

    border-radius: 5px;

    font-weight: bold;

    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;

    display: inline-block;

    cursor: pointer;

}


#discover-more-btn {

    color: #fff;

    border: 2px solid #fff;

    /* --- ANIMATION ADDED --- */

    opacity: 0; /* Start hidden */

    animation: fadeInUp 0.8s ease-out 0.6s forwards; /* 0.6s delay */

}


#discover-more-btn:hover {

    background-color: #fff;

    color: #333;

    transform: translateY(-2px);

}


/* Right Form Container */

#quote-form-container {

    flex: 1;

    background-color: #f4f7f6;

    color: #333;

    padding: 30px;

    border-radius: 8px;

}


#quote-form-title {

    font-size: 1.8rem;

    margin-top: 0;

    text-align: center;

}


#contact-info {

    text-align: center;

    margin: 20px 0;

}


#contact-info p {

    margin-bottom: 10px;

}


/* #phone-numbers {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

} */


#phone-numbers a {

    color: #333;

    text-decoration: none;

    font-size: 0.95rem;

    padding: 5px;

}


#phone-numbers a:hover {

    color: #007BFF;

}


#form-separator {

    text-align: center;

    font-weight: bold;

    margin: 20px 0;

}


/* Form Styles */

#get-quote-form .form-group {

    margin-bottom: 15px;

}


#get-quote-form label {

    display: none;

}


#get-quote-form input {

    width: 100%;

    padding: 12px;

    border: 1px solid #ccc;

    border-radius: 5px;

    box-sizing: border-box;

    font-size: 1rem;

}


#get-quote-form .mobile-input-wrapper {

    display: flex;

    align-items: center;

}


#get-quote-form .country-code {

    padding: 12px;

    background-color: #e9ecef;

    border: 1px solid #ccc;

    border-right: none;

    border-radius: 5px 0 0 5px;

}


#get-quote-form #mobile {

    border-radius: 0 5px 5px 0;

}


#submit-quote-btn {

    width: 100%;

    background-color: #2c3e50;

    color: #fff;

    border: none;

    font-size: 1.1rem;

}


#submit-quote-btn:hover {

    background-color: #34495e;

    transform: translateY(-2px);

}


/* --- Responsive Design --- */

@media (max-width: 992px) {

    #hero-main-title {

        font-size: 2.8rem;

    }

}


@media (max-width: 768px) {

    #hero-container {

        flex-direction: column;

        text-align: center;

    }


    #hero-section {

        padding: 40px 0;

    }


    #hero-content {

        margin-bottom: 40px;

    }

   

    #hero-main-title {

        font-size: 2.5rem;

    }

}


@media (max-width: 480px) {

    #phone-numbers {

        grid-template-columns: 1fr;

    }


    #hero-main-title {

        font-size: 2rem;

    }


    #hero-description {

        font-size: 1rem;

    }

}



/*

 * --- KEYFRAME ANIMATION DEFINITION ---

 * This defines the animation steps.

 * 'from' state: element is moved down by 20px and is transparent.

 * 'to' state: element is in its original position and fully visible.

 */

@keyframes fadeInUp {

    from {

        transform: translateY(20px);

        opacity: 0;

    }

    to {

        transform: translateY(0);

        opacity: 1;

    }

}


/*----------section 2 services----------*/





/* --- SCROLL ANIMATION STYLES --- */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Main Services Section Styling */
.services-showcase-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

/* Left Column: Image and Badge */
.services-image-column {
    flex: 1;
    position: relative;
    min-width: 300px;
}

.services-image-column img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.experience-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    background-color: #1E2A4A;
    color: #fff;
    padding: 20px;
    text-align: center;
    width: 180px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.experience-badge-icon svg {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}

.experience-badge-text {
    margin: 0;
    line-height: 1.2;
}

.experience-badge-text strong {
    font-size: 1.1rem;
    display: block;
}

/* Right Column: Content */
.services-content-column {
    flex: 1.2;
    padding-left: 20px;
}

.services-intro-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.services-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E2A4A;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    text-align: justify;
    line-height: 1.5;
}

/* Services List Grid */
.services-list-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.service-item svg {
    color: #1E2A4A;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.service-item:hover {
    background-color: #f0f4f8;
    color: #1E2A4A;
    transform: translateY(-2px);
    cursor: pointer;
}

.service-item:hover svg {
    color: #1E2A4A;
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
    .services-container {
        flex-direction: column;
        text-align: center;
    }
    
    .services-content-column {
        padding-left: 0;
        margin-top: 80px;
    }

    .services-main-title {
        font-size: 2rem;
    }

    .service-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .services-showcase-section {
        padding: 40px 15px;
    }

    .experience-badge {
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 160px;
    }
    
    .services-content-column {
        margin-top: 100px;
    }
    
    .services-list-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-item {
        justify-content: flex-start;
        padding-left: 20px;
    }
}




/*------------sectin 3-------------*/



.our-product {
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 80px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}


.our-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0.9;
}



.our-product-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.our-product-container .reversed {
    flex-direction: row-reverse;
}


.our-product .frame,
.our-product .image-content {
    flex: 1;
    max-width: 50%;
}

.our-product .frame {
    color: #FFF;
}

.our-product .frame h1 {
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.our-product .frame p {
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
}

.our-product .image-content {
    width: 100%;
    max-width: 600px;
    height: 350px;
    aspect-ratio: 3 / 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.our-product .image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
.our-product-container {
flex-direction: column;
padding: 0 20px;
text-align: center;
}

.our-product-container.reversed {
flex-direction: column;
}

.our-product .frame,
.our-product .image-content {
max-width: 100%;
}

    .our-product .image-content {
        height: auto;
    }



    .our-product .image-content {
        height: 300px;
    }


.our-product .frame h1 {
font-size: 2.2rem;
}

.our-product .frame p {
font-size: 1rem;
}
}

@media (max-width: 768px) {
.banner h2 {
font-size: 4rem;
}

.our-product .frame h1 {
font-size: 3rem;
}

.our-product .frame p {
font-size: 0.95rem;
padding: 0 10px;
}

.container {
padding: 0 15px;
}

.content-section.text-center {
padding: 40px 15px;
}

.our-product {
padding: 60px 0;
}
    .our-product .image-content {
        height: 280px;
    }
    .our-product .image-content img {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
.banner h2 {
font-size: 1.8rem;
}

.our-product .frame h1 {
font-size: 1.6rem;
}

.our-product .frame p {
font-size: 0.9rem;
}

.our-product-container {
gap: 30px;
}
    .our-product .image-content {
        height: 200px;
    }
    .our-product .image-content img {
        border-radius: 12px;
    }
}



/*----------section 4-------------*/





.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 20px;
    color: #ffffff;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/services/S_Why_Chooses_Us.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* --- Left Side: Text Content --- */
.hero-text-content {
    flex: 1;
    max-width: 50%;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-subheading {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.hero-main-heading {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: justify;
}

/* --- Right Side: Feature Cards (Corrected Vertical Stack) --- */
.hero-features-grid {
    flex: 1;
    max-width: 50%;
    /* 👇 THIS IS THE KEY CHANGE: Creates a vertical stack */
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Animation state */
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.2s;
}

.feature-card {
    background-color: #f4f4f8;
    color: #1a1a2e;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: justify;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #1a1a2e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-wrapper svg {
    color: #ffffff;
    width: 28px;
    height: 28px;
}

.feature-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card-description {
    font-size: 1rem;
    color: #555;
}

/* --- JavaScript Animation Trigger Class --- */
.hero-section .is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Responsive Design (Media Queries) --- */

/* For tablets and smaller desktops */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-content, .hero-features-grid {
        max-width: 100%;
    }
    
    .hero-features-grid {
        margin-top: 40px;
    }
}

/* For mobile phones */
@media (max-width: 576px) {
    .hero-section {
        padding: 40px 15px;
        min-height: auto;
        background-attachment: scroll;
    }

    .hero-main-heading {
        font-size: 2.2rem;
    }

    .hero-subheading, .hero-description, .hero-tagline {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon-wrapper {
        margin: 0 auto 20px auto;
    }
}
