* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    color: #333;
}

/* Whatsapp Button */

.whatsapp-btn{
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 10000;
}

.whatsapp-btn img{
    width: 70px;
    height: auto;
}

@media (max-width: 600px) {
    .whatsapp-btn img{
        width: 60px;
        height: auto;
    }
}

/* Top Bar Section */

.top-bar-section{
    width: 100%;
    background-color: #2C2C2C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 70px;
}

.top-bar-section a{
    color: white;
    height: auto;
    text-decoration: none;
}

.top-bar-social-icons a{
    height: 20px;
}

.top-bar-content-section{
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-content-section p{
    font-size: 16px;
    /* font-weight: 600; */
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-social-icons{
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-social-icons i{
    font-size: 20px;
}

/* Navbar Section */

header {
    background-color: #171263;
    padding: 20px 0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 70px;
    margin: 0 auto;
}

.logo {
    width: auto;
    display: flex;
    align-items: center;
    color: #fff;
}

.logo img {
    width: 135px;
}

nav{
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

.cta {
    width: auto;
}

.quote-btn {
    background-color: #fff;
    color: #171263;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

/* Hero Section CSS */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 100px;
    background-color: #eef2ff;
    margin: 0 auto;
    /* background-image: url('https://themejunction.net/html/pipex/demo/assets/images/shapes/hero-shapes.svg'); */
    background-image: url(./images/new_img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1000;
}

.hero::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    /* background: -webkit-gradient(linear, left top, right top, from(#0d57d7), to(#4d8eff));
    background: linear-gradient(90deg, #0d57d7 0%, #4d8eff 100%); */
    background: rgb(81, 81, 81);
    mix-blend-mode: multiply;
    z-index: -1;
}

.hero-content {
    max-width: 700px;
}

.hero-content h2 {
    color: #febe58;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 18px;
}

.hero-content h1 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 10px;
    color: white;
}

.hero-content h3{
    font-size: 45px;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #ffffff;
    /* text-shadow: 2px 0 #febe58, -2px 0 #febe58, 0 2px #febe58, 0 -2px #febe58,
    1px 1px #febe58, -1px -1px #febe58, 1px -1px #febe58, -1px 1px #febe58; */
}

.hero-content p {
    margin-bottom: 35px;
    line-height: 1.2;
    color: white;
}

.cta-btn {
    background-color: #febe58;
    color: #171263;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    width: 410px;
    height: 410px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 5px solid #171263;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 20px;
    }
}

/* About Section */

.about-section {
    padding: 100px 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url('https://themejunction.net/html/pipex/demo/assets/images/shapes/about-1.svg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 180px;
    background-color: #f8f8f8;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.about-image-container {
    width: 45%;
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding: 10px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    border: 4px solid #171263;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.content-container {
    width: 50%;
}

.section-title {
    color: #febe58;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.content-container h1 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: bold;
    margin-bottom: 10px;
}

.content-container p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.service-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    background-color: #eef2ff;
    padding: 20px 35px;
    border-radius: 15px;
    border-left: 5px solid #171263;
}

.service-list li {
    width: 49%;
    font-size: 18px;
    color: black;
    font-weight: 600;
}

.service-list li::marker {
    color: #171263;
  }

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #171263;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.read-more-btn:hover {
    background-color: #271f9f;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .content-container, .about-image-container {
        width: 100%;
    }
}

/* Best Approach Section */

