/* ==========================================================
   RITHZON TECHNOLOGIES
   Main Stylesheet
========================================================== */

/* ==========================================================
   Google Font
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================
   Reset
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ==========================================================
   Root Variables
========================================================== */

:root{

    --primary:#0057FF;
    --primary-dark:#003FCC;

    --secondary:#0F172A;

    --white:#FFFFFF;

    --light:#F8FAFC;

    --text:#334155;

    --border:#E5E7EB;

}

/* ==========================================================
   Body
========================================================== */

body{

    font-family:'Poppins',sans-serif;

    background:var(--white);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

}

/* ==========================================================
   Images
========================================================== */

img{

    max-width:100%;

    height:auto;

}

/* ==========================================================
   Links
========================================================== */

a{

    text-decoration:none;

    transition:.3s;

}

/* ==========================================================
   Headings
========================================================== */

h1,h2,h3,h4,h5,h6{

    color:var(--secondary);

    font-weight:700;

    margin-bottom:15px;

}

h1{

    font-size:56px;

}

h2{

    font-size:42px;

}

h3{

    font-size:30px;

}

p{

    font-size:16px;

    color:#64748B;

    margin-bottom:20px;

}

/* ==========================================================
   Sections
========================================================== */

section{

    padding:100px 0;

}

/* ==========================================================
   Buttons
========================================================== */

.btn-primary-custom{

    background:var(--primary);

    color:var(--white);

    padding:14px 34px;

    border-radius:8px;

    display:inline-block;

    font-weight:600;

    transition:.3s;

}

.btn-primary-custom:hover{

    background:var(--primary-dark);

    color:var(--white);

}

.btn-outline-custom{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:14px 34px;

    border-radius:8px;

    display:inline-block;

    font-weight:600;

    transition:.3s;

}

.btn-outline-custom:hover{

    background:var(--primary);

    color:var(--white);

}

/* ==========================================================
   Section Title
========================================================== */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

}

/* ==========================================================
   Cards
========================================================== */

.card-custom{

    background:#fff;

    border:1px solid var(--border);

    border-radius:16px;

    padding:30px;

    transition:.3s;

}

.card-custom:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

/* ==========================================================
   Footer Space
========================================================== */

footer{

    margin-top:0;

}
/* ==========================================================
   Why Choose Us
========================================================== */

.why-section{

    background:#F8FAFC;

}

.why-card{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:16px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    border-color:#0057FF;

}

.why-card i{

    font-size:48px;

    color:#0057FF;

    margin-bottom:20px;

    display:block;

}

.why-card h4{

    margin-bottom:15px;

    font-size:22px;

}

.why-card p{

    color:#64748B;

    font-size:15px;

    line-height:1.8;

}

/* ==========================================================
   Technologies
========================================================== */

.technology-section{

    background:#FFFFFF;

}

