* {
    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;
}

/* Banner Section */

.top-section {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('./images/IMG_2406.jpg');
    background-size: cover;
    background-position: top;
    padding: 20px 20px 0px 20px;
    position: relative;
}

.top-section::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%);
    mix-blend-mode: multiply;
    z-index: 2;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
    z-index: 5;
    position: relative;
}

.top-text {
    max-width: 50%;
}

.top-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.top-text p {
    font-size: 18px;
    margin: 0 0 40px 0;
}

.top-image {
    max-width: 40%;
    display: flex;
}

.top-image img {
    width: 100%;
    border-radius: 10px;
}

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

    .top-text {
        max-width: 100%;
    }

    .top-image {
        max-width: 70%;
        margin-top: 0px;
    }
}

/* Services Section */

.services-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.services-header {
    text-align: left;
    margin-bottom: 40px;
}

.services-title {
    font-size: 36px;
    font-weight: bold;
    color: #171263;
    text-align: center;
}

.services-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    text-align: center;
    margin: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

.service-icon {
    font-size: 36px;
    color: #0073e6;
}

.service-icon img{
    width: 50px;
    height: auto;
}

.service-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0;
}

.service-content p {
    font-size: 14px;
    color: #666;
}

.read-more {
    color: #0073e6;
    font-weight: bold;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

.service-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 48px;
    color: #d2d2d2;
    font-weight: bold;
}

