
/* Reset default body and html padding/margin */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    overflow-x: hidden; /* Prevent sideways scroll */
}
 
/* Apply box-sizing border-box globally */
*, *::before, *::after {
    box-sizing: border-box;
}
/* background */
.back-rpeq {
    position: relative;
    padding-top: 60px;
    background-image: url(../images/banner/rpeq.avif);/* Replace with your image URL */
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    width: 100%; /* Full width for responsiveness */
    height: 600px; /* 85% of the viewport height */
    margin-top: 50px;
    display: flex; /* Use flexbox for better control of child positioning */
    align-items: center; /* Vertically centers the text */
    justify-content: flex-start; /* Aligns the  ` text to the left */
    padding-left: 20px; /* Adds some padding for left alignment */
  }
  
  .back-rpeq h1 {
    font-size: 6.8rem;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    /* font-weight: bold;  */
    /* top: 55%; */
  
    /* padding: calc(300px/2) 20px 20px 20px; */
    margin-top: 200px;
    color: white; /* Adjust for readability */
    margin: 0; /* Removes default margin */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Optional: Adds text shadow for better visibility */
  }
  
  @media (max-width: 768px) {
    .back-rpeq h1 {
        font-size: 3.5rem; /* Adjust font size for tablets */
    }
  }
  
  @media (max-width: 480px) {
    .back-rpeq h1 {
        margin-top: 30px;
        /* font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
        font-weight: bold;
        /* text-shadow: 2px 2px 5px rgb(255, 255, 255); */
        font-size: 4rem; 
        /* Further adjustment for very small screens */
    }
  
    .back-rpeq{
        padding-top: 1px;
        margin-top: 5rem;
        /* background-image: url(../images/software/cmms2.png); */
        /* margin-bottom: 30px; */
        /* background-size: contain;  */
        height:180px; /* 85% of the viewport height */
    }
  }
  
  
  
  /* Overlay */
  .back-rpeq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.288);
    z-index: 1;
  }
  
  /* Text Styling */
  .back-rpeq h1,
  .back-rpeq p {
    position: relative;
    z-index: 2; /* Content above overlay */
  }
  

/* General Container Styling */
.rpeq-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
}

.rpeq-container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    /* margin-top: 100px; */
}

.rpeq-content-section ul {
    padding-left: 20px;
    /* Add left padding to create indentation */
    list-style-type: none;
    /* Remove default list bullets */
    text-align: left;
}

.rpeq-content-section li {
    font-size: 1.6rem;
    /* Adjust font size */
    line-height: 1.6;
    /* Set line-height for better readability */
    color: #333;
    /* Dark gray color for text */
    margin-bottom: 15px;
    /* Add space between list items */
}

.rpeq-content-section li strong {
    color: #0066cc;
    /* Blue color for strong elements to highlight key points */
    font-weight: 600;
    /* Bold font for strong text */
}


/* Hero Section Styling */
.rpeq-hero-section {
    position: relative;
    background-image: url('https://source.unsplash.com/1600x900/?high-voltage');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.rpeq-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.rpeq-hero-content {
    position: relative;
    z-index: 2;
}

.rpeq-hero-content h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.rpeq-hero-content p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease;
}

/* Keyframes for Hero Section Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Content Section Styling */
.rpeq-content-section {
    background: #ffffff;
    margin-top: 20px;
    padding: 60px 50px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

/* Make section visible when added class 'visible' */
.rpeq-content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Heading Styling */
.rpeq-content-section h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #222;
    /* text-align: center; */
}

/* Paragraph Styling */
.rpeq-content-section p {
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: justify;
    color: #555;
}

/* Flexbox Container for Image and Text */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Text content section */
.text-content {
    flex: 1;
    max-width: 60%;
}

/* Image content section */
.image-content img {
    max-width: 60%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    /* Ensures the image fits nicely */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .rpeq-hero-content h1 {
        font-size: 3rem;
    }

    .rpeq-hero-content p {
        font-size: 1.2rem;
    }

    /* Adjust layout for mobile: Stacks text and image */
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .text-content,
    .image-content {
        max-width: 100%;
        flex: 1;
    }

    .image-content img {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .rpeq-hero-content h1 {
        font-size: 2.5rem;
    }

    .rpeq-hero-content p {
        font-size: 1rem;
    }

    /* General Container Styling */
    .rpeq-container {
        /* max-width: 1200px; */
        margin: 0 auto;
        margin-top: 20px;
    }
    .rpeq-content-section h2 {
        font-size: 1.8rem;
        /* margin-bottom: 20px; */
        /* font-weight: 600; */
        color: #222;
        /* text-align: center; */
    }
    .rpeq-content-section p {
        font-size: 1.4rem;
        line-height: 1.8;
        text-align: left;
        color: #555;
    }
    .rpeq-content-section h2 {
        font-size: 2.6rem;
        margin-bottom: 20px;
       
        /* text-align: center; */
    }
    
}


/* rpeq-key-container */

.rpeq-point-container {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    background: linear-gradient(to right, #00c6ff, #0072ff);
}

.rpeq-point-title h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
    font-size: 2.4rem;
}

.rpeq-point-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.rpeq-point-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: start;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.rpeq-point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.rpeq-point-card i {
    font-size: 2rem;
    color: #0072ff;
    margin-right: 1rem;
    align-self: flex-start;
}

.rpeq-point-card p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    text-align: justify;
}



@media (max-width: 768px) {
    .rpeq-point-card i {
        font-size: 1.5rem;
    }

    .rpeq-point-card p {
        font-size: 1rem;
    }
}

.rpeq-point-card-animation {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}