* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*==================================
        ROBOTICS HERO
==================================*/

.robotics-hero {

    padding: 120px 0 90px;
    background: #F8FBFF;

}

.robotics-hero-container {

    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

}

.robotics-content {

    flex: 1;

}

.robotics-content span {

    color: #2563EB;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.robotics-content h1 {

    margin: 22px 0;
    font-size: 40px;
    line-height: 1.2;
    color: #111827;

}

.robotics-content h1 span {

    color: #2563EB;

}

.robotics-content p {

    font-size: 20px;
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 40px;

}

.robotics-buttons {

    display: flex;
    gap: 20px;
    margin-bottom: 50px;

}

.primary-btn {

    padding: 16px 34px;
    background: #2563EB;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;

}

.secondary-btn {

    padding: 16px 34px;
    border: 2px solid #2563EB;
    color: #2563EB;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;

}

.robotics-stats {

    display: flex;
    gap: 60px;

}

.robotics-stats h3 {

    font-size: 34px;
    color: #2563EB;
    margin-bottom: 8px;

}

.robotics-stats span {

    color: #64748B;
    font-size: 16px;
    letter-spacing: 0;

}

.robotics-image {

    flex: 1;
    text-align: right;

}

.robotics-image img {

    width: 100%;
    max-width: 620px;
    border-radius: 20px;
}

@media(max-width:992px) {

    .robotics-hero-container {

        width: calc(100% - 40px);
        flex-direction: column;
        text-align: center;

    }

    .robotics-content h1 {

        font-size: 42px;

    }

    .robotics-buttons {

        justify-content: center;
        flex-wrap: wrap;

    }

    .robotics-stats {

        justify-content: center;

    }

    .robotics-image {

        text-align: center;

    }

}

/*==================================
        FILTER BAR
==================================*/

.robotics-filter {

    width: 100%;
    padding: 40px 0;
    background: #ffffff;

}

.filter-container {

    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;

}

.filter-left span {

    font-size: 18px;
    font-weight: 700;
    color: #111827;
    font-family: 'Nunito', sans-serif;

}

.filter-right {

    display: flex;
    gap: 18px;
    flex-wrap: wrap;

}

.filter-right select {

    min-width: 180px;
    height: 50px;

    padding: 0 18px;

    border: 1px solid #D1D5DB;

    border-radius: 10px;

    background: #fff;

    font-size: 16px;

    color: #374151;

    font-family: 'Nunito', sans-serif;

    cursor: pointer;

    transition: .3s;

}

.filter-right select:hover {

    border-color: #2563EB;

}

.filter-right select:focus {

    outline: none;

    border-color: #2563EB;

    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);

}

@media(max-width:992px) {

    .filter-container {

        width: calc(100% - 40px);

        flex-direction: column;
        align-items: flex-start;

    }

    .filter-right {

        width: 100%;

        flex-direction: column;

    }

    .filter-right select {

        width: 100%;

    }

}

/*==================================
        ROBOTICS PRODUCTS
==================================*/

.robotics-products {

    width: 100%;
    padding: 90px 0;
    background: #F8FBFF;

}

.products-container {

    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;

}

.products-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

}

/*==============================*/

.product-card {

    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid #E5E7EB;
    transition: .35s;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);

}

.product-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);

}

/*==============================*/

.product-badge {

    position: absolute;
    top: 18px;
    left: 18px;

    background: #2563EB;
    color: #fff;

    padding: 7px 14px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
    z-index: 2;

}

.product-badge.bestseller {

    background: #F59E0B;

}

.product-badge.new {

    background: #10B981;

}

.product-badge.popular {

    background: #8B5CF6;

}

/*==============================*/

.product-card img {

    width: 100%;
    height: 250px;
    object-fit: contain;
    padding: 25px;
    background: #fff;
    transition: .35s;

}

.product-card:hover img {

    transform: scale(1.05);

}

/*==============================*/

.product-content {

    padding: 25px;

}

.product-content h3 {

    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    font-family: 'Nunito', sans-serif;

}

