html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/*.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}*/

html {
    position: relative;
    min-height: 100%;
}


.admin-container {
    max-width: 1400px;
    margin: 0 auto 20px;
    padding: 0 20px;
    background-color: #ffffff;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.admin-heading {
    color: #000000;
    font-size: 24px;
    font-weight: 600;
}

.admin-status {
    padding: 8px 15px;
    background: #f0f0f0;
    color: #333;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
}

.admin-card {
    padding: 25px;
    border: 1px solid #e0e0e0;
}

.admin-section-heading {
    color: #000;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f36d1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.admin-detail-label {
    color: #666;
    font-weight: 500;
}

.admin-detail-value {
    color: #000;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

    .admin-table th {
        background: #f8f8f8;
        color: #000;
        text-align: left;
        padding: 12px;
        border-bottom: 2px solid #e0e0e0;
    }

    .admin-table td {
        padding: 12px;
        border-bottom: 1px solid #eee;
    }

.admin-button {
    padding: 8px 20px;
    background: #f36d1a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .admin-button:hover {
        background: #1a607f;
    }

.admin-warning {
    background: #d9534f;
}

    .admin-warning:hover {
        background: #c9302c;
    }

.admin-form-control {
    padding: 8px;
    border: 1px solid #e0e0e0;
    width: 100%;
}

.admin-edit-section {
    background: #f8f8f8;
    padding: 15px;
    margin-top: 15px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.admin-stat-box {
    padding: 20px;
    background: #f8f8f8;
    border-left: 3px solid #f36d1a;
}

.admin-stat-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.admin-stat-value {
    color: #000;
    font-size: 24px;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .admin-grid {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 768px) {
    .admin-detail-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .admin-heading {
        font-size: 18px;
    }
}

.btn-link {
    color: #f36d1a !important;
}
/*-------------------------------------------------------------------------------table css-------------------------------------------------------------------------------*/

.tbl-pagination-cont {
    margin: 0px auto;
    padding: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px
}

/* Improved Header Styles */
.header-container {
    background: #fff;
    padding: 10px 12px;
    margin-bottom: 0;
    border-bottom: 1px solid #e9ecef;
}

.tbl-top-srch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    gap: 20px;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Tab Styles */
.admin-tabs {
    display: flex;
    align-items: center;
}

.crm-ticket-tab {
    padding: 0;
    cursor: pointer;
    background: none;
    color: #2c3e50;
    border: none;
    transition: all 0.3s ease;
    font-size: 18px;
    position: relative;
}

    /* .crm-ticket-tab:hover {
                    color: #f36d1a;
                } */

    /*  .crm-ticket-tab.active {
                    color: #f36d1a;
                } */

    .crm-ticket-tab.active::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #f36d1a;
        border-radius: 2px;
    }

/* Search Box Styles */
.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 25px;
    padding: 4px 16px;
    width: 245px;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

    .search-box:focus-within {
        border-color: #f36d1a;
        box-shadow: 0 0 0 3px rgba(59, 175, 218, 0.1);
    }

    .search-box input[type="text"] {
        background: none;
        border: none;
        color: #333;
        outline: none;
        width: 100%;
        font-size: 14px;
        font-weight: 400;
    }

        .search-box input[type="text"]::placeholder {
            color: #888;
        }

    .search-box .search-icon {
        color: #f36d1a;
        margin-right: 12px;
        font-size: 16px;
    }

/* Add Button Styles */
.add-admin-btn {
    padding: 4px 10px;
    border: none;
    border-radius: 25px;
    background: #f36d1a;
    color: #fff !important;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #f36d1a;
}

    .add-admin-btn:hover {
        background: #f36d1a;
        border-color: #f36d1a;
        box-shadow: 0 4px 15px rgba(59, 175, 218, 0.3);
    }

    .add-admin-btn i {
        font-size: 14px;
    }

/* Content Area */
.content-area {
    background: #fff;
    border-radius: 0 0 8px 8px;
}

.audit-table-wrapper {
    overflow-y: auto;
    background-color: #f3f3f3;
    /* border: 1px solid #e9ecef; */
}

.pagi-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

    .pagi-table thead {
        position: sticky;
        top: 0;
        z-index: 1;
        background: #f8fafc;
    }

    .pagi-table th, .pagi-table td {
        padding: 10px 12px;
        text-align: left;
        border-bottom: 1px solid #e9ecef;
    }

    .pagi-table th {
        color: #495057;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .pagi-table tbody tr:hover {
        background-color: #f8fafc;
    }

.tbl-btm-pagi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background-color: #fff;
    border-top: 1px solid #e9ecef;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .pagination-controls button {
        padding: 4px 10px;
        background-color: #f8fafc;
        color: #6c757d;
        border: 1px solid #dee2e6;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        /* .pagination-controls button:hover:not(.disabled-btn) {
            background-color: #e9ecef;
            color: #495057;
        }*/

        .pagination-controls button.active-btn {
            background-color: #f36d1a;
            color: white;
            border-color: #f36d1a;
        }

        .pagination-controls button.disabled-btn {
            cursor: not-allowed;
            opacity: 0.5;
        }

.custom-dropdown {
    display: none;
    position: absolute; /* Will be changed to fixed by JavaScript */
    background-color: #fff;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    min-width: 160px;
    border-radius: 4px;
    overflow: visible;
}

    .custom-dropdown::before {
        content: '';
        position: absolute;
        top: -9px;
        right: var(--arrow-right, 20px); /* Dynamic positioning */
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 9px solid #838383;
        z-index: 1001;
    }

    .custom-dropdown::after {
        content: '';
        position: absolute;
        top: -8px;
        right: var(--arrow-right, 20px); /* Dynamic positioning */
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 8px solid #ffffff;
        z-index: 1002;
    }

.custom-dropdown-item {
    display: flex;
    padding: 12px 16px;
    color: #495057;
    text-decoration: none;
    background: none;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid #d5d5d5;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

    .custom-dropdown-item:hover {
        background-color: #f8fafc;
        color: #f36d1a;
    }

    .custom-dropdown-item:last-child {
        border-bottom: none;
    }

.crm-ticket-btn {
    padding: 6px 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #f3f3f3;
    color: #6c757d;
    font-size: 16px;
    transition: all 0.2s ease;
    position: relative;
}

    .crm-ticket-btn:hover {
        background-color: #e9ecef;
        color: #495057;
    }

.entry-count {
    color: #6c757d;
    font-size: 14px;
}

/* User Info Styles */
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    color: #2c3e50;
    font-size: 14px;
}

.user-email {
    color: #6c757d;
    font-size: 12px;
}

.cstm-status-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 13px;
    border-radius: 3px;
    text-align: center;
}

