@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1E3A8A;
    --secondary: #6B7280;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
}

.heading {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

section {
    padding: 60px 0 0;
}

.container {
    max-width: 1200px;
}

a {
    text-decoration: none;
}

/* Header */
nav.navbar {
    padding: 20px 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
}

.navbar-nav li {
    margin-right: 25px;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    padding: 30px 20px;
    z-index: 1050;
    overflow-y: auto;
}

.side-menu.active {
    left: 0;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu ul li {
    margin: 10px 0;
}

.side-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: block;
    position: relative;
}

.side-menu .dropdown-menu {
    position: static !important;
    display: block !important;
    float: none;
    width: 100%;
    margin: 0;
    padding-left: 15px;
    background: transparent;
    border: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.side-menu .dropdown.open .dropdown-menu {
    max-height: 500px;
}

.side-menu .dropdown>a::after {
    content: "▼";
    position: absolute;
    right: 0;
    font-size: 12px;
    transition: 0.3s;
}

.side-menu .dropdown.open>a::after {
    transform: rotate(180deg);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 1040;
}

.menu-overlay.active {
    display: block;
}

@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }

    .menu-toggle {
        display: block;
    }
}

/* Footer */
.footer {
    background: #182d6b !important;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
}

.footer-title {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Social Icons */
.social-icons a {
    color: #ccc;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #ccc;
}

.contact-info i {
    margin-right: 10px;
    font-size: 16px;
    color: #fff;
}

.text-center.pt-3.border-top.mt-3.footer-bottom {
    display: flex;
    /* margin: 0 auto; */
    text-align: center;
    justify-content: center;
}

.footer-links-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
}

.footer-links-inline a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links-inline a:hover {
    color: #fff;
}

.footer-links-inline span {
    color: #666;
}

/* Mobile fix */
@media (max-width: 768px) {
    .footer-extra {
        text-align: center;
        justify-content: center !important;
    }
}

.text-center.pt-3.border-top.mt-3.footer-bottom a {
    color: #f7f4f4 !important;
}