.product-content p {

    font-size: 16px;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 18px;
    font-family: 'Nunito', sans-serif;

}

/*==============================*/

.product-rating {

    color: #FBBF24;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;

}

.product-rating span {

    color: #64748B;
    font-size: 15px;
    margin-left: 8px;

}

/*==============================*/

.product-price {

    font-size: 30px;
    font-weight: 800;
    color: #2563EB;
    margin-bottom: 25px;
    font-family: 'Nunito', sans-serif;

}

.product-price span {

    margin-left: 10px;
    color: #9CA3AF;
    font-size: 18px;
    text-decoration: line-through;
    font-weight: 600;

}

/*==============================*/

.product-buttons {

    display: flex;
    gap: 12px;

}

.details-btn {

    flex: 1;

    text-align: center;

    padding: 14px 0;

    border: 2px solid #2563EB;

    color: #2563EB;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;

    font-family: 'Nunito', sans-serif;

}

.details-btn:hover {

    background: #2563EB;
    color: #fff;

}

.cart-btn {

    flex: 1;

    text-align: center;

    padding: 14px 0;

    background: #2563EB;

    color: #fff;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;

    font-family: 'Nunito', sans-serif;

}

.cart-btn:hover {

    background: #1D4ED8;

}

/*==============================*/

@media(max-width:1300px) {

    .products-container {

        width: calc(100% - 80px);

    }

    .products-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}

@media(max-width:992px) {

    .products-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .robotics-products {

        padding: 70px 0;

    }

    .products-container {

        width: calc(100% - 40px);

    }

    .products-grid {

        grid-template-columns: 1fr;

    }

    .product-buttons {

        flex-direction: column;

    }

    .details-btn,
    .cart-btn {

        width: 100%;

    }

}

/*==================================
        PAGINATION
==================================*/

.pagination-section {

    padding: 20px 0 100px;
    background: #F8FBFF;

}

.pagination-container {

    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

}

.page-btn {

    width: 48px;
    height: 48px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #E5E7EB;

    border-radius: 12px;

    text-decoration: none;

    background: #fff;

    color: #374151;

    font-weight: 700;

    transition: .3s;

    font-family: 'Nunito', sans-serif;

}

.page-btn:hover {

    background: #2563EB;
    color: #fff;
    border-color: #2563EB;

}

.page-btn.active {

    background: #2563EB;
    color: #fff;
    border-color: #2563EB;

}

.page-btn.disabled {

    pointer-events: none;
    opacity: .45;

}

.dots {

    font-size: 20px;
    color: #6B7280;
    padding: 0 6px;

}

@media(max-width:768px) {

    .pagination-section {

        padding: 10px 0 70px;

    }

    .pagination-container {

        width: calc(100% - 40px);

        gap: 8px;

    }

    .page-btn {

        width: 42px;
        height: 42px;

        font-size: 15px;

    }

}

/*==================================
    WHY CHOOSE ROBOTICS
==================================*/

.robotics-features {

    padding: 100px 0;
    background: #ffffff;

}

.robotics-features-container {

    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;

}

.robotics-features-heading {

    text-align: center;
    margin-bottom: 70px;

}

.robotics-features-heading span {

    color: #2563EB;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.robotics-features-heading h2 {

    margin: 18px 0;
    font-size: 48px;
    font-weight: 800;
    color: #111827;

}

.robotics-features-heading h2 span {

    color: #2563EB;

}

.robotics-features-heading p {

    max-width: 760px;
    margin: auto;
    font-size: 20px;
    color: #64748B;
    line-height: 1.8;

}

.robotics-features-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.feature-card {

    background: #F8FBFF;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: .35s;

}

.feature-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .12);

}

.feature-card img {

    width: 90px;
    margin-bottom: 25px;

}

.feature-card h3 {

    font-size: 24px;
    margin-bottom: 15px;
    color: #111827;
    font-weight: 800;

}

.feature-card p {

    color: #64748B;
    line-height: 1.8;
    font-size: 16px;

}