.cstm-status-paid {
    background-color: #d4f7dc;
    color: #1a7f37;
}

.cstm-status-pending {
    background-color: #ffe5e5;
    color: #d32f2f;
}

.cstm-status-active {
    background-color: #e0f7ff;
    color: #0277bd;
}

.cstm-status-inactive {
    background-color: #f0f0f0;
    color: #6c757d;
}

.cstm-status-blocked {
    background-color: #ffe8cc;
    color: #d17b0f;
}

.cstm-status-approved {
    background-color: #e2f5e9;
    color: #2e7d32;
}
/* Make table scrollbar hidden by default */
.audit-table-wrapper::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    background-color: transparent;
}

.audit-table-wrapper::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}


.audit-table-wrapper:hover::-webkit-scrollbar-track {
    background-color: transparent;
}

/* Firefox support */
/*.audit-table-wrapper {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}
*/
.audit-table-wrapper::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.audit-table-wrapper:hover::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.15);
}

/*  .audit-table-wrapper:hover {
        scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
    }
<style >
/* Expandable Row Styles */

/* expand */
.expandable-row {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .expandable-row:hover {
        background-color: #f8fafc;
    }

.expand-indicator {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    transition: transform 0.3s ease;
    color: #f36d1a;
    font-size: 18px;
}



/* Child Row Styles */
.child-row {
    display: none;
    background-color: #f8fafc;
}

    .child-row.expanded {
        display: table-row;
    }

    .child-row td {
        padding: 0;
        border-bottom: none;
    }


.child-content {
    padding: 10px;
    margin: 0 15px;
    background-color: #fff;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #f36d1a;
}

.child-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

    .child-table th {
        background-color: #f1f5f9;
        padding: 8px 12px;
        text-align: left;
        font-size: 12px;
        color: #64748b;
        border-bottom: 1px solid #e2e8f0;
    }

    .child-table td {
        padding: 8px 12px;
        border-bottom: 1px solid #f1f5f9;
        font-size: 13px;
    }

    .child-table tbody tr:hover {
        background-color: #f8fafc;
    }

.child-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.expand-indicator.expanded {
    transform: rotate(90deg);
}
/* expand */
/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 20px;
    }

    .tbl-top-srch {
        flex-direction: column;
        gap: 15px;
    }

    .left-section {
        width: 100%;
        justify-content: center;
    }

    .right-section {
        width: 100%;
        justify-content: space-between;
    }

    .search-box {
        width: 100%;
        max-width: 300px;
    }

    .content-area {
        padding: 20px;
    }

    .tbl-btm-pagi {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.text-center {
    text-align: center !important;
}

.exchange-parent {
    cursor: pointer;
}

    .exchange-parent .cstm-status-badge {
        cursor: default;
    }

    .exchange-parent.active {
        background: #f7f7f7a3;
    }

.action-type {
    padding-left: 15px;
    display: flex;
    align-items: center;
    margin-top: 2px;
    gap: 5px;
}

.font-18px {
    font-size: 18px;
}
/*-------------------------------------------------------------------------------table css-------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------Confirmation Popup css-------------------------------------------------------------------------------*/


.confirm-popup-overlay.show .confirm-popup-content {
    transform: translateY(0);
    opacity: 1;
}

.confirm-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(6px);
}