.best-approach-section {
    padding: 60px;
    background-color: #ffffff;
    background-image: url(https://themejunction.net/html/pipex/demo/assets/images/shapes/approach-1.svg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 170px;
}

.best-approach-container {
    margin: 0 auto;
    text-align: center;
    padding: 0px 100px;
}

.best-approach-header {
    margin-bottom: 30px;
}

.best-approach-title {
    color: #febe58;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}

.best-approach-heading {
    font-size: 36px;
    font-weight: bold;
    color: #171263;
    text-align: left;
}

.best-approach-text {
    font-size: 18px;
    color: #555555;
    margin-bottom: 20px;
    text-align: justify;
}

.best-approach-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
}

.best-approach-image {
    position: relative;
    width: 40%;
}

.best-approach-image img {
    width: 600px;
    border-radius: 10px;
}

/* Slider container */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.slides {
    display: flex;
    width: 300%; /* Adjust based on the number of slides */
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

.slide img {
    width: auto;
    height: 400px;
    display: block;
    object-fit: cover;
}

/* Manual buttons styling */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.next {
    right: 10px;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 10px;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


.best-approach-happy-client {
    position: absolute;
    bottom: 10px;
    left: -70px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #f0f5ff;
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.best-approach-happy-client-icon img {
    width: 35px;
}

.best-approach-happy-client-text h2 {
    font-size: 24px;
    color: #0056D2;
    margin: 0;
}

.best-approach-happy-client-text p {
    margin: 0;
    color: #0056D2;
}

.best-approach-benefits {
    width: 59%;
    text-align: left;
    padding-left: 50px;
}

.best-approach-benefits ul {
    list-style-type: none;
    padding: 0;
}

.best-approach-benefits li {
    font-size: 18px;
    color: #333333;
    padding: 10px 0;
    font-weight: bold;
}

.best-approach-benefits li i{
  color: #febe58;
}

.best-approach-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.best-approach-info-card {
    background-color: #f0f5ff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
}

.best-approach-info-icon img {
    width: 70px;
    margin-bottom: 10px;
}

.best-approach-info-title {
    font-size: 24px;
    font-weight: bold;
    color: #0056D2;
    margin-bottom: 10px;
}

.best-approach-info-card p {
    font-size: 16px;
    color: #555555;
}

/* Footer Section */

.footer-section {
    background-color: #2C2C2C;
    color: #ffffff;
    padding: 60px 20px;
    background-image: url("./images/pvc-machine.png");
    background-size: cover;
    background-position: center;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-item {
    text-align: center;
    flex: 1;
    color: white;
    text-decoration: none;
}

.footer-item .footer-icon i {
    font-size: 40px;
    margin-bottom: 5px;
}

.footer-item p {
    font-size: 16px;
    margin: 5px 0;
}

.footer-item h3 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 0px 50px;
}

.footer-brand {
    width: auto;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    width: 60%;
    margin-bottom: 10px;
}

.footer-socials a {
    margin-right: 10px;
    font-size: 25px;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo-section{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0px;
}

.footer-logo-section img{
    width: auto;
    height: 60px;
    border-radius: 5px;
}

.footer-links {
    flex: 1;
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
}

.footer-below-box{
    width: 100%;
    padding: 10px;
    background-color: #0056D2;
}

.footer-below-box h3{
    width: 100%;
    text-align: center;
    color: white;
}

/* Responsive Code */

@media (max-width: 1200px) {
    .container{
        padding: 0px 10px;
    }
    .image-wrapper{
        width: 300px;
        height: 300px;
    }
    .hero-content h2{
        font-size: 16px;
    }
    .hero-content h1{
        font-size: 36px;
    }
    .hero-content p{
        font-size: 16px;
    }

    /* About Section */
    .about-section{
        padding: 80px 50px;
    }

    .service-list li{
        width: 100%;
    }
    .about-container{
        gap: 50px;
    }

    /* Best Approach Section */
    .best-approach-image img{
        width: 400px;
    }
    .best-approach-happy-client-icon img{
        width: 30px;
    }
    .best-approach-container{
        padding: 0px 20px;
    }
    .best-approach-happy-client{
        left: -25px;
    }

    /* Footer */
    .footer-brand{
        width: 45%;
    }
}

@media (max-width: 1175px) {
    nav ul{
        gap: 15px;
    }
    nav ul li{
        font-size: 15px;
    }
}

@media (max-width: 1022px) {
    nav {
        display: none;
    }
}

@media (max-width: 769px) {
    /* Top Section */
    .top-bar-section{
        flex-direction: column;
        padding: 5px 10px;
        gap: 10px;
    }
    .top-bar-content-section{
        flex-direction: column;
        gap: 2px;
    }

    /* Navbar Section */
    header {
        padding: 10px 15px;
    }

    nav{
        display: none;
    }
    .container{
        padding: 0px;
    }
    .logo img {
        width: 110px;
    }
    .quote-btn {
        background-color: #fff;
        color: #171263;
        padding: 5px 10px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        font-size: 14px;
    }

    /* Hero Section */
    .hero{
        padding: 50px 10px 20px 10px;
    }
    .hero-content h1{
        font-size: 22px;
    }
    .hero-content h2{
        font-size: 15px;
    }
    .hero-content h3{
        font-size: 30px;
    }
    .hero-content p{
        font-size: 16px;
    }
    .image-wrapper {
        width: 250px;
        height: 250px;
    }
    .cta-btn{
        padding: 8px 15px;
    }

    /* About Section */

    .about-section{
        padding: 50px 10px 20px 10px;
    }
    .about-container{
        gap: 10px;
    }
    .about-image-wrapper img{
        width: 60%;
    }
    .section-title{
        font-style: 16px;
    }
    .content-container h1{
        font-size: 32px;
    }
    .content-container p{
        font-size: 14px;
    }
    .service-list li{
        width: 100%;
        text-align: left;
    }
    .service-list ul{
        margin-bottom: 15px;
    }

    /* Best Approach Section */
    .best-approach-section{
        padding: 20px 10px;
        background-size: 120px;
    }
    .best-approach-container {
        padding: 0px 10px;
    }
    .best-approach-title{
        font-size: 16px;
    }
    .best-approach-heading{
        font-size: 32px;
    }
    .best-approach-header{
        margin-bottom: 20px;
    }
    /* .best-approach-image img{
        width: 100%;
    } */
    .best-approach-main{
        flex-direction: column;
        margin-bottom: 20px;
    }
    .best-approach-happy-client-icon img{
        width: 20px;
    }
    .best-approach-info{
        flex-direction: column;
    }
    .best-approach-happy-client{
        left: -10px;
    }
    .best-approach-happy-client-text h2{
        font-size: 18px;
        line-height: 1.1;
    }
    .best-approach-happy-client-text p{
        font-size: 14px;
    }
    .best-approach-benefits{
        padding-left: 0px;
    }
    .best-approach-text{
        margin-bottom: 10px;
        font-size: 14px;
    }
    .best-approach-benefits li{
        padding: 5px 0px;
        font-size: 16px;
    }
    .best-approach-info-icon img{
        width: 50px;
        margin-bottom: 0px;
    }
    .best-approach-info-title{
        font-size: 20px;
        margin-bottom: 5px;
    }

    .best-approach-main{
        gap: 10px;
    }
    .best-approach-image{
        width: 100%;
    }
    .best-approach-benefits{
        width: 100%;
    }
    .slide img {
        height: 350px;
        object-fit: fill;
    }
    .best-approach-image img {
        width: 750px;
    }
    .best-approach-happy-client-icon img {
        width: 20px;
    }
    /* Footer Section */
    .footer-section{
        padding: 20px;
    }
    .footer-top{
        flex-direction: column;
        gap: 15px;
    }
    .footer-middle{
        flex-direction: column;
        padding: 0px 10px;
        justify-content: center;
        gap: 25px;
    }
    .footer-brand{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .footer-links{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .footer-links h3{
        margin-bottom: 10px;
    }
    .footer-item .footer-icon i{
        font-size: 30px;
    }
    .footer-links ul li{
        text-align: center;
    }
    .footer-item p{
        font-size: 14px;
    }
    .footer-item h3{
        font-size: 18px;
    }
    .footer-below-box h3{
        font-size: 14px;
    }
    .footer-brand p{
        width: 100%;
        text-align: center;
    }
    .footer-brand{
        width: auto;
    }
    .footer-logo-section{
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-logo-section img{
        height: 65px;
    }
}

@media (max-width:440px) {
    .slide img {
        height: 220px;
        object-fit: fill;
    }
    .best-approach-image img {
        width: 400px;
    }
    .best-approach-happy-client-icon img {
        width: 20px;
    }
}

@media (max-width:425px) {
    /* About Us Section */
    .about-image-wrapper img{
        width: 100%;
    }
}

/* Sidebar */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    z-index: 2000;
}

.sidenav a {
    padding: 8px 8px 8px 22px;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

.sidebar-logo-img {
    width: 100px;
    margin-top: 5px;
}

.sidebar-open {
    display: none !important;
    color: white;
    font-size: 25px;
    cursor: pointer;
}

@media (max-width:900px) {
    .sidebar-open {
        display: block !important;
    }
}

.sidebar-nav{
    color: white;
    font-size: 25px;
    display: none !important;
    cursor: pointer;
}

@media (max-width:1022px) {
    .sidebar-nav{
        display: block !important;
    }
}