@media(max-width:992px) {

    .robotics-features-container {

        width: calc(100% - 40px);

    }

    .robotics-features-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .robotics-features {

        padding: 70px 0;
    }

    .robotics-features-heading h2 {
        font-size: 36px;
    }

    .robotics-features-heading p {
        font-size: 16px;
    }

    .robotics-features-grid {
        grid-template-columns: 1fr;
    }
}

/*==================================
        ROBOTICS FAQ
==================================*/

.robotics-faq{

    padding:100px 0;
    background:#F8FBFF;

}

.robotics-faq-container{

    width:calc(100% - 240px);
    max-width:1100px;
    margin:auto;

}

.robotics-faq-heading{

    text-align:center;
    margin-bottom:70px;

}

.robotics-faq-heading span{

    color:#2563EB;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

}

.robotics-faq-heading h2{

    margin:18px 0;
    font-size:48px;
    font-weight:800;
    color:#111827;

}

.robotics-faq-heading h2 span{

    color:#2563EB;

}

.robotics-faq-heading p{

    color:#64748B;
    font-size:20px;

}

.robotics-faq-item{

    background:#fff;
    border-radius:18px;
    margin-bottom:20px;
    overflow:hidden;
    border:1px solid #E5E7EB;

}

.robotics-faq-question{

    width:100%;
    background:none;
    border:none;
    padding:28px 35px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    cursor:pointer;

    font-size:20px;
    font-weight:700;
    color:#111827;

}

.robotics-faq-question i{

    color:#2563EB;
    transition:.3s;

}

.robotics-faq-answer{

    display:none;
    padding:0 35px 30px;
    color:#64748B;
    line-height:1.8;

}

.robotics-faq-item.active .robotics-faq-answer{

    display:block;

}

.robotics-faq-item.active .robotics-faq-question i{

    transform:rotate(45deg);

}

@media(max-width:768px){

    .robotics-faq{

        padding:70px 0;

    }

    .robotics-faq-container{

        width:calc(100% - 40px);

    }

    .robotics-faq-heading h2{

        font-size:36px;

    }

    .robotics-faq-question{

        font-size:17px;
        padding:22px;

    }

    .robotics-faq-answer{

        padding:0 22px 22px;

    }

}

/*==================================
        ROBOTICS CTA
==================================*/

.robotics-cta{

    width:100%;
    padding:100px 0;
    background:linear-gradient(135deg,#2563EB,#1D4ED8);

}

.robotics-cta-container{

    width:calc(100% - 240px);
    max-width:900px;
    margin:auto;
    text-align:center;

}

.robotics-cta-container span{

    display:inline-block;

    padding:10px 22px;

    background:rgba(255,255,255,.15);

    color:#fff;

    border-radius:30px;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.robotics-cta-container h2{

    margin:28px 0 22px;

    font-size:52px;

    font-weight:800;

    color:#fff;

    line-height:1.25;

}

.robotics-cta-container p{

    max-width:720px;

    margin:auto auto 45px;

    color:#DBEAFE;

    font-size:20px;

    line-height:1.8;

}

.robotics-cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-shop-btn{

    padding:18px 38px;

    background:#fff;

    color:#2563EB;

    text-decoration:none;

    border-radius:10px;

    font-weight:700;

    transition:.3s;

}

.cta-shop-btn:hover{

    transform:translateY(-3px);

}

.cta-contact-btn{

    padding:18px 38px;

    border:2px solid #fff;

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    font-weight:700;

    transition:.3s;

}

.cta-contact-btn:hover{

    background:#fff;

    color:#2563EB;

}

@media(max-width:992px){

    .robotics-cta-container{

        width:calc(100% - 40px);

    }

    .robotics-cta-container h2{

        font-size:40px;

    }

}

@media(max-width:768px){

    .robotics-cta{

        padding:70px 0;

    }

    .robotics-cta-container h2{

        font-size:32px;

    }

    .robotics-cta-container p{

        font-size:16px;

    }

    .robotics-cta-buttons{

        flex-direction:column;

    }

    .cta-shop-btn,

    .cta-contact-btn{

        width:100%;

    }

}