.confirm-popup-content {
    background: white;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    width: 450px;
    max-width: 90vw;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    transform: translateY(-25px);
    opacity: 0;
    transition: all 0.3s ease;
}

    .confirm-popup-content h3 {
        margin: 0 0 8px 0;
        font-size: 20px;
        font-weight: 600;
        color: #111827;
    }

        .confirm-popup-content h3::after {
            content: '';
            display: block;
            width: 100%;
            height: 1px;
            background-color: #e5e7eb;
            margin: 16px 0 24px 0;
        }

    .confirm-popup-content p {
        margin: 0 0 32px 0;
        font-size: 16px;
        color: #374151;
        line-height: 1.5;
    }

.confirm-popup-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.confirm-cancel-btn, .confirm-delete-btn, .confirm-primary-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    /* font-size: 16px;
    font-weight: 500;*/
    width: 180px;
    transition: all 0.2s ease;
}

.confirm-cancel-btn {
    background-color: #e6e6e6;
    color: black;
    /*font-weight: 600;*/
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

    .confirm-cancel-btn:hover {
        background-color: #f4f4f4;
    }

.confirm-delete-btn {
    background-color: #dc2626;
    color: white;
    /*font-weight: 600;*/
}

    .confirm-delete-btn:hover {
        background-color: #ca0d0d;
    }

.confirm-primary-btn {
    background-color: #f36d1a;
    color: white;
}

    .confirm-primary-btn:hover {
        background-color: #2d9cc5;
    }
/*-------------------------------------------------------------------------------Confirmation Popup css-------------------------------------------------------------------------------*/
.emergency-modal {
    /*    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 10000;
    width: 400px;
    border-radius: 6px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
}

.emergency-modal {
    transform: translateY(-25px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.show .emergency-modal {
    transform: translateY(0);
    opacity: 1;
}




/* sk-Header Styles */
.sk-header {
    background: #2c2c2c;
    padding: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .sk-header.scrolled {
        background: rgba(44, 44, 44, 0.95);
        backdrop-filter: blur(10px);
    }

.sk-header-top {
    background: #1a1a1a;
    padding: 8px 0;
}

.sk-header-top-left div {
    color: white;
    font-size: 12px;
}

.sk-header-top-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

    .social-links a {
        width: 35px;
        height: 35px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #f36d1a;
        transition: all 0.3s ease;
        font-size: 14px;
    }

        .social-links a:hover {
            background: #f36d1a;
            color: white;
            transform: scale(1.1);
        }

.top-nav {
    display: flex;
    gap: 20px;
}

    .top-nav a {
        color: white;
        text-decoration: none;
        font-size: 12px;
        transition: color 0.3s ease;
    }

        .top-nav a:hover {
            color: #f36d1a;
        }

.sk-header-main {
    padding: 15px 0;
    position: sticky;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    box-shadow: 0 1px 10px rgb(0 0 0 / 5%);
}

    .sk-header-main * {
        text-wrap: nowrap;
    }

.sk-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.sk-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.sk-logo-text {
    color: white;
    /* padding: 10px 15px; */
    border-radius: 5px;
}

.sk-logo-subtitle {
    background: white;
    color: #2c2c2c;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    border-radius: 0 0 5px 5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-links a {
        color: black;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: color 0.3s ease;
        position: relative;
    }

        .nav-links a:hover {
            color: #f36d1a;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -3px;
            left: 0;
            background: #f36d1a;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

.sk-header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.h-btn {
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    /* font-weight: bold; */
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.h-btn-primary {
    background: #496da6;
    color: white;
}

    .h-btn-primary:hover {
        background: #d55a15;
    }

.h-btn-secondary {
    background: #f36d1a;
    color: white;
/*    border: 1px solid #555;
*/}

    .h-btn-secondary:hover {
        background: #3f65a1;
        text-decoration: none;
        color: white;
    }

.sk-header-buttons a:hover {
    background: #3f65a1;
    text-decoration: none;
    color: white;
}
.h-btn-primary:hover {
    background: #d55a15 !important;
}

.h-btn-tertiary {
    background: #FFD700;
    color: #2c2c2c;
}

    .h-btn-tertiary:hover {
        background: #FFC107;
        /* transform: translateY(-2px); */
    }

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #2c2c2c;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

    .mobile-menu.active {
        left: 0;
    }

.mobile-menu-sk-header {
    padding: 20px;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mobile-nav-links li {
        border-bottom: 1px solid #444;
    }

    .mobile-nav-links a {
        display: block;
        padding: 15px 20px;
        color: white;
        text-decoration: none;
        transition: background 0.3s ease;
    }

        .mobile-nav-links a:hover {
            background: #f36d1a;
        }

.mobile-buttons {
    padding: 20px;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.hero-section {
    position: relative;
    height: calc(80vh - 72px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* z-index: -2; */
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 18px;
    padding: 0 2rem;
    color: white;
}

.company-name {
    color: #f36d1a;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    color: #f36d1a;
    font-size: 50px;
    font-weight: 700; 
    line-height: 1.1;
    margin-bottom: 20px;
    margin-top:0;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); */
}

.hero-subtitle {
    color: #496da6;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0.95;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}


.cta-button {
    background: #f36d1a;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    /* font-weight: bold; */
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(243, 109, 26, 0.3);
}

.cta-button-2 {
    background: #fff;
    color: black;
    box-shadow: 0 4px 15px rgb(189 189 189 / 30%);
}

.cta-button:hover {
    background: #d55a15;
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

.cta-button-2:hover {
    background: #e6e5e5;
    color:black;
}

.phone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.phone-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f36d1a;
}

.phone-number {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sk-header-buttons .h-btn:last-child {
        display: none;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: calc(70vh - 72px);
    }
    .h-btn {
        padding: 12px 14px;
    }
        .sk-logo img {
        width: 150px;
        margin-left: 30px;
    }

    .sk-header-top {
        display: none;
    }

    .main-nav .nav-links,
    .sk-header-buttons {
        display: none;
    }

    .bg-image {
        background-position: left;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* .hero-section {
                margin-top: 70px;
            } */

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 30px;
        margin-top: 0;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-container {
        gap: 1.5rem;
    }

    .phone-info {
        align-items: center;
    }

    .phone-number {
        font-size: 1.5rem;
    }
}


/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

    .hero-content > *:nth-child(1) {
        animation-delay: 0.2s;
    }

    .hero-content > *:nth-child(2) {
        animation-delay: 0.4s;
    }

    .hero-content > *:nth-child(3) {
        animation-delay: 0.6s;
    }

    .hero-content > *:nth-child(4) {
        animation-delay: 0.8s;
    }




.pricing-section {
    background: #f36d1a;
    padding: 30px 40px;
    text-align: center;
    width: 100%;
}



.pricing-header h2 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 26px;
    font-weight: 700;
    text-transform: capitalize;
}

.pricing-header p {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.6;
    margin-inline: auto;
}



.pricing-cta {
    text-align: center;
}

.cta-text {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-weight: 400;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 500;
}

.pricing-btn {
    display: inline-block;
    background: white;
    color: #f36d1a;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .pricing-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        text-decoration: none;
        color: black;
    }


.guarantee-text {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #fff;
    font-style: italic;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 40px 20px;
    }

    .pricing-header h2 {
        font-size: 2rem;
    }

    .pricing-header p {
        font-size: 1rem;
    }

    .pricing-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-btn {
        padding: 16px 40px;
        font-size: 1rem;
    }
}