/* ============================
   General Styles & Reset
   ============================ */

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    background-color: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

/* ============================
   Typography
   ============================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #191970 !important;
}

h1 {
    font-size: 2.5rem !important;
    line-height: 1.3 !important;
}

h2 {
    font-size: 2rem !important;
    margin-top: 2rem !important;
    margin-bottom: 1.5rem !important;
}

h3 {
    font-size: 1.5rem !important;
    margin-top: 1.5rem !important;
}

p {
    margin-bottom: 1rem;
    font-size: 18px;
}

strong {
    font-weight: 600;
    color: #191970;
}

/* ============================
   Navigation
   ============================ */

.navbar {
    background-color: #191970 !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff !important;
}

.brand-name {
    color: #fff;
}

.navbar-nav {
    list-style: none !important;
}

.navbar-nav .nav-item {
    list-style: none !important;
    margin: 0 !important;
}

.navbar-nav .nav-item::before,
.navbar-nav .nav-item::after {
    display: none !important;
    content: none !important;
}

.navbar-nav .nav-link {
    color: #d3d3d3 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 0.6rem 1.5rem !important;
    font-weight: 600 !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    border: none !important;
    display: inline-block !important;
}

.btn-cta-primary {
    background-color: #d3d3d3 !important;
    color: #191970 !important;
}

.btn-cta-primary:hover {
    background-color: #c0c0c0 !important;
    color: #191970 !important;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background-color: transparent !important;
    color: #d3d3d3 !important;
    border: 2px solid #d3d3d3 !important;
}

.btn-cta-secondary:hover {
    background-color: #d3d3d3 !important;
    color: #191970 !important;
}

/* ============================
   Hero Section
   ============================ */

.hero-section {
    background-color: #191970 !important;
    color: #fff !important;
    padding: 5rem 0 !important;
    text-align: center !important;
}

.hero-title {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 2rem !important;
    color: #fff !important;
}

.hero-text {
    font-size: 1.2rem !important;
    margin-bottom: 1.5rem !important;
    color: #d3d3d3 !important;
    line-height: 1.8 !important;
}

.btn-hero-cta {
    background-color: #d3d3d3 !important;
    color: #191970 !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-top: 1rem !important;
    transition: all 0.3s ease !important;
    border: none !important;
    white-space: nowrap !important;
}

.btn-hero-cta:hover {
    background-color: #c0c0c0 !important;
    color: #191970 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.main-content {
    background-color: #fff;
}

.content-section {
    padding: 4rem 0;
}

.content-section.bg-light {
    background-color: #f8f9fa !important;
}

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

.card {
    border: 1px solid #d3d3d3;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    background-color: #fff;
}

.card-body {
    padding: 2rem;
}

/* ============================
   Lists
   ============================ */

/* Reset default list styles */
ul, ol {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Process lists (numbered) */
.process-list {
    counter-reset: item;
    padding-left: 0 !important;
    list-style: none !important;
}

.process-list li {
    counter-increment: item;
    margin-bottom: 1rem;
    padding-left: 3rem;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    list-style: none !important;
}

.process-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #191970;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.process-list li::after {
    display: none !important;
    content: none !important;
}

/* Features lists with icons */
.features-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.features-list li {
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    list-style: none !important;
}

.features-list li::before,
.features-list li::after {
    display: none !important;
    content: none !important;
}

.features-list li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1.3rem;
    color: #191970;
}

/* ============================
   Tables
   ============================ */

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    font-size: 16px;
    background-color: #fff;
    margin-bottom: 2rem;
}

.table thead {
    background-color: #191970;
    color: #fff;
}

.table thead th {
    font-weight: 600;
    padding: 1rem;
    border: none;
    white-space: nowrap;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f9fa;
}

.table-bordered {
    border: 1px solid #d3d3d3;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 8px;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.footer {
    background-color: #191970;
    color: #d3d3d3;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer h5 {
    color: #fff !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
}

.footer p {
    font-size: 16px;
    color: #d3d3d3;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
}

.footer-links li {
    margin-bottom: 0.5rem;
    list-style: none !important;
}

.footer-links li::before,
.footer-links li::after {
    display: none !important;
    content: none !important;
}

.footer-links a {
    color: #d3d3d3;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-links a:hover {
    color: #fff;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

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

@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .hero-text {
        font-size: 1rem !important;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.7rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    .content-section {
        padding: 3rem 0;
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 3rem 0 !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .btn-hero-cta {
        font-size: 1rem !important;
        padding: 0.8rem 2rem !important;
    }

    .content-section {
        padding: 2rem 0;
    }

    .card-body {
        padding: 1.5rem;
    }

    body {
        font-size: 16px;
    }

    p {
        font-size: 16px;
    }

    .features-list li,
    .process-list li {
        font-size: 16px;
    }
}

/* ============================
   Utility Classes
   ============================ */

.text-center {
    text-align: center !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
