/* ==========================
   ROTHE NEW HOME PAGE CSS
========================== */

.rp-container{
    max-width:1320px;
    width:100%;
    margin:auto;
    padding:0 20px;
}

/* HERO */

.rp-home-hero{
    height:650px;
    background:url("../images/Slider-1.webp") center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
}

.rp-overlay{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
}

.rp-home-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:700px;
}

.rp-tagline{
    color:#FAD201;
    font-size:15px;
    letter-spacing:2px;
    font-weight:600;
    display:block;
    margin-bottom:20px;
}

.rp-home-content h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:20px;
    color:#fff;
    font-weight:700;
}

.rp-home-content p{
    font-size:20px;
    line-height:32px;
    margin-bottom:35px;
    color:#fff;
}

.rp-btn-primary{
    display:inline-block;
    padding:14px 32px;
    background:#FAD201;
    color:#000;
    text-decoration:none;
    border-radius:4px;
    font-weight:600;
    margin-left:30px;
    margin-top:450px;
}

.rp-btn-primary:hover{
    background:#21266B;
    color:#fff;
}

.rp-btn-secondary{
    display:inline-block;
    padding:14px 32px;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
}

.rp-btn-secondary:hover{
    background:#fff;
    color:#000;
}


/* ABOUT */

.rp-about-section{
    padding:30px 0;
    background:#fff;
}

.rp-grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.rp-about-img{
    width:100%;
    border-radius:10px;
}

.rp-small-title{
    color:#FAD201;
    font-weight:700;
    letter-spacing:2px;
    display:block;
    margin-bottom:15px;
}

.rp-about-section h2{
    font-size:42px;
    margin-bottom:20px;
    color:#21266B;
}

.rp-about-section p{
    font-size:17px;
    line-height:30px;
    color:#555;
}

.rp-about-list{
    margin-top:25px;
    padding-left:20px;
}

.rp-about-list li{
    margin-bottom:12px;
    font-size:16px;
}

.rp-btn-dark{
    display:inline-block;
    margin-top:25px;
    background:#21266B;
    color:#fff;
    padding:14px 30px;
    border-radius:4px;
    text-decoration:none;
}

.rp-btn-dark:hover{
    background:#FAD201;
    color:#000;
}


/* PRODUCTS */

.rp-products-section{
    padding:30px 0;
    background:#f8f8f8;
}

.rp-section-title{
    text-align:center;
    margin-bottom:60px;
}

.rp-section-title h2{
    font-size:42px;
    color:#21266B;
}

.rp-section-title p{
    color:#666;
    font-size:18px;
}

.rp-product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.rp-product-card{
    background:#fff;
    padding:35px;
    border-radius:10px;
    text-align:center;
    transition:.4s;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.rp-product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 35px rgba(0,0,0,.15);
}

.rp-product-card img{
    width:100%;
    /*max-width:180px;*/
    margin:auto;
    display:block;
    margin-bottom:20px;
}

.rp-product-card h3{
    font-size:22px;
    margin-bottom:15px;
    color:#21266B;
}

.rp-product-card a{
    color:#F4B400;
    text-decoration:none;
    font-weight:600;
}


/* MOBILE */

@media(max-width:991px){

.rp-grid-2{
    grid-template-columns:1fr;
}

.rp-product-grid{
    grid-template-columns:repeat(2,1fr);
}

.rp-home-content h1{
    font-size:42px;
}

}


@media(max-width:768px){

.rp-home-hero{
    height:500px;
}

.rp-home-content h1{
    font-size:32px;
}

.rp-home-content p{
    font-size:16px;
    line-height:26px;
}

.rp-product-grid{
    grid-template-columns:1fr;
}

.rp-about-section h2{
    font-size:30px;
}

.rp-btn-primary,
.rp-btn-secondary{
    display:block;
    width:200px;
    margin-bottom:15px;
}

}


/* =======================
WHY CHOOSE SECTION
======================= */

.rp-why-section{

padding:90px 0;

background:#ffffff;

}

.rp-section-title{

text-align:center;

max-width:800px;

margin:auto;

margin-bottom:60px;

}

.rp-section-title span{

color:#F4B400;

font-weight:700;

letter-spacing:2px;

display:block;

margin-bottom:10px;

}

.rp-section-title h2{

font-size:42px;

color:#21266B;

margin-bottom:20px;

}

.rp-section-title p{

font-size:18px;

color:#666;

line-height:30px;

}

.rp-why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.rp-why-card{

padding:35px;

background:#fff;

border-radius:10px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.3s;

text-align:center;

}

.rp-why-card:hover{

transform:translateY(-8px);

}

.rp-why-card img{

height:110px;

}

.rp-why-card h3{

font-size:22px;

margin-bottom:15px;

color:#21266B;

}

.rp-why-card p{

font-size:15px;

line-height:28px;

color:#666;

}


/* Tablet */

@media(max-width:991px){

.rp-why-grid{

grid-template-columns:repeat(2,1fr);

}

}


/* Mobile */

@media(max-width:767px){

.rp-section-title h2{

font-size:30px;

}

.rp-section-title p{

font-size:16px;

}

.rp-why-grid{

grid-template-columns:1fr;

}

.rp-why-card{

padding:25px;

}

}

/* ===========================
INDUSTRIES SECTION
=========================== */