@media (max-width: 768px) {
    .footer-extra {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-links-inline {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom p {
        text-align: center;
    }
}

/* Breadcrumb */
section.breadcrumb {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin: 0;
}

section.breadcrumb h1 {
    text-align: center;
}

/* Hero Section */
section.hero {
    background: url(../images/slider.jpeg);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

section.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Overlay Color */
    z-index: -1;
}

.hero-inner h1 {
    font-size: 45px;
    margin-bottom: 15px;
}

.hero-inner h4 {
    background: var(--secondary);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 20px;
}

a.btn-primary {
    text-decoration: none;
    background: #ed960e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

a.btn-hero {
    background: green;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

/* Solution section */
section.solution {
    text-align: center;
}

.a-box a {
    text-decoration: none;
    color: var(--primary);
    position: relative;
    padding: 0 10px;
}

.a-box a::after {
    content: "|";
    position: absolute;
    right: -3px;
    color: #999;
}

/* Remove | from last item */
.a-box a:last-child::after {
    content: "";
}

.a-box a:hover {
    text-decoration: underline;
}

.a-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Subscription Section */
section.subscription {
    text-align: center;
    background: #6b728014;
    padding: 60px 0;
    margin-top: 60px;
}

.pricing-card {
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: #fff;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.card-header-custom {
    background: var(--primary);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.card-footer-custom {
    background: #8bc34a;
    text-align: center;
    padding: 15px;
}

.card-footer-custom a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.card-footer-custom:hover {
    background: #7cb342;
}

.card-footer-custom a:hover {
    color: #fff;
}

.card-header-custom h5 {
    letter-spacing: 2px;
    font-weight: 700;
}

.price {
    font-size: 40px;
    font-weight: 700;
}

.price span {
    font-size: 16px;
}

.card-body {
    text-align: center;
    padding: 20px;
}

.archive-card .card-header-custom {
    background: var(--secondary);
}

/* Details Section */
.list li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    line-height: 40px;
    transition: all 0.3s ease;
}

.list li::before {
    content: "\f101";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.list li:hover {
    transform: translateX(8px);
}

.list li:hover::before {
    left: 5px;
}

/* Choose Section */
section.choose-section {
    background: var(--primary);
    padding: 60px 0;
    margin-top: 60px;
}

section.choose-section .heading {
    color: #fff;
    margin-bottom: 4rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.feature-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 28px;
}

/* Registered Section */
.registered-box h3 {
    color: var(--primary);
    font-size: 22px;
    font-weight: 600;
}

.registered-box {
    border: 1px solid var(--secondary);
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #6b72801f;
}

.registered-box p {
    margin: 0;
}

/* FAQ Section */
section.faq-section {
    background: #1e3a8a14;
    padding: 60px 0;
    margin-top: 60px;
}

/* Service Details Page */
.overview-section {
    background: #1e3a8a17;
    padding: 40px 20px;
    text-align: center;
    border-radius: 20px;
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
}

.last-sec {
    padding: 60px 0;
}

/* Price page CSS */
section.payment {
    padding: 60px 0;
}

section.package {
    padding: 60px 0;
    background: #1e3a8a14;
}

.paypal img {
    width: 20%;
}

.paypal {
    background: #ffc439;
}

.debit {
    background: #2c2e2f;
    font-size: 20px;
    color: #fff;
    display: flex;
    gap: 20px;
}

.payment-box {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.debit img {
    width: 5%;
}

.table-container {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.table thead {
    background: #eef2f7;
}

.table th {
    font-weight: 600;
    color: #444;
}

.table td {
    vertical-align: middle;
}

.btn-subscribe {
    background: #2f6fad;
    color: #fff;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 14px;
}

.btn-sample {
    background: #f0a340;
    color: #fff;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 14px;
}

.btn-cleaned {
    background: #4caf50;
    color: #fff;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 14px;
}

.historical {
    padding: 60px 0;
}
.trust-bar {
    padding: 3rem 5% 0;
    margin: 0 5%;
    display: flex;
    justify-content: space-around;
    text-align: center;
}
.stat h3 {
    font-size: 35px;
    color: #1E3A8A;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.stat p {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
/*pRICE*/
.price-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 #8080804a;
}
 .toggle-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin: 2rem 0 4rem;
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }

        .switch input { opacity: 0; width: 0; height: 0; }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: #cbd5e0;
            transition: .4s;
            border-radius: 34px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 26px; width: 26px;
            left: 4px; bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .slider { background: var(--primary); }
        input:checked + .slider:before { transform: translateX(26px); }

       
       .price1 span {
    font-size: 28px !important;
    font-weight: 700;
    margin: 0 0 20px 0;
    display: inline-block;
}

        .price-card {
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }


 .price-card {
    height: 100%;
}

.swiper-slide {
    height: auto;
}
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    width: 50px;
    height: 50px;
    margin: 0;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #084298;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}
/* Responsive */
@media (max-width: 767px) {
    .table thead {
        display: none;
    }

    .table,
    .table tbody,
    .table tr,
    .table td {
        display: block;
        width: 100%;
    }

    .table tr {
        margin-bottom: 15px;
        background: #fff;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 50%;
        text-align: left;
        font-weight: 600;
        color: #555;
    }
    .text-center.pt-3.border-top.mt-3.footer-bottom {
        flex-direction: column;
    }
}
@media(max-width: 568px){
    .a-box{
        flex-direction: column;
    }
    .a-box a::after{
        content: '' !important;
    }
    section{
        padding: 40px 0;
    }
    section.subscription {
        padding: 40px 0;
        margin-top: 40px;
    }
    section.choose-section {
        padding: 40px 0;
        margin-top: 40px;
    }
    section.faq-section {
        padding: 40px 0;
        margin-top: 40px;
    }
}
@media(max-width: 479px){
    .hero-inner h1 {
        font-size: 36px;
    }
    .heading{
        font-size: 25px;
    }
}
@media(max-width: 414px) {
    .btn-box {
        gap: 20px;
        flex-direction: column;
    }
}