.tech-card{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.tech-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.tech-card i{

    font-size:60px;

    color:var(--primary);

    display:block;

    margin-bottom:20px;

}

.tech-card h5{

    font-size:22px;

    font-weight:600;

    color:var(--secondary);

    margin-bottom:0;

}

/*=========================================================
PRODUCT CARD
=========================================================*/

.product-card{
    background:#ffffff;
    border-radius:20px;
    padding:35px 25px;
    height:100%;
    transition:all .35s ease;
    border:1px solid #edf2f7;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.product-card:hover{

    transform:translateY(-10px);

    border-color:#0d6efd;

    box-shadow:0 20px 45px rgba(13,110,253,.15);

}

.product-icon{

    width:75px;

    height:75px;

    background:#eef5ff;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.product-icon i{

    font-size:36px;

    color:#0d6efd;

}

.product-card h4{

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

}

.product-card p{

    color:#6c757d;

    line-height:1.8;

}

/*=========================================================
PRODUCTS TITLE
=========================================================*/

.products-section{

    background:linear-gradient(180deg,#F7FAFF 0%,#FFFFFF 100%);

    padding:100px 0;

}

.product-title{

    margin-bottom:70px;

    text-align:center;
    

}.product-badge{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 30px;

    background:#0057FF;

    color:#FFFFFF !important;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    border-radius:50px;

    box-shadow:0 15px 35px rgba(0,87,255,.25);

}

.product-title h2{

    max-width:780px;

    margin:0 auto 30px;

    font-size:64px;

    font-weight:800;

    line-height:1.1;

    color:#0F172A;

}

.product-title h2 span{

    color:#0057FF;

}

.product-title p{

    max-width:750px;

    margin:auto;

    color:#64748B;

    font-size:18px;

    line-height:1.9;

}
/*=========================================================
SERVICES TITLE
=========================================================*/

.services-section{

    background:#FFFFFF;

    padding:100px 0;

}

.service-title{

    text-align:center;

    margin-bottom:70px;

}

.service-badge{

    display:inline-block;

    background:#0057FF;

    color:#FFFFFF;

    padding:10px 22px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.service-title h2{

    font-size:52px;

    font-weight:800;

    color:#0F172A;

}

.service-title h2 span{

    color:#0057FF;

}

.service-title p{

    max-width:700px;

    margin:auto;

    color:#64748B;

    font-size:18px;

    line-height:1.8;

}/* ==========================================================
   WHY CHOOSE RITHZON
========================================================== */

.why-section{
    background:#F8FAFC;
    padding:100px 0;
}

.why-title{
    text-align:center;
    margin-bottom:70px;
}

.why-badge{
    display:inline-block;
    background:#0057FF;
    color:#FFFFFF;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.why-title h2{
    font-size:52px;
    font-weight:800;
    color:#0F172A;
    margin-bottom:20px;
}

.why-title h2 span{
    color:#0057FF;
}

.why-title p{
    max-width:750px;
    margin:auto;
    color:#64748B;
    font-size:18px;
    line-height:1.8;
}

/* ===============================
   Why Cards
================================ */

.why-card{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:all .35s ease;

    position:relative;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#0057FF;

    transform:scaleX(0);

    transition:.35s;

}

.why-card:hover::before{

    transform:scaleX(1);

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#0057FF;

    box-shadow:0 20px 50px rgba(0,87,255,.15);

}

.why-card i{

    width:80px;

    height:80px;

    background:#EEF5FF;

    color:#0057FF;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    margin:0 auto 25px;

    transition:.35s;

}

.why-card:hover i{

    background:#0057FF;

    color:#FFFFFF;

    transform:rotate(-8deg) scale(1.08);

}

.why-card h4{

    font-size:26px;

    font-weight:700;

    margin-bottom:15px;

    color:#0F172A;

}

.why-card p{

    font-size:16px;

    color:#64748B;

    line-height:1.8;

    margin-bottom:0;

}
/* ==========================================================
   TECHNOLOGIES TITLE
========================================================== */

.technology-section{

    background:#F8FAFC;

    padding:100px 0;

}

.tech-title{

    text-align:center;

    margin-bottom:70px;

}

.tech-badge{

    display:inline-block;

    background:#0057FF;

    color:#FFFFFF;

    padding:10px 22px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

    text-transform:uppercase;

}

.tech-title h2{

    font-size:52px;

    font-weight:800;

    color:#0F172A;

    margin-bottom:20px;

    line-height:1.2;

}

.tech-title h2 span{

    color:#0057FF;

}

.tech-title p{

    max-width:760px;

    margin:auto;

    color:#64748B;

    font-size:18px;

    line-height:1.9;

}
/*=========================================================
SERVICES SECTION
=========================================================*/

.services-section{
    padding:100px 0;
    background:#FFFFFF;
}

.section-badge{

    display:inline-block;

    background:#0057FF;

    color:#FFFFFF;

    padding:10px 22px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.service-card{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:20px;

    padding:40px 30px;

    height:100%;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#0057FF;

    box-shadow:0 20px 50px rgba(0,87,255,.15);

}

.service-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:20px;

    background:#EEF5FF;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.service-icon i{

    font-size:42px;

    color:#0057FF;

}

.service-card:hover .service-icon{

    background:#0057FF;

}

.service-card:hover .service-icon i{

    color:#FFFFFF;

}

.service-card h4{

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

    color:#0F172A;

}

.service-card p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:25px;

}

.service-card a{

    color:#0057FF;

    font-weight:600;

    text-decoration:none;

}

.service-card a i{

    margin-left:6px;

    transition:.3s;

}

.service-card:hover a i{

    margin-left:12px;

}

/*=========================================================
INDUSTRIES
=========================================================*/

.industries-section{

    background:#F8FAFC;

    padding:100px 0;

}

.industry-card{

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.industry-card:hover{

    transform:translateY(-10px);

    border-color:#0057FF;

    box-shadow:0 20px 45px rgba(0,87,255,.15);

}

.industry-icon{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    background:#EEF5FF;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.industry-icon i{

    font-size:40px;

    color:#0057FF;

}

.industry-card:hover .industry-icon{

    background:#0057FF;

}

.industry-card:hover .industry-icon i{

    color:#FFFFFF;

}

.industry-card h4{

    font-size:26px;

    font-weight:700;

    margin-bottom:15px;

}

.industry-card p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:0;

}
/*==========================================================
BUSINESS SOLUTIONS
==========================================================*/

.solutions-section{

    background:#f8fbff;

    padding:110px 0;

}

.section-badge{

    display:inline-block;

    background:linear-gradient(135deg,#0057ff,#0d6efd);

    color:#fff;

    padding:12px 35px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

}

.section-title{

    font-size:56px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:20px;

}

.section-title span{

    color:#0057ff;

}

.section-description{

    max-width:760px;

    margin:auto;

    font-size:20px;

    color:#64748b;

    line-height:1.8;

}

/*-------------------------------
Solution Card
--------------------------------*/

.solution-card{

    background:#ffffff;

    border:1px solid #e7edf5;

    border-radius:24px;

    padding:40px 35px;

    height:100%;

    transition:.35s;

    text-align:left;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.solution-card:hover{

    transform:translateY(-12px);

    border-color:#0057ff;

    box-shadow:0 25px 50px rgba(0,87,255,.15);

}

/*-------------------------------
Icon
--------------------------------*/

.solution-icon{

    width:82px;

    height:82px;

    border-radius:22px;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

    transition:.35s;

}

.solution-card:hover .solution-icon{

    background:#0057ff;

}

.solution-icon i{

    font-size:42px;

    color:#0057ff;

    transition:.35s;

}

.solution-card:hover .solution-icon i{

    color:#ffffff;

    transform:rotate(-8deg);

}

/*-------------------------------
Title
--------------------------------*/

.solution-card h4{

    font-size:31px;

    font-weight:700;

    margin-bottom:18px;

    color:#0f172a;

    transition:.35s;

}

.solution-card:hover h4{

    color:#0057ff;

}

/*-------------------------------
Description
--------------------------------*/

.solution-card p{

    color:#64748b;

    line-height:1.9;

    font-size:17px;

    margin-bottom:30px;

}

/*-------------------------------
Button
--------------------------------*/

.solution-link{

    color:#0057ff;

    font-weight:700;

    text-decoration:none;

    display:inline-flex;

    align-items:center;

    gap:10px;

    transition:.35s;

}

.solution-link:hover{

    gap:18px;

    color:#003fcc;

}

/*==========================================================
Responsive
==========================================================*/

@media(max-width:992px){

    .section-title{

        font-size:42px;

    }

}

@media(max-width:768px){

    .section-title{

        font-size:34px;

    }

    .section-description{

        font-size:17px;

    }

    .solution-card{

        text-align:center;

    }

    .solution-icon{

        margin:auto auto 25px;

    }

}

/*=========================================================
CONTACT SECTION
=========================================================*/

.contact-section{

    background:#f8fbff;

}

.contact-info-card,
.contact-form-card{

    background:#ffffff;

    border-radius:22px;

    padding:45px;

    box-shadow:0 15px 45px rgba(0,0,0,.06);

    height:100%;

}

.info-box{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:35px;

}

.info-box:last-child{

    margin-bottom:0;

}

.info-icon{

    width:65px;

    height:65px;

    background:#edf4ff;

    color:#0d6efd;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

    transition:.35s;

}

.info-box:hover .info-icon{

    background:#0d6efd;

    color:#ffffff;

    transform:rotate(-8deg);

}

.info-box h5{

    font-size:22px;

    margin-bottom:8px;

    font-weight:700;

}

.info-box p{

    margin:0;

    color:#6b7280;

    line-height:1.8;

}

.contact-form-card .form-control{

    height:58px;

    border-radius:12px;

    border:1px solid #dbe3ef;

    box-shadow:none;

    padding-left:18px;

    font-size:16px;

}

.contact-form-card textarea.form-control{

    height:180px;

    resize:none;

    padding-top:15px;

}

.contact-form-card .form-control:focus{

    border-color:#0d6efd;

    box-shadow:0 0 0 4px rgba(13,110,253,.12);

}

.contact-form-card button{

    border-radius:12px;

    height:58px;

    width:100%;

    font-size:18px;

    font-weight:600;

    transition:.35s;

}

.contact-form-card button:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(13,110,253,.25);

}
/*=========================================================
ABOUT SECTION
=========================================================*/

.about-section{

    padding:110px 0;

    background:#ffffff;

}

.about-image{

    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.about-section h2{

    font-size:48px;

    font-weight:700;

    line-height:1.3;

}

.about-section p{

    color:#64748b;

    line-height:1.9;

    font-size:17px;

}

.about-counter{

    background:#f8fbff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:25px;

    text-align:center;

    transition:.35s;

}

.about-counter:hover{

    transform:translateY(-8px);

    border-color:#0057ff;

    box-shadow:0 15px 40px rgba(0,87,255,.12);

}

.about-counter h3{

    font-size:34px;

    color:#0057ff;

    margin-bottom:8px;

    font-weight:700;

}

.about-counter span{

    color:#64748b;

    font-size:15px;

}

.about-box{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:28px;

    height:100%;

    transition:.35s;

}

.about-box:hover{

    transform:translateY(-8px);

    border-color:#0057ff;

    box-shadow:0 15px 40px rgba(0,87,255,.12);

}

.about-box i{

    font-size:34px;

    color:#0057ff;

    margin-bottom:18px;

    display:block;

}

.about-box h5{

    font-size:22px;

    font-weight:700;

    margin-bottom:12px;

}

.about-box p{

    margin-bottom:0;

}