.rp-industries-section{
    padding:90px 0;
    background:#f8f8f8;
}

.rp-industries-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.rp-industry-card{
    background:#fff;
    padding:35px 20px;
    text-align:center;
    border-radius:10px;
    transition:.3s;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.rp-industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.rp-industry-card img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:18px;
}

.rp-industry-card h3{
    font-size:20px;
    color:#21266B;
    margin:0;
}


/* Tablet */

@media(max-width:991px){

.rp-industries-grid{
    grid-template-columns:repeat(2,1fr);
}

}


/* Mobile */

@media(max-width:767px){

.rp-industries-section{
    padding:60px 0;
}

.rp-industries-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.rp-industry-card{
    padding:25px;
}

.rp-industry-card h3{
    font-size:18px;
}

}


/* CLIENTS */

.rp-clients-section{
    padding:80px 0;
    background:#ffffff;
}

.rp-client-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.rp-client-box{
    background:#fff;
    padding:20px;
    border-radius:8px;
    text-align:center;
    transition:.3s;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.rp-client-box:hover{
    transform:translateY(-5px);
}

.rp-client-box img{
    max-width:150px;
    max-height:70px;
    width:auto;
    height:auto;
}

/* Tablet */

@media(max-width:991px){

.rp-client-grid{
    grid-template-columns:repeat(3,1fr);
}

}

/* Mobile */

@media(max-width:767px){

.rp-clients-section{
    padding:60px 0;
}

.rp-client-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.rp-client-box{
    padding:15px;
}

.rp-client-box img{
    max-width:120px;
}

}


/* CTA */

.rp-cta-section{
    padding:90px 20px;
    background:#21266B;
    text-align:center;
}

.rp-cta-section h2{
    color:#fff;
    font-size:42px;
    margin-bottom:20px;
}

.rp-cta-section p{
    color:#ddd;
    font-size:18px;
    max-width:700px;
    margin:0 auto 35px;
    line-height:30px;
}

.rp-cta-btn{
    display:inline-block;
    padding:15px 40px;
    background:#F4B400;
    color:#000;
    font-weight:600;
    text-decoration:none;
    border-radius:5px;
}

.rp-cta-btn:hover{
    background:#fff;
    color:#21266B;
}

/* Mobile */

@media(max-width:767px){

.rp-cta-section{
    padding:60px 20px;
}

.rp-cta-section h2{
    font-size:30px;
}

.rp-cta-section p{
    font-size:16px;
    line-height:26px;
}

}


/* ===========================================
GLOBAL RESPONSIVE CSS
(Add at the bottom of home-new.css)
=========================================== */


/* Large Tablet */

@media (max-width: 991px){

.rp-container{
    max-width:100%;
    padding:0 25px;
}

.rp-grid-2{
    grid-template-columns:1fr;
    gap:40px;
}

.rp-product-grid,
.rp-why-grid,
.rp-client-grid{
    grid-template-columns:repeat(2,1fr);
}

.rp-home-content{
    max-width:100%;
}

.rp-home-content h1{
    font-size:42px;
}

.rp-home-content p{
    font-size:18px;
    line-height:30px;
}

.rp-section-title h2{
    font-size:34px;
}

.rp-about-section h2{
    font-size:34px;
}

}


/* Mobile */

@media (max-width:767px){

.rp-container{
    padding:0 18px;
}

.rp-home-hero{
    height:420px;
    text-align:center;
}

.rp-home-content{
    max-width:100%;
}

.rp-home-content h1{
    font-size:30px;
    line-height:1.3;
}

.rp-home-content p{
    font-size:16px;
    line-height:26px;
}

.rp-tagline{
    font-size:13px;
}

.rp-btn-primary,
.rp-btn-secondary,
.rp-btn-dark,
.rp-cta-btn{

    display:block;

    width:100%;

    text-align:center;

    margin-bottom:15px;

    margin-right:0;

}

.rp-grid-2{
    grid-template-columns:1fr;
}

.rp-product-grid{
    grid-template-columns:1fr;
}

.rp-why-grid{
    grid-template-columns:1fr;
}

.rp-client-grid{
    grid-template-columns:repeat(2,1fr);
}

.rp-about-section,
.rp-products-section,
.rp-why-section,
.rp-clients-section,
.rp-cta-section{

    padding:60px 0;

}

.rp-about-img{
    margin-bottom:25px;
}

.rp-about-section h2{
    font-size:28px;
}

.rp-section-title h2{
    font-size:28px;
}

.rp-section-title p{
    font-size:15px;
}

.rp-product-card,
.rp-why-card{
    padding:16px;
}

.rp-client-box{
    padding:15px;
}

.rp-client-box img{
    max-width:80%;
}

.rp-cta-section h2{
    font-size:28px;
}

.rp-cta-section p{
    font-size:15px;
    line-height:26px;
}

}


/* Small Mobile */

@media (max-width:480px){

.rp-home-hero{
    height:360px;
}

.rp-home-content h1{
    font-size:24px;
}

.rp-home-content p{
    display:none;
}

.rp-product-grid,
.rp-client-grid,
.rp-why-grid{
    grid-template-columns:1fr;
}

.rp-section-title h2{
    font-size:24px;
}

.rp-about-section h2{
    font-size:24px;
}

}