.service-banner {
    grid-column: span 2;
    background: linear-gradient(to right, #0073e6, #002e7d);
    color: #ffffff;
    border-radius: 8px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.service-banner h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
}

.service-banner h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.banner-contact {
    font-size: 18px;
}

.phone-number {
    font-weight: bold;
    font-size: 24px;
    display: block;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-banner {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-banner {
        grid-column: span 1;
    }
}

/* Toggle Section */

.toggle-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.approach-header {
    text-align: center;
    margin-bottom: 30px;
}

.approach-title {
    font-size: 32px;
    color: #171263;
}

.toggle-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.tab img {
    width: 45px;
    height: 45px;
}

.tab span {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    color: #666;
}

.tab:hover, .tab.active {
    background: #f0f0f0;
}

.toggle-content {
    display: none;
    text-align: left;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.toggle-content.active {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.content-image{
    margin: auto;
    display: block;
}

.content-image img {
    max-width: 400px;
    margin-right: 40px;
    margin: auto;
    display: block;
    border-radius: 10px;
}

.manufacture-img{
    max-width: 100% !important;
    width: 100%;
}

.eco-friendly-img{
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 10px !important;
}

.content-description {
    width: 100%;
}

.content-description h3 {
    font-size: 24px;
    color: #171263;
    margin: 10px 0px;
}

.content-description p {
    font-size: 16px;
    color: #666;
    margin: 0px 0px 10px 0px;
    text-align: justify;
}

.learn-more {
    padding: 10px 20px;
    background: #171263;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.learn-more:hover {
    background: #4a53c2;
}

.key-features-big-box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.big-key-feature-box{
    width: 47%;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.big-key-feature-box img{
    width: 115px;
}

.key-features-box p{
    margin: 5px 0px;
}

.content-description ul{
    padding-left: 15px;
    margin: 0px 0px 10px 0px;
}

.content-description ul li{
    text-align: justify;
}

.manufacture-img-1{
    width: 600px;
    height: auto;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}

.manufacture-img-2{
    width: 400px;
    height: auto;
    display: block;
    margin: auto;
    margin-bottom: 10px;
}

.benefits-h2{
    text-align: left;
    margin: 25px 0px 10px 0px;
    color: #171263;
}

.benefits-content-big-box{
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.benefits-content-box{
    width: 49%;
    background-color: #F8F8F8;
    padding: 20px;
    border-radius: 8px;
}

.benefits-content-box p{
    margin: 5px 0px !important;
}

.advantages-h3{
    font-size: 35px;
    text-align: center;
}
/* Application Content */

.applications-content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background-color: #8eb3e3;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px #0000001a;
}

.applications-content-section {
    background-color: #f2f2f2;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.applications-content-section h2 {
    font-size: 1rem;
    color: #0a1034;
    background-color: #1d294b;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
}

.applications-content-section p {
    background-color: #b3b3c2;
    padding: 5px 10px;
    border-radius: 5px;
    color: #333;
    margin: 0;
    font-size: 0.8rem;
}

.applications-content-icon {
    height: 90px;
}

/* Advantages Content CSS */

.advantages-content-bigger-box{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 10px auto;
}

.advantages-content-box{
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #F8F8F8;
    padding: 10px;
    border-radius: 8px;
}

.advantages-content-box img{
   max-width: 500px;
   border-radius: 5px;
}

.advantages-content-box-2{
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    background-color: #F8F8F8;
    padding: 10px;
    border-radius: 8px;
}

.tech-specs-img{
    max-width: 500px;
    border: 2px solid black;
}

.advantages-inner-content-box-2{
    display: flex;
    align-items: center;
    gap: 40px;
}

.advantages-inner-content-box p{
    margin: 5px 0px;
}

/* Eco Friendly Box */

.ecofriendly-content-box-container {
    text-align: center;
    color: white;
    padding: 30px;
    background-color: #171263;
    border-radius: 10px;
    margin: 10px auto;
}

.ecofriendly-content-box-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background-size: contain;
}

.ecofriendly-content-box-earth-icon {
    background: url('./images/green-earth.png') no-repeat center;
    background-size: contain;
}

.ecofriendly-content-box-text {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.ecofriendly-content-box-text .icon {
    width: 40px;
    height: 40px;
    background-size: contain;
}

.ecofriendly-content-box-50years-icon {
    background: url('./images/eco-icon-1.png') no-repeat center;
}

.ecofriendly-content-box-recyclable-icon {
    background: url('./images/eco-icon-2.png') no-repeat center;
}

.ecofriendly-content-box-corrosion-icon {
    background: url('./images/eco-icon-3.png') no-repeat center;
}

.ecofriendly-content-box-label {
    font-size: 1.2rem;
}

.ecofriendly-content-box-value {
    font-size: 3rem;
    font-weight: bold;
}

.ecofriendly-content-box-description {
    margin-top: 20px;
    font-size: 1rem;
    max-width: 400px;
}

/* Table CSS */

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-top: 10px;
}

.comparison-table th, .comparison-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.comparison-table th {
    background-color: #1e3d7b;
    color: #ffffff;
    text-transform: uppercase;
}

.comparison-table td {
    background-color: #f9f9f9;
    color: #333;
}

.comparison-table tbody tr:nth-child(even) td {
    background-color: #eceff7;
}

.comparison-table tbody tr:hover td {
    background-color: #dae3f8;
}

/* 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) {
    /* Footer */
    .footer-brand{
        width: 45%;
    }
}

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

    .advantages-content-box img{
        margin: auto;
        max-width: 450px;
    }
    .tech-specs-img{
        max-width: 440px;
    }
}

@media (max-width: 1022px) {
    nav {
        display: none;
    }
    .advantages-content-box img{
        margin: auto;
        max-width: 350px;
    }
    .tech-specs-img{
        max-width: 350px;
    }
}

@media (max-width: 840px) {
    .advantages-inner-content-box-2{
        flex-direction: column;
        gap: 10px;
    }
}

@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;
    }

    /* Banner Section */

    .banner-section{
        height: 160px;
    }

    .banner-section h2{
        font-size: 25px;
        text-align: center;
    }
    .top-text h1{
        font-size: 25px;
        text-align: center;
    }
    .top-text p{
        font-size: 14px;
        margin: 0 0 20px 0;
    }

    /* Toggle Section */
    .toggle-section{
        padding: 20px 10px;
    }
    .toggle-content{
        padding: 10px;
    }
    .toggle-tabs{
        overflow-x: scroll;
        margin-bottom: 15px;
    }
    .content-image img{
        max-width: auto;
        width: 100%;
    }
    .tab img {
        width: 35px;
        height: 35px;
    }
    .tab span{
        white-space: nowrap;
        font-size: 14px;
        margin-top: 5px;
    }
    .content-description h3 {
        font-size: 20px;
        margin-top: 5px;
        text-align: center;
    }
    .content-description p{
        font-size: 14px;
        margin: 10px 0;
    }
    .key-features-box p{
        text-align: left;
    }
    .content-description p strong{
        font-size: 16px;
    }
    .content-description ul{
        padding-left: 15px;
    }
    .content-description ul li{
        font-size: 14px;
        text-align: left;
    }
    .approach-header{
        margin-bottom: 20px;
    }
    .big-key-feature-box{
        width: 100%;
    }
    .big-key-feature-box img{
        width: 100px;
    }
    .approach-title{
        font-size: 25px;
    }
    .manufacture-img-1{
        width: 95%;
        margin-bottom: 20px;
    }
    .manufacture-img-2{
        width: 75%;
        margin-bottom: 10px;
    }
    .benefits-content-box{
        width: 100%;
    }
    .benefits-content-box p{
        text-align: left;
    }
    .benefits-h2{
        font-size: 20px;
        margin: 10px 0px 10px 0px;
    }
    .applications-content-container {
        grid-template-columns: 1fr;
    }
    .applications-content-section p{
        margin: 0px;
        text-align: center;
    }
    /* Eco Friendly Section */
    .ecofriendly-content-box-description{
        width: 180px;
    }
    /* Table Section */
    .comparison-table{
        overflow-x: scroll;
    }
    .comparison-table th, .comparison-table td {
        padding: 5px 10px;
        border: 1px solid #ddd;
        font-size: 14px;
    }
    .comparison-table th{
        white-space: nowrap;
    }
    /* Services Section */
    .services-section{
        padding: 10px;
    }
    .services-title{
        font-size: 25px;
    }
    .services-description{
        font-size: 14px;
    }
    .services-header{
        margin-bottom: 20px;
    }
    .service-card{
        padding: 10px;
    }
    .service-number{
        top: 5px;
        font-size: 40px;
    }
    .service-icon{
        font-size: 30px;
    }
    .service-content h3{
        margin: 5px 0;
        font-size: 18px;
    }
    .service-banner{
        padding: 10px;
    }
    .service-banner h3{
        font-size: 18px;
    }
    .service-banner h2{
        font-size: 22px;
        margin: 0 0 10px 0;
    }
    .banner-contact{
        font-size: 16px;
    }
    .phone-number{
        font-size: 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: 625px) {
    .advantages-content-box{
        flex-direction: column;
        align-items: flex-start;
    }
    .advantages-content-box img{
        margin: auto;
        max-width: auto;
        width: 100%;
    }
    .tech-specs-img{
        width: 100%;
    }
    .ecofriendly-content-box-value{
        font-size: 2.2rem;
    }
}

/* 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;
    }
}