@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --sidebar-bg: #1a2b40;
    --sidebar-hover: #253952;
    --text-muted: #aeb9c7;
    --accent-blue: #3498db;
}

body {
    font-family: 'Poppins', sans-serif !important;
    background-color: #f8f9fa;
    margin: 0;
    overflow-x: hidden;
}

/* --- Sidebar --- */
.sidebar {
    width: 260px;
    background-color: var(--sidebar-bg);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.logo-section {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.nav-link {
    color: white !important;
    padding: 14px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    cursor: pointer;
    border-left: 4px solid transparent;
}

.nav-link:hover {
    background: var(--sidebar-hover);
}

.nav-link.active {
    background-color: var(--sidebar-hover);
    border-left-color: var(--accent-blue);
}

/* Submenu */
.submenu {
    background: #111d2b;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    /* Hidden */
}

.submenu.is-open {
    max-height: 1000px;
    /* Shown */
}

.submenu a {
    display: block;
    padding: 10px 20px 10px 55px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
}

.sidebar a {
    text-decoration: none;
    color: #fff;
}

.submenu a:hover {
    color: white;
    background: #1c2d42;
}

.chevron-icon {
    transition: transform 0.3s;
}

.rotate {
    transform: rotate(180deg);
}

/* --- Main Content --- */
.main-content {
    margin-left: 260px;
    transition: 0.3s;
}

header {
    height: 70px;
    background: white;
    border-bottom: 1px solid #eee;
    padding: 0 20px;
}

/* --- Service Cards --- */
.service-card {
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    position: relative;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    text-decoration: none !important;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

/* The Arrow you requested */
.card-goto-arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #ff9f43;
    /* Exact orange from screenshot */
    font-size: 18px;
    opacity: 0.8;
    transition: 0.2s;
}

.service-card:hover .card-goto-arrow {
    transform: scale(1.2);
    opacity: 1;
}

.service-card h5 {
    color: #333;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Card Themes */
.card-orange {
    background: linear-gradient(135deg, #fff5ec, #ffe8d6);
    border-bottom: 4px solid #ff9f43;
}

.card-blue {
    background: linear-gradient(135deg, #f0f7ff, #e1efff);
    border-bottom: 4px solid #3498db;
}

.card-yellow {
    background: linear-gradient(135deg, #fffdf0, #fff9d6);
    border-bottom: 4px solid #f1c40f;
}

.card-green {
    background: linear-gradient(135deg, #f0fff4, #dcffe4);
    border-bottom: 4px solid #2ecc71;
}

.card-purple {
    background: linear-gradient(135deg, #f8f4ff, #f0e6ff);
    border-bottom: 4px solid #9b59b6;
}

.card-red {
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
    border-bottom: 4px solid #e74c3c;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }
}


:root {
    --sidebar-navy: #1a2b40;
    --orange-main: #ff8500;
    --bg-light: #f8f9fa;
    --text-muted: #6c757d;
}

body {
    background-color: var(--bg-light);
    font-family: 'Segoe UI', sans-serif;
}

/* Sidebar */
.sidebar {
    width: 250px;
    height: 100vh;
    background: var(--sidebar-navy);
    position: fixed;
    left: 0;
    top: 0;
}

.logo-container {
    padding: 15px;
    border-bottom: 1px solid #2c3e50;
    text-align: center;
}

.menu-header,
.menu-link {
    padding: 12px 20px;
    color: #aeb9c7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}

.menu-item.active .menu-header {
    color: #fff;
    background: #253952;
    border-left: 4px solid #3498db;
}

.submenu {
    background: #111d2b;
    overflow: hidden;
    transition: 0.3s;
    max-height: 0;
}

.submenu.open {
    max-height: 200px;
}

.submenu a {
    display: block;
    padding: 8px 50px;
    color: #8a99ad;
    text-decoration: none;
    font-size: 13px;
}

/* Main Content & Header */
.main-content {
    margin-left: 250px;
}

.top-nav {
    height: 70px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.btn-orange {
    background: var(--orange-main);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
}

/* Dashboard Cards */
.main-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    padding: 40px 25px 25px;
    position: relative;
    height: 100%;
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #00c853;
    color: white;
    padding: 2px 10px;
    font-size: 11px;
    border-radius: 2px;
}

.dot {
    height: 6px;
    width: 6px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.bg-blue {
    background: #3498db;
}

.bg-yellow {
    background: #f1c40f;
}

.bg-green {
    background: #2ecc71;
}

.main-card p {
    font-size: 16px;
    color: #444;
    margin-top: 10px;
    line-height: 1.5;
}

.card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #ff5252;
    font-size: 24px;
    opacity: 0.5;
}

.extra-small {
    font-size: 10px;
}


/* Sidebar and Layout */
.sidebar {
    width: 260px;
    background-color: #1a2b40;
    height: 100vh;
    position: fixed;
    color: #aeb9c7;
}

.logo-section {
    background: #fff;
    padding: 15px;
    text-align: center;
}

.main-content {
    margin-left: 260px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Navigation */
.nav-link {
    color: #fff !important;
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.active-header {
    background: #253952;
    border-left: 4px solid #3498db;
}

.submenu a {
    display: block;
    padding: 10px 20px 10px 45px;
    color: #aeb9c7;
    text-decoration: none;
    font-size: 13px;
}

.active-sub {
    color: #ff8500 !important;
    background: #fff;
    border-left: 4px solid #ff8500;
    font-weight: bold;
}

/* Content Boxes */
.content-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

.text-orange {
    color: #ff8500;
}

/* Document Section */
.doc-tab {
    padding: 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
}

.doc-tab.active {
    background: #ff6600;
    color: #fff;
}

.doc-list {
    list-style: none;
    padding: 0;
}

.doc-list li {
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
    display: flex;
}

.doc-list li span {
    color: #ff6600;
    font-weight: bold;
    margin-right: 10px;
}

/* Pricing */
.pricing-card {
    background: #fff;
    border: 1px solid #eef2f7;
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
}

.pricing-header {
    background: #e3f2fd;
    padding: 20px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-body {
    padding: 30px;
}

.price-tag {
    color: #2196f3;
    font-weight: 800;
    margin: 15px 0;
}

.btn-buy {
    background: #555;
    color: #fff;
    border: none;
    padding: 10px 60px;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-buy:hover {
    background: #333;
}

/* Video & FAQ */
.video-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.video-title {
    font-weight: bold;
    margin-top: 10px;
    font-size: 14px;
}

.accordion-button {
    font-weight: bold;
}

.faq-q {
    background: #fff3e0;
    color: #ff8500;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 15px;
}

:root {
    --orange-main: #ff8500;
    --text-dark: #333;
    --border-color: #ddd;
}

body {
    background-color: #f8f9fa;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text-dark);
}

.extra-small { font-size: 10px; }
.btn-orange { background-color: var(--orange-main); color: white; border: none; }
.btn-orange:hover { background-color: #e67700; color: white; }

/* Toggle Buttons */
.btn-orange-toggle {
    background-color: var(--orange-main);
    color: white;
    border: 1px solid var(--orange-main);
    border-radius: 6px;
    font-weight: 500;
}

.btn-outline-secondary-toggle {
    border: 1.5px solid #2c3e50;
    color: #2c3e50;
    border-radius: 6px;
    background: transparent;
    font-weight: 500;
}

/* Custom Floating Inputs */
.form-floating-custom {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 10px 15px;
    background: white;
}

.form-floating-custom label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.form-floating-custom input {
    border: none;
    padding: 0;
    font-weight: 500;
    color: #444;
    width: 100%;
}

.form-floating-custom input:focus {
    outline: none;
    box-shadow: none;
}

/* Sidebar Summary */
.product-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    background-color: var(--orange-main);
}

.bg-orange { background-color: var(--orange-main) !important; }
.cursor-pointer { cursor: pointer; }

.summary-list span { color: #555; }



/* Tab Buttons */
.doc-tab {
    padding: 15px;
    background-color: #f1f3f5;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: left;
}

.doc-tab:hover {
    background-color: #e9ecef;
}

.doc-tab.active {
    background-color: #ff8500 !important; /* Orange from your UI */
    color: white !important;
    box-shadow: 0 4px 12px rgba(255, 133, 0, 0.2);
}

/* List Styling */
.doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #444;
}

.doc-list li:last-child {
    border-bottom: none;
}

.doc-list li span {
    color: #ff8500;
    font-weight: bold;
    margin-right: 10px;
}

/* Tab Transition */
.tab-pane {
    min-height: 200px;
}

header .menu  a{
    margin-right: 20px;
    font-size: 16px;
}

