/* Consolidated CSS for all pages */
/*End of Universal Header*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: 50%;
    display: block;
}

.responsive-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.responsive-img.loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.responsive-img:not(.loaded) {
    opacity: 0.7;
    background-color: #f0f0f0;
}

/* Form Error States */
input.error, select.error, textarea.error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
}

input.error:focus, select.error:focus, textarea.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 2px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 46px;
    width: 100%;
    box-sizing: border-box;
}

.header.active {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
}

header img {
    height: 38px;
    width: auto;
    background: transparent !important;
    background-color: transparent !important;
}

header .logo {
    font-size: 14px;
    font-weight: bold;
    height: 38px;
}


#companyName {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    flex-grow: 1;
    text-align: center;
}

header .auth {
    display: flex;
    gap: 15px;
}

header .auth a,
#loginButton {
    font-size: 14px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s, box-shadow 0.3s;
    display: inline-block;
    border: 3px solid transparent;
    box-shadow: inset -3px -3px 5px rgba(255, 255, 255, 0.5), inset 3px 3px 5px rgba(0, 0, 0, 0.2);
    padding: 8px 15px;
    background: #858482;
    border-radius: 5px;
}

header .auth a:hover,
    #loginButton:hover {
    color: #ff9800;
    animation: beat 1s infinite alternate;
    box-shadow: inset -3px -3px 5px rgba(0, 0, 0, 0.2), inset 3px 3px 5px rgba(255, 255, 255, 0.5);
    opacity: 0.8;
    transform: translateY(-1px);
}
        
#loginButton {
    background: #27ae60;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

#loginButton:hover {
    background: #2ecc71;
    transform: translateY(-2px);
}

#loginButton.logout-btn {
    background: #e74c3c;
}

#loginButton.logout-btn:hover {
    background: #c0392b;
}

/* Navigation Styles - Global defaults overridden by media queries */
nav {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden; /* Prevents nav content overflow from causing right-side flash */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0px;
    display: flex;
    gap: 0px;
    white-space: nowrap;
}

nav ul li {
    position: relative;
    perspective: 1000px;
}

nav ul li a {
    font-size: 10px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s, box-shadow 0.3s;
    display: inline-block;
    border: 3px solid transparent;
    box-shadow: inset -3px -3px 5px rgba(255, 255, 255, 0.5), inset 3px 3px 5px rgba(0, 0, 0, 0.2);
    padding: 3px 5px;
}

nav ul li a:hover {
    color: #ff9800;
    animation: beat 1s infinite alternate;
    box-shadow: inset -3px -3px 5px rgba(0, 0, 0, 0.2), inset 3px 3px 5px rgba(255, 255, 255, 0.5);
}

 @keyframes beat {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Mobile Responsive Styles - Mobile First Approach */
/* Mobile and Tablet devices (up to 768px) */
/* Updated: 2025-12-11 - Menu 60% width */
@media screen and (max-width: 768px) {
    /* Mobile header sizing */
    .header {
        padding: 3px 10px !important;
        height: 56px !important;
        width: 100% !important;
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
    
    /* Logo container on the left - always first */
    header > div:first-child,
    header > div:first-of-type {
        order: 1 !important;
        flex-shrink: 0 !important;
        margin-right: auto !important;
    }
    
    /* Logo on the left */
    header img {
        height: 46px !important;
        width: auto !important;
        max-width: 180px !important;
    }
    
    header .logo {
        font-size: 20px !important;
    }
    
    /* Company name hidden on mobile to save space */
    #companyName {
        display: none !important;
        order: 2 !important;
    }
    
    /* Login/Register button container - far right */
    .auth-buttons-container,
    header > div:not(:first-child):not(#companyName) {
        order: 3 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        flex-shrink: 0 !important;
    }
    
    /* Login button styling */
    #loginButton {
        padding: 6px 12px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
    }
    
    /* Hamburger menu - far right, last item */
    .hamburger {
        width: 40px !important;
        height: 40px !important;
        padding: 8px !important;
        background: none !important;
        border: none !important;
        order: 4 !important;
        flex-shrink: 0 !important;
        margin-left: 10px !important;
        cursor: pointer !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        -webkit-tap-highlight-color: transparent;
    }
    
    .hamburger span {
        width: 22px !important;
        height: 2px !important;
        margin: 3px 0 !important;
    }
    
    /* Position guestname below header */
    .guestname {
        position: static;
        width: 100%;
        top: auto;
        z-index: 10001;
    }
    
    body nav#navigationMenu,
    nav#navigationMenu {
        background: linear-gradient(135deg, #2c3e50, #3498db);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: fixed !important;
        top: 55px !important; /* Positioned below header (18px) + guestname (37px) */
        left: 0 !important; /* Positioned at left edge; hidden via transform */
        transform: translateX(-110%); /* Push fully off-screen (extra 10% covers scrollbar width on any device) */
        width: 60% !important; /* Menu covers 60% of screen when open, showing 40% content */
        max-width: 60% !important;
        height: calc(100vh - 60px) !important;
        transition: transform 0.3s ease; /* Animate transform instead of left for GPU acceleration */
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    body nav#navigationMenu.active,
    nav#navigationMenu.active {
        transform: translateX(0) !important; /* Slide menu into view */
        width: 60% !important;
        max-width: 60% !important;
    }

    nav ul {
        list-style: none;
        margin: 0;
        padding: 40px 0 20px 0; /* Add 40px padding at top (20px existing + 20px extra) */
        padding-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    nav ul li {
        position: relative;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        font-size: 16px;
        color: white;
        text-decoration: none;
        display: block;
        width: 100%;
        padding: 18px 25px;
        transition: background-color 0.3s, color 0.3s;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    nav ul li a:hover {
        background-color: rgba(255,255,255,0.1);
        color: #ff9800;
        animation: none;
        box-shadow: none;
        transform: none;
    }
}

/* Hamburger Menu Styles */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-overlay.active {
    display: block;
}

/* Header adjustments - desktop only */
@media screen and (min-width: 769px) {
    .header {
        position: relative;
        z-index: 1001;
        padding: 2px 16px;
        height: 46px;
        width: 100%;
        flex-wrap: nowrap;
        margin: 0;
        left: 0;
    }

    nav#navigationMenu {
        width: 100%;
        display: block;
        margin: 0;
        left: 0;
        box-sizing: border-box;
    }

    #companyName {
        display: block;
    }
}

/* Mobile responsive adjustments */
.auth-container {
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 20px;
    max-width: 90%;
}

.index-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 15px;
    margin-top: 10px;
}

.index-box {
    margin-bottom: 20px;
}

/* Service pages mobile adjustments */
.service-container {
    padding: 20px 15px;
    margin-top: 10px;
}

.service-header {
    text-align: center;
    margin-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* Form responsive adjustments */
.form-container {
    padding: 20px 15px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Dashboard mobile adjustments */
.dashboard-container {
    padding: 20px 15px;
    margin-top: 10px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.dashboard-card {
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Table responsive */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

/* Small mobile devices (up to 480px) */
@media screen and (max-width: 480px) {
    .header {
        padding: 3px 8px !important;
        height: 90px !important;
    }
    
    header img {
        height: 84px !important;
        width: auto !important;
        max-width: 200px !important;
    }
    
    header .logo {
        font-size: 28px !important;
    }
    
    /* Nav width handled in main mobile media query below */
    
    .auth-container {
        margin-left: 2%;
        margin-right: 2%;
        max-width: 96%;
    }
    
    .index-container {
        padding: 15px 10px;
    }
    
    .service-container {
        padding: 15px 10px;
    }
    
    .form-container {
        padding: 15px 10px;
    }
    
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Tablet devices (481px to 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .index-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px 20px;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .auth-container {
        margin-left: 10%;
        margin-right: 10%;
        max-width: 80%;
    }
    
    .form-row {
        flex-direction: row;
    }
    
    .form-group {
        flex: 1;
    }
}

/* Desktop devices (769px and up) */
@media screen and (min-width: 769px) {
    /* Show navigation horizontally on desktop */
    nav {
        position: static;
        width: 100%;
        height: auto;
        left: 0;
        top: auto;
        transform: none; /* Reset any mobile transform */
        background: linear-gradient(135deg, #2c3e50, #3498db);
    }
    
    nav ul {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        padding: 0;
    }
    
    nav ul li {
        border-bottom: none;
        perspective: 1000px;
    }
    
    nav ul li a {
        font-size: 10px;
        font-weight: 500;
        padding: 4px 6px;
        border: 3px solid transparent;
        box-shadow: inset -3px -3px 5px rgba(255, 255, 255, 0.5), inset 3px 3px 5px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s, color 0.3s, box-shadow 0.3s;
        display: inline-block;
        width: auto;
    }
    
    nav ul li a:hover {
        color: #ff9800;
        animation: beat 1s infinite alternate;
        box-shadow: inset -3px -3px 5px rgba(0, 0, 0, 0.2), inset 3px 3px 5px rgba(255, 255, 255, 0.5);
        background: transparent;
    }
    
    /* Hide hamburger menu on desktop */
    .hamburger {
        display: none;
    }
    
    /* Desktop logo size */
    header img {
        height: 65px;
        width: auto;
        max-width: 120px;
    }
    
    /* Show company name on desktop */
    #companyName {
        display: block;
        font-size: 20px;
        font-weight: bold;
        color: #fff;
        flex-grow: 1;
        text-align: center;
    }
    
    /* Desktop layout adjustments */
    .index-container {
        grid-template-columns: repeat(3, 1fr);
        padding: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .auth-container {
        margin-left: 35%;
        margin-right: auto;
        max-width: 450px;
    }
    
    .service-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px;
    }
    
    .form-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 40px;
    }
    
    .dashboard-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px;
    }
}

/* Large desktop devices (1024px and up) */
@media screen and (min-width: 1024px) {
    .index-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    header img {
        height: 125px;
        width: auto;
        max-width: 250px;
    }
    
    nav ul li a {
        font-size: 11px;
        padding: 4px 7px;
    }
    
    #companyName {
        font-size: 22px;
    }
}

/* Extra large devices (1200px and up) */
@media screen and (min-width: 1200px) {
    .header {
        padding: 4px 10px;
        height: 63px;
    }
    
    header img {
        height: 58px;
        width: auto;
        max-width: 85px;
    }
    
    nav ul li a {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    #companyName {
        font-size: 24px;
    }
}

@keyframes beat {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}  

/* Alert styles */
.alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    display: none;
}

.alert.error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
}

.alert.success {
    background-color: #efe;
    border: 1px solid #cfc;
    color: #363;
}

/* Form styles */
.form-group {
    margin-bottom: 16px;
}

.password-container {
    position: relative;
}

.password-container input[type="password"],
.password-container input[type="text"] {
    padding-right: 45px; /* Make room for the toggle button */
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #6c757d;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.2s ease;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    background: rgba(0,0,0,0.05);
    color: #495057;
}

.password-toggle:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.requirements {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.requirements ul {
    margin: 4px 0;
    padding-left: 16px;
}

/*Start of Login CSS*/
.auth-container {
    background: rgba(110, 142, 165, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    margin-left: 35%;
    margin-top: 3%;
    overflow: hidden;
    position: relative;
}

.auth-header {
    text-align: center;
    padding: 30px 30px 10px;
    border-bottom: 1px solid #e9ecef;
}

.auth-header img {
    height: 50px;
    margin-bottom: 10px;
}

.auth-header h2 {
    color: #333;
    margin: 0;
    font-size: 24px;
}

.form-toggle {
    display: flex;
    background: #f8f9fa;
    margin: 20px;
    border-radius: 10px;
    position: relative;
}

.toggle-btn {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    background: none;
    border: none;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.toggle-btn.active {
    color: white;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.toggle-slider.register {
    transform: translateX(100%);
}

.form-container {
    padding: 30px;
    padding-top: 10px;
}

.form {
    display: none;
}

.form.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
    opacity: 0;
    transform: translateY(20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    font-size: 18px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.back-home {
    text-align: center;
    margin-top: 20px;
}

.back-home a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.back-home a:hover {
    text-decoration: underline;
    }

.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.requirements {
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
}

.requirements ul {
    margin-left: 15px;
  }

@media (max-width: 480px) {
.auth-container {
    margin: 10px;
}
}

.form-container {
    padding: 20px;
}
/*End of Universal Header*/

/*Start of Login CSS*/
.auth-container {
    background: rgba(110, 142, 165, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    margin-left: 35%;
    margin-top: 3%;
    overflow: hidden;
    position: relative;
}

.auth-header {
    text-align: center;
    padding: 30px 30px 10px;
    border-bottom: 1px solid #e9ecef;
}

.auth-header img {
    height: 50px;
    margin-bottom: 10px;
}

.auth-header h2 {
    color: #333;
    margin: 0;
    font-size: 24px;
}

.form-toggle {
    display: flex;
    background: #f8f9fa;
    margin: 20px;
    border-radius: 10px;
    position: relative;
}

.toggle-btn {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    background: none;
    border: none;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.toggle-btn.active {
    color: white;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.toggle-slider.register {
    transform: translateX(100%);
}

.form-container {
    padding: 30px;
    padding-top: 10px;
}

.form {
    display: none;
}

.form.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
    opacity: 0;
    transform: translateY(20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    font-size: 18px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.back-home {
    text-align: center;
    margin-top: 20px;
}

.back-home a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.back-home a:hover {
    text-decoration: underline;
    }

.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.requirements {
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
}

.requirements ul {
    margin-left: 15px;
  }

@media (max-width: 480px) {
.auth-container {
    margin: 10px;
}
}

.form-container {
    padding: 20px;
}
/*End of Login CSS*/

/*Start of Register CSS*/
register-box {
    margin: 60px;
    padding: 0;
    box-sizing: border-box;
}

register-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #06435a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.register-container {
    width: 100%;
    max-width: 600px;
}

.register-form-container {
    background: #278eb3;
    color: #000;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 10px;
    margin-top: 30px;
    margin-left: 450px;
    width:100%;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: rotateX(2deg) rotateY(-2deg);
    transition: all 0.3s ease;
    position: relative;
}

.register-form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #044051;
    color: #000;
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
}

.register-form-container:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.register-register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.register-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.register-form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

label {
    margin-bottom: 8px;
    color: #000;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input, textarea {
    padding: 10px 10px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 
        inset 0 2px 5px rgba(0, 0, 0, 0.05),
        0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 
        inset 0 2px 5px rgba(0, 0, 0, 0.05),
        0 8px 25px rgba(102, 126, 234, 0.15),
        0 4px 12px rgba(102, 126, 234, 0.1);
}

::placeholder, textarea::placeholder {
    color: #000;
    font-style: italic;
}

register-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.register-btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 
        0 8px 20px rgba(102, 126, 234, 0.3),
        0 4px 12px rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.register-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.register-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(102, 126, 234, 0.4),
        0 6px 16px rgba(102, 126, 234, 0.3);
}

.register-btn-submit:hover::before {
    left: 100%;
}

.register-btn-submit:active {
    transform: translateY(-1px);
}

.register-form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.register-form-footer p {
    color: #fff;
    font-size: 0.95rem;
}

.register-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.register-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.register-link:hover::after {
    width: 100%;
}

.register-link:hover {
    color: #764ba2;
}

/* Error styles */
.register-error {
    border-color: #e74c3c !important;
    box-shadow: 
        inset 0 2px 5px rgba(231, 76, 60, 0.1),
        0 4px 12px rgba(231, 76, 60, 0.15) !important;
}

.register-error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Success styles */
.register-success {
    border-color: #27ae60 !important;
    box-shadow: 
        inset 0 2px 5px rgba(39, 174, 96, 0.1),
        0 4px 12px rgba(39, 174, 96, 0.15) !important;
}

/* Responsive design */
@media (max-width: 768px) {
.register-form-container {
    padding: 30px 25px;
    margin: 20px;
    transform: none;
}
}
    
.register-form-container:hover {
    transform: scale(1.01);
}
    
.register-form-row {
    grid-template-columns: 1fr;
    gap: 15px;
}
    
h2 {
    font-size: 16px;
}
    
register-input, textarea {
    padding: 10px 12px;
}

@media (max-width: 480px) {
    register-body {
    padding: 10px;
}
    
.register-form-container {
    padding: 25px 20px;
    margin: 10px;
}
    
.register-register-form {
    gap: 15px;
}
}
/*End of Register CSS*/

/*Start of Cart CSS*/        
.cart-user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
        
/* Guestname removed from here - using main definition below */
        
.cart-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 50px;
}
        
.cart-table {
    width: 100%;
    border-collapse: collapse;
}
        
.cart-table th {
    background-color: #001f3f; /* Navy blue */
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}
        
.cart-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}
        
.cart-table tr:last-child td {
    border-bottom: none;
}
        
.cart-product-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}
        
.cart-product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}
        
.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
        
.cart-product-info h3 {
    margin-bottom: 5px;
    color: #001f3f;
}
        
.cart-product-info p {
    color: #666;
    font-size: 14px;
}
        
.cart-price {
    font-weight: 600;
    color: #001f3f;
}
       
.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}
        
.cart-quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: white;
    color: #001f3f;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}
        
.cart-quantity-btn:hover {
    background-color: #001f3f;
    color: white;
}
        
.cart-quantity {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-delete-btn {
    background-color: #ff4136;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}
        
.cart-delete-btn:hover {
    background-color: #e62e24;
}

.cart-summary {
    background-color: #f8f9fa;
    padding: 20px;
    border-top: 2px solid #eaeaea;
}
        
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 0 20px;
}
        
.cart-summary-row:last-child {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 18px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    color: #001f3f;
}
        
.cart-pay-btn {
    display: block;
    width: 200px;
    margin: 30px auto;
    padding: 16px;
    background-color: #001f3f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

.cart-continue-shopping-btn {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
}

.cart-continue-shopping-btn:hover {
    background-color: #5a6268;
}
        
.cart-pay-btn:hover {
    background-color: #003366;
}
       
/* ========================================== */
/* FOOTER - SIMPLE MOBILE-FIRST DESIGN       */
/* ========================================== */

/* Base footer - mobile by default */
footer {
    background: #003366;
    color: white;
    padding: 20px 15px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
}

/* Footer sections - stack vertically by default */
footer .section {
    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer .section:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

footer .section h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #7FDBFF;
}

footer .section p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
}

footer .section a {
    color: #7FDBFF;
    text-decoration: none;
}

footer .section a:hover {
    color: white;
    text-decoration: underline;
}

/* Subscribe form */
footer .subscribe-form {
    display: block;
}

footer .subscribe-form input,
footer .subscribe-form button {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

footer .subscribe-form input {
    background: white;
    color: #003366;
}

footer .subscribe-form button {
    background: #7FDBFF;
    color: #003366;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 0;
}

footer .subscribe-form button:hover {
    background: white;
}

/* Desktop only - horizontal layout */
@media screen and (min-width: 769px) {
    footer {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        padding: 40px 30px;
    }
    
    footer .section {
        flex: 1;
        min-width: 200px;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
}
        
.cart-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
        
.footer-links {
    display: flex;
    gap: 20px;
}
        
.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
        
.footer-links a:hover {
    color: #7FDBFF;
}
        
@media (max-width: 768px) {
.cart-table thead {
    display: none;
}
            
.cart-table tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 10px;
}
            
.cart-table td {
    display: block;
    text-align: right;
    padding: 10px 15px;
    position: relative;
    border-bottom: 1px solid #eaeaea;
}
            
.cart-table td:last-child {
    border-bottom: none;
}
            
.cart-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    font-weight: 600;
    color: #001f3f;
}
           
.cart-product-cell {
    justify-content: flex-end;
}
            
.cart-summary-row {
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}
            
.cart-footer-content {
    flex-direction: column;
    gap: 15px;
}
            
nav ul {
    flex-direction: column;
    gap: 10px;
}
            
.user-info {
    flex-direction: column;
    gap: 10px;
}

/* Mobile footer - NO OVERRIDE NEEDED - already mobile-first above */

footer .subscribe-form input::placeholder {
    color: rgba(0, 51, 102, 0.6);
}

footer .subscribe-form button {
    background: #3498db;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

footer .subscribe-form button:hover {
    background: #2980b9;
}
}
/*End of Cart CSS*/

.guestname {
    padding: 10px 20px;
    background-color: #6c5858;
    color: #fff;
    position: static;
    width: 100%;
    text-align: center;
    display: block;
}

/*Start of index CSS*/
.index-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    perspective: 1000px;
}
        
.index-box {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    transform: translateZ(0);
    height: auto;
    margin-bottom: 20px;
    margin-top: 20px;
}
        
.index-box:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
        
/* Different heights for boxes */
.index-box:nth-child(1) { height: 580px; }
.index-box:nth-child(2) { height: 540px; }
.index-box:nth-child(3) { height: 540px; }
.index-box:nth-child(4) { height: 540px; }
.index-box:nth-child(5) { height: 620px; }
.index-box:nth-child(6) { height: 620px; }
.index-box:nth-child(7) { height: 620px; }
.index-box:nth-child(8) { height: 620px; }
.index-box:nth-child(9) { height: 540px; }
.index-box:nth-child(10) { height: 400px; }
.index-box:nth-child(11) { height: 380px; }
        
/* Box Header */
.index-box-header {
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    transform: translateZ(10px);
}
        
.index-box-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
        
.index-box-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: inherit;
    transform: skewY(-2deg);
    z-index: -1;
}
        
/* Box Body */
.index-box-body {
    padding: 25px;
    flex-grow: 1;
    background: #f8f9fa;
    transform: translateZ(5px);
}
        
.index-box ul {
    list-style-type: none;
}
        
.index-box li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px dashed #dce1e5;
    transition: all 0.3s ease;
}
       
.index-box li:hover {
    background: rgba(52, 152, 219, 0.1);
    padding-left: 35px;
}
        
.index-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.5rem;
}
        
/* Box Footer */
.index-box-footer {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    transform: translateZ(10px);
}
        
.index-box-footer button {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
}
       
.index-box-footer button:hover {
    background: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
        
/* Different colors for each box header */
.index-box:nth-child(1) .index-box-header { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(2) .index-box-header { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(3) .index-box-header { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(4) .index-box-header { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(5) .index-box-header { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(6) .index-box-header { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(7) .index-box-header { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(8) .index-box-header { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(9) .index-box-header { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(10) .index-box-header { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(11) .index-box-header { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
     
/* Matching footer colors */
.index-box:nth-child(1) .index-box-footer { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(2) .index-box-footer { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(3) .index-box-footer { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(4) .index-box-footer { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(5) .index-box-footer { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(6) .index-box-footer { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(7) .index-box-footer { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(8) .index-box-footer { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(9) .index-box-footer { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(10) .index-box-footer { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
.index-box:nth-child(11) .index-box-footer { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); }
        
/* Responsive design */
@media (max-width: 768px) {
.index-container {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
           
.index-box {
    height: auto !important;
    min-height: 320px;
}
}
        
/* Animation for page load */
@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
}
    to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

}
.index-box {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}
        
.index-box:nth-child(1) { animation-delay: 0.1s; }
.index-box:nth-child(2) { animation-delay: 0.2s; }
.index-box:nth-child(3) { animation-delay: 0.3s; }
.index-box:nth-child(4) { animation-delay: 0.4s; }
.index-box:nth-child(5) { animation-delay: 0.5s; }
.index-box:nth-child(6) { animation-delay: 0.6s; }
.index-box:nth-child(7) { animation-delay: 0.7s; }
.index-box:nth-child(8) { animation-delay: 0.8s; }
.index-box:nth-child(9) { animation-delay: 0.9s; }
.index-box:nth-child(10) { animation-delay: 1.0s; }
.index-box:nth-child(11) { animation-delay: 1.1s; }
/*End of index CSS*/
        
/* Start of Company Registration CSS */
.company-registration-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
        
.company-registration-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin: 30px 0;
    padding-bottom: 15px;
    border: 3px solid #3498db;
    background-color: #3498db;
    border-radius: 10px;
}
        
.company-registration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.company-registration-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }
        
        .company-registration-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            border-color: #3498db;
        }
        
        .company-registration-box.selected {
            border-color: #3498db;
            background: #2c3e50;
        }
        
        .company-registration-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .company-registration-service-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #fff;
        }
        
        .company-registration-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: #27ae60;
        }
        
        .company-registration-body {
            margin-top: 15px;
        }
        
        .company-registration-description {
            color: #fff;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .company-registration-requirements-title {
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }
        
        .company-registration-requirements-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .company-registration-requirements-item {
            padding: 5px 0;
            padding-left: 20px;
            position: relative;
        }
        
        .company-registration-requirements-item:before {
            content: "•";
            color: #fff;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .company-registration-form-container {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
            display: none;
        }
        
        .company-registration-form-title {
            text-align: center;
            color: #fff;
            margin-bottom: 25px;
            font-size: 1.8rem;
        }
        
        .company-registration-business-names {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .company-registration-business-names-title {
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .company-registration-form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .company-registration-form-group {
            margin-bottom: 15px;
        }
        
        .company-registration-form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: #fff;
        }
        
        .company-registration-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            box-sizing: border-box;
        }
        
        .company-registration-form-group-full {
            grid-column: 1 / -1;
        }
        
        .company-registration-upload-label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: #fff;
        }
        
        .company-registration-upload-input {
            width: 100%;
            padding: 10px;
            border: 1px dashed #ddd;
            border-radius: 5px;
            background-color: #f9f9f9;
        }
        
        .company-registration-add-btn {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            margin-bottom: 20px;
            transition: background-color 0.3s;
        }
        
        .company-registration-add-btn:hover {
            background-color: #2980b9;
        }
        
        .company-registration-options {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .company-registration-option-group {
            margin-bottom: 15px;
        }
        
        .company-registration-option-label {
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        .company-registration-checkbox {
            margin-right: 10px;
            width: 18px;
            height: 18px;
        }
        
        .company-registration-bank-select {
            margin-top: 10px;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            width: 100%;
            display: none;
        }
        
        .company-registration-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background-color: #22653f;
            border-radius: 5px;
            margin-bottom: 25px;
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
        }
        
        .company-registration-table-container {
            overflow-x: auto;
            margin-bottom: 25px;
        }

          .company-registration-table {
                font-size: 0.9rem;
            }
        
        .company-registration-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .company-registration-table th,
        .company-registration-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .company-registration-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            color: #fff;
        }
        
        .company-registration-director-files {
            max-width: 200px;
        }
        
        .company-registration-director-files-title {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .company-registration-file-list {
            list-style-type: none;
            padding-left: 0;
            margin: 0;
        }
        
        .company-registration-file-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
            border-bottom: 1px dotted #eee;
        }
        
        .company-registration-file-delete {
            color: #e74c3c;
            cursor: pointer;
            font-weight: bold;
        }
        
        .company-registration-delete-btn {
            background-color: #e74c3c;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;
        }
        
        .company-registration-pay-btn {
            width: 100%;
            padding: 15px;
            background-color: #27ae60;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .company-registration-pay-btn:hover {
            background-color: #219653;
        }
        
        @media (max-width: 768px) {
            .company-registration-grid {
                grid-template-columns: 1fr;
            }
            
            .company-registration-form-grid {
                grid-template-columns: 1fr;
            }         
        }      
        /* End of Company Registration CSS */
        
       
        /* Business Consulting Payment Modal CSS */
        .business-consulting-payment-submit-btn:hover {
            background: linear-gradient(to right, #27ae60, #219653);
        }

        .business-consulting-payment-error {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .business-consulting-payment-instructions {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            color: #c0c0c0;
            display: none;
        }

        .business-consulting-payment-instructions h4 {
            margin-top: 0;
            color: #fff;
        }

        .business-consulting-payment-instructions ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        @media (max-width: 768px) {
            .business-consulting-payment-methods {
                flex-direction: column;
            }
        }

      
            
            .business-consulting-payment-modal-content {
                width: 95%;
                padding: 20px;
            }
            
            .business-consulting-payment-form-row {
                flex-direction: column;
                gap: 0;
            }

            .business-consulting-payment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .business-consulting-payment-modal-content {
            background: rgba(40, 50, 60, 0.95);
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid #34495e;
            position: relative;
        }

        .business-consulting-payment-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #c0c0c0;
        }

        .business-consulting-payment-modal-title {
            margin-bottom: 20px;
            color: #c0c0c0;
            text-align: center;
        }
        
        .business-consulting-payment-summary {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .business-consulting-payment-summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #c0c0c0;
        }

        .business-consulting-payment-summary-total {
            font-weight: bold;
            border-top: 1px solid #34495e;
            padding-top: 10px;
            margin-top: 10px;
            color: #fff;
        }

        .business-consulting-payment-methods {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .business-consulting-payment-method {
            flex: 1;
            text-align: center;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            cursor: pointer;
            color: #c0c0c0;
            transition: all 0.3s;
        }

        .business-consulting-payment-method.selected {
            border-color: #3498db;
            background-color: rgba(52, 152, 219, 0.2);
            color: #fff;
        }

        .business-consulting-payment-form-group {
            margin-bottom: 15px;
        }

        .business-consulting-payment-form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: #c0c0c0;
        }

        .business-consulting-payment-form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(30, 40, 50, 0.8);
            color: #c0c0c0;
        }

        .business-consulting-payment-form-row {
            display: flex;
            gap: 15px;
        }

        .business-consulting-payment-form-row .business-consulting-payment-form-group {
            flex: 1;
        }

        .business-consulting-payment-submit-btn {
            background: #27ae60;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
        }
            /*End of Business Consulting CSS*/

        /* Start of of existing Structured Packages CSS */
        .structured-packages-page-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .structured-packages-page-title {
            text-align: center;
            color: #fff;
            margin: 30px;
            font-size: 2.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            background: linear-gradient(to right, #06435a, #07377c);
            padding: 20px;
            border-radius: 10px;
        }

        .structured-packages-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .structured-packages-box {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            border: 3px solid;
        }

        /* Bronze Package */
        .structured-packages-box.bronze {
            border-color: #cd7f32;
        }

        /* Silver Package */
        .structured-packages-box.silver {
            border-color: #c0c0c0;
        }

        /* Gold Package */
        .structured-packages-box.gold {
            border-color: #ffd700;
        }

        /* Platinum Package */
        .structured-packages-box.platinum {
            border-color: #e5e4e2;
        }

        /* Diamond Package */
        .structured-packages-box.diamond {
            border-color: #b9f2ff;
        }

        .structured-packages-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .structured-packages-box.popular {
            transform: scale(1.03);
        }

        .structured-packages-box.popular:hover {
            transform: scale(1.03) translateY(-5px);
        }

        .structured-packages-header {
            padding: 25px 20px;
            color: white;
            text-align: center;
            position: relative;
        }

        /* Header Colors */
        .structured-packages-box.bronze .structured-packages-header {
            background: linear-gradient(135deg, #804a00, #cd7f32);
        }

        .structured-packages-box.silver .structured-packages-header {
            background: linear-gradient(135deg, #a0a0a0, #e0e0e0);
        }

        .structured-packages-box.gold .structured-packages-header {
            background: linear-gradient(135deg, #daa520, #ffd700);
        }

        .structured-packages-box.platinum .structured-packages-header {
            background: linear-gradient(135deg, #858482, #e5e4e2);
        }

        .structured-packages-box.diamond .structured-packages-header {
            background: linear-gradient(135deg, #4ee2ec, #b9f2ff);
        }

        /* Footer Colors */
        .structured-packages-box.bronze .structured-packages-footer {
            background: linear-gradient(135deg, #804a00, #cd7f32);
        }

        .structured-packages-box.silver .structured-packages-footer {
            background: linear-gradient(135deg, #a0a0a0, #e0e0e0);
        }

        .structured-packages-box.gold .structured-packages-footer {
            background: linear-gradient(135deg, #daa520, #ffd700);
        }

        .structured-packages-box.platinum .structured-packages-footer {
            background: linear-gradient(135deg, #858482, #e5e4e2);
        }

        .structured-packages-box.diamond .structured-packages-footer {
            background: linear-gradient(135deg, #4ee2ec, #b9f2ff);
        }

        .structured-packages-header h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
        }

        .structured-packages-price-tag {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 20px;
            border-radius: 20px;
            display: inline-block;
        }

        .structured-packages-ribbon {
            position: absolute;
            top: 15px;
            right: -30px;
            transform: rotate(45deg);
            background: #ffc107;
            color: #333;
            padding: 5px 40px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .structured-packages-body {
            padding: 25px 20px;
            flex-grow: 1;
        }

        .structured-packages-body ul {
            list-style-type: none;
        }

        .structured-packages-body li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .structured-packages-body li:before {
            content: "✓";
            color: #2ecc71;
            margin-right: 12px;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .structured-packages-body li:last-child {
            border-bottom: none;
        }

        .structured-packages-footer {
            padding: 20px;
            text-align: center;
            background: #f8f9fa;
            border-top: 1px solid #e9ecef;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .structured-packages-checkbox-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .structured-packages-checkbox {
            width: 20px;
            height: 20px;
            accent-color: #27ae60;
        }

        .structured-packages-checkbox-label {
            font-weight: 600;
            color: #2c3e50;
        }

        .structured-packages-cart-container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            margin-top: 40px;
        }

        .structured-packages-cart-title {
            text-align: center;
            font-size: 24px;
            color: #fff;
            margin: 0 0 25px 0;
            background: linear-gradient(135deg, #283f56 0%, #6eac22 100%);
            padding: 15px;
            border-radius: 10px;
            font-weight: 700;
        }

        .structured-packages-cart-items {
            margin-bottom: 20px;
            max-height: 300px;
            overflow-y: auto;
        }

        .structured-packages-cart-item {
            display: flex;
            justify-content: space-between;
            padding: 15px;
            border-bottom: 1px solid #e9ecef;
            background: white;
            margin-bottom: 10px;
            border-radius: 8px;
            align-items: center;
        }

        .structured-packages-cart-item-details {
            flex-grow: 1;
        }

        .structured-packages-cart-item-name {
            font-weight: 600;
            color: #2c3e50;
        }

        .structured-packages-cart-item-price {
            font-weight: 700;
            color: #28a745;
            font-size: 1.2rem;
        }

        .structured-packages-cart-item-remove {
            color: #dc3545;
            cursor: pointer;
            margin-left: 15px;
            font-size: 1.2rem;
        }

        .structured-packages-cart-summary {
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            margin-top: 20px;
            border: 1px solid #e9ecef;
        }

        .structured-packages-cart-total {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            font-size: 1.8rem;
            font-weight: 800;
            color: #2c3e50;
            border-top: 2px solid #dee2e6;
            margin-top: 15px;
        }

        .structured-packages-cart-items {
            font-size: 0.85rem;
        }

        .structured-packages-cart-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
            gap: 15px;
        }

        .structured-packages-pay-now-btn {
            background: linear-gradient(to right, #28a745, #20c997);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex: 1;
        }

        .structured-packages-pay-now-btn:hover {
            background: linear-gradient(to right, #218838, #1e9e8a);
        }

        .structured-packages-pay-now-btn:disabled {
            background: #6c757d;
            cursor: not-allowed;
        }

        .structured-packages-empty-cart-message {
            text-align: center;
            padding: 30px;
            color: #6c757d;
            font-style: italic;
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 25px;
            border-radius: 8px;
            background: #28a745;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateX(100%);
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification.error {
            background: #dc3545;
        }

        @media (max-width: 992px) {
            .structured-packages-container {
                grid-template-columns: 1fr;
            }
            
            .structured-packages-cart-buttons {
                flex-direction: column;
            }
        }

        /*Start of Architectural CSS*/
        .architecture-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            margin-bottom: 30px;
            background: #3172a1;
            border-radius: 20px;
            box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);;
        }
        
        .architecture-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .architecture-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
            transform: rotate(30deg);
        }
        
        .architecture-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 800;
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .architecture-header p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            opacity: 0.9;
        }               
        
        /* Plan Type Selector */
        .architecture-plan-type-selector {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            justify-content: center;
        }
        
        .architecture-plan-type-btn {
            padding: 15px 25px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #e4e8f0 0%, #d1d9e8 100%);
            color: #2c3e50;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .architecture-plan-type-btn.active {
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            color: white;
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
        }
        
        .architecture-plan-type-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        /* Sections */       
        .architecture-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #3498db, #2c3e50);
        }
        
        .architecture-section h3 {
            color: #2c3e50;
            margin-bottom: 25px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            font-family: 'Playfair Display', serif;
        }
        
        .architecture-section-icon {
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        /* Form Grid */
        .architecture-form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .architecture-form-group {
            margin-bottom: 20px;
        }
        
        .architecture-form-group.full-width {
            grid-column: 1 / -1;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #fff;
        }
        
        .architecture-required {
            color: #e74c3c;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
            background: white;
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        /* Checkbox Groups */
        .architecture-checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 10px;
        }
        
        .architecture-checkbox-item {
            display: flex;
            align-items: center;
        }
        
        .architecture-checkbox-item input {
            width: auto;
            margin-right: 10px;
        }
        
        /* Submit Section */
        .architecture-submit-section {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        .architecture-submit-btn {
            padding: 15px 40px;
            background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .architecture-submit-btn:hover {
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        .architecture-submit-btn:active {
            transform: translateY(1px);
        }
        
        /* Structured Packages Link */
        .architecture-packages-link {
            display: block;
            text-align: center;
            margin-top: 30px;
            padding: 15px;
            background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
            color: white;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
        }
        
        .architecture-packages-link:hover {
            background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .architecture-form-grid {
                grid-template-columns: 1fr;
            }
            
            .architecture-plan-type-selector {
                flex-direction: column;
            }
            
            .architecture-header h1 {
                font-size: 2.2rem;
            }
            
            .architecture-header p {
                font-size: 1.1rem;
            }
            
            .architecture-form {
                padding: 20px;
            }
            
            .architecture-section {
                padding: 20px;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .architecture-section {
            animation: fadeIn 0.5s ease-out;
        }
        /*End Of Architectural CSS*/

        /* Start Of Web Design CSS */
        .web-design-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
        }

        .web-design-page-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .web-design-page-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .web-design-subtitle {
            color: #7f8c8d;
            font-size: 16px;
            max-width: 800px;
            margin: 20px auto;
            text-align: center;
        }

        .web-design-info-box-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .web-design-info-box {
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .web-design-content-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .web-design-features-list {
            flex: 1;
        }

        /* Different sizes for boxes */
        .web-design-info-box.small {
            min-height: 650px;
            background: linear-gradient(135deg, #ffffff, #f5f7fa);
        }

        .web-design-info-box.medium {
            min-height: 720px;
            background: linear-gradient(135deg, #ffffff, #f0f9ff);
        }

        .web-design-info-box.large {
            min-height: 800px;
            background: linear-gradient(135deg, #ffffff, #f5f3ff);
        }

        /* Different color themes */
        .web-design-info-box.blue {
            border-top: 5px solid #3498db;
        }

        .web-design-info-box.green {
            border-top: 5px solid #2ecc71;
        }

        .web-design-info-box.purple {
            border-top: 5px solid #9b59b6;
        }

        .web-design-info-box.orange {
            border-top: 5px solid #e67e22;
        }

        .web-design-info-box.red {
            border-top: 5px solid #e74c3c;
        }

        .web-design-info-box.teal {
            border-top: 5px solid #1abc9c;
        }

        .web-design-info-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .web-design-info-box h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.6rem;
            padding-bottom: 15px;
            border-bottom: 2px solid #eee;
            display: flex;
            align-items: center;
        }

        .web-design-info-box h3 i {
            margin-right: 10px;
            font-size: 1.8rem;
        }

        /* Package type tag badge */
        .web-design-pkg-tag {
            display: inline-block;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 18px;
            margin-top: -8px;
        }

        /* Override pseudo checkmark when Font Awesome icons are used inside li */
        .web-design-features-list li::before {
            display: none;
        }
        .web-design-features-list li {
            padding-left: 0;
        }
        .web-design-features-list li i.fas {
            color: #2ecc71;
            margin-right: 8px;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .web-design-info-box ul {
            list-style-type: none;
            margin-bottom: 25px;
        }

        .web-design-info-box li {
            padding: 8px 0;
            border-bottom: 1px dotted #eee;
            position: relative;
            padding-left: 30px;
        }

        .web-design-info-box li:before {
            content: "✓";
            color: #2ecc71;
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        .web-design-info-box li:last-child {
            border-bottom: none;
        }

        .web-design-price {
            font-weight: bold;
            color: #0aa41e;
            font-size: 1.1rem;
        }

        .web-design-payment-options {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }

        .web-design-payment-options h4 {
            margin-bottom: 15px;
            color: #2c3e50;
            display: flex;
            align-items: center;
        }

        .web-design-payment-options h4 i {
            margin-right: 10px;
        }

        .web-design-option {
            margin-bottom: 12px;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            background-color: #1a4b8c;
            color: white;
        }

        .web-design-option:hover {
            background-color: #2a63b8;
            transform: scale(1.02);
        }

        .web-design-option.selected {
            background-color: #3498db;
            border-color: #3498db;
            box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
        }

        .web-design-option input {
            margin-right: 10px;
        }

        .web-design-option-details {
            display: flex;
            flex-direction: column;
            margin-top: 10px;
        }

        .web-design-once-off, .web-design-monthly {
            display: flex;
            justify-content: space-between;
            padding: 5px 0;
        }

        .web-design-amount {
            font-weight: bold;
            color: #fff;
        }

        .web-design-total {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px dashed #ccc;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
        }

        .web-design-buttons {
            display: flex;
            gap: 15px;
            margin-top: auto;
            padding-top: 20px;
        }

        .web-design-pay-now {
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.35);
            border: none;
            padding: 15px 22px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            width: 100%;
        }

        .web-design-pay-now i {
            margin-right: 8px;
        }

        .web-design-pay-now:hover {
            background: linear-gradient(135deg, #2980b9, #1a252f);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(52, 152, 219, 0.45);
        }

        .web-design-cart-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #2ecc71;
            color: white;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            display: none;
            z-index: 1000;
            animation: web-design-slideIn 0.5s ease;
        }

        @keyframes web-design-slideIn {
            from {
                transform: translateX(100px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .web-design-service-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 2.5rem;
            opacity: 0.1;
        }

        /* Payment Modal Styles */
        .web-design-payment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .web-design-payment-modal-content {
            background: rgba(40, 50, 60, 0.95);
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid #34495e;
            position: relative;
        }

        .web-design-payment-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #c0c0c0;
        }

        .web-design-payment-modal-title {
            margin-bottom: 20px;
            color: #c0c0c0;
            text-align: center;
        }

        .web-design-payment-summary {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .web-design-payment-summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #c0c0c0;
        }

        .web-design-payment-summary-total {
            font-weight: bold;
            border-top: 1px solid #34495e;
            padding-top: 10px;
            margin-top: 10px;
            color: #fff;
        }

        .web-design-payment-methods {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .web-design-payment-method {
            flex: 1;
            text-align: center;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            cursor: pointer;
            color: #c0c0c0;
            transition: all 0.3s;
        }

        .web-design-payment-method.selected {
            border-color: #3498db;
            background-color: rgba(52, 152, 219, 0.2);
            color: #fff;
        }

        .web-design-payment-form-group {
            margin-bottom: 15px;
        }

        .web-design-payment-form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: #c0c0c0;
        }

        .web-design-payment-form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(30, 40, 50, 0.8);
            color: #c0c0c0;
        }

        .web-design-payment-form-row {
            display: flex;
            gap: 15px;
        }

        .web-design-payment-form-row .web-design-payment-form-group {
            flex: 1;
        }

        .web-design-payment-submit-btn {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
        }

        .web-design-payment-submit-btn:hover {
            background: linear-gradient(to right, #27ae60, #219653);
        }

        .web-design-payment-error {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .web-design-payment-instructions {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            color: #c0c0c0;
            display: none;
        }

        .web-design-payment-instructions h4 {
            margin-top: 0;
            color: #fff;
        }

        .web-design-payment-instructions ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        @media (max-width: 768px) {
            .web-design-info-box-container {
                grid-template-columns: 1fr;
            }
            
            .web-design-buttons {
                flex-direction: column;
            }
            
            .web-design-payment-methods {
                flex-direction: column;
            }
        }
        /* End Of Web Design CSS */
        
        
        /*Start of IT Infrastructure CSS*/
.it-infrastructure-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.it-infrastructure-page-title {
    background: #06435a;
    color: #fff;
    font-size: 36px;
    width: 100%;
    max-width: 1210px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px 10px 0 0;
}

.it-infrastructure-section-title {
    background: #067590;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin: 40px 0 30px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    max-width: 1200px;
}

.it-infrastructure-plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 40px;
}

.it-infrastructure-plan-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 650px; /* Added minimum height for consistency */
}

.it-infrastructure-plan-card.popular {
    border: 2px solid #48f404;
    transform: scale(1.05);
}

.it-infrastructure-plan-card.popular::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #48f404;
    color: #000;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
}

.it-infrastructure-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5);
}

.it-infrastructure-plan-card.popular:hover {
    transform: translateY(-5px) scale(1.05);
}

.it-infrastructure-plan-tier {
    color: #4ECDC4;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.it-infrastructure-plan-title {
    color: #333;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.it-infrastructure-plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #4ECDC4;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-header {
    padding: 12px 15px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.feature-header:hover {
    background: rgba(76, 175, 80, 0.1);
}

.feature-header::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    margin-right: 10px;
}

.feature-toggle {
    font-size: 18px;
    font-weight: bold;
    color: #4ECDC4;
    transition: transform 0.3s ease;
}

.feature-item.expanded .feature-toggle {
    transform: rotate(45deg);
}

.feature-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    color: #555;
}

.feature-item.expanded .feature-details {
    max-height: 500px;
    padding: 15px;
    border-top: 1px solid rgba(76, 175, 80, 0.2);
}

.feature-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-details li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.feature-details li::before {
    content: '•';
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.it-infrastructure-book-btn {
    width: 100%;
    height: 44px; /* Fixed height instead of padding for uniform size */
    background: linear-gradient(45deg, #4CAF50, #45a049);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 15px; /* Slightly reduced font size */
    font-weight: 500; /* Reduced font weight for thinner appearance */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap; /* Prevents text wrapping */
    overflow: hidden; /* Ensures text doesn't overflow */
    text-overflow: ellipsis; /* Adds ... if text is too long */
    line-height: 1px; /* Ensures consistent line height */
}

.it-infrastructure-book-btn:hover {
    background: linear-gradient(45deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    background: #f44336;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 24px;
    color: #06435a;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.close-btn:hover {
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #45a049, #4CAF50);
}

@media (max-width: 768px) {
    .it-infrastructure-plans-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .it-infrastructure-plan-card {
        min-height: auto; /* Remove fixed height on mobile */
    }
    
    .it-infrastructure-plan-card.popular {
        transform: none;
    }
    
    .it-infrastructure-plan-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .it-infrastructure-page-title {
        font-size: 28px;
    }
    
    .it-infrastructure-section-title {
        font-size: 24px;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .it-infrastructure-book-btn {
        height: 10px; /* Slightly smaller on mobile */
        font-size: 14px;
        margin-top: 0px;
        margin-bottom: 0px;
    }
}
/*End of IT Infrastructure CSS*/

        /*Start of Business Consulting Service CSS*/
        .business-consulting-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .business-consulting-title {
            text-align: center;
            margin-bottom: 30px;
            color: #fff;
            font-size: 2.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .business-consulting-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .business-consulting-box {
            background: #1c6ea4;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .business-consulting-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        
        .business-consulting-header {
            padding: 20px;
            background: rgba(40, 50, 60, 0.9);
            border-bottom: 1px solid #34495e;
        }
        
        .business-consulting-title {
            font-weight: 600;
            font-size: 26px;
            background: #067594;
            color: #c0c0c0;
            margin-bottom: 5px;
        }
        
        .business-consulting-body {
            padding: 20px;
            flex-grow: 1;
        }
        
        .business-consulting-description {
            color: #a0a0a0;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .business-consulting-footer {
            padding: 15px 20px;
            background: rgba(40, 50, 60, 0.9);
            border-top: 1px solid #34495e;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .business-consulting-price {
            font-weight: 700;
            color: #00ff6e;
            font-size: 1.1rem;
        }
        
        .business-consulting-checkbox-container {
            display: flex;
            align-items: center;
        }
        
        .business-consulting-checkbox {
            margin-right: 10px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        
        .business-consulting-checkbox-label {
            cursor: pointer;
            font-weight: 500;
            color: #c0c0c0;
        }
        
        .business-consulting-request-quote-btn {
            background: linear-gradient(to right, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 1px 2px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 450;
            transition: all 0.3s;
            width: 50%;
            margin-top: 2px;
            margin-left: 2px;
        }
        
        .business-consulting-request-quote-btn:hover {
            background: linear-gradient(to right, #2980b9, #1c6ea4);
        }
        
        .business-consulting-included-features {
            margin-top: 15px;
            padding: 15px;
            background-color: rgba(50, 60, 70, 0.6);
            border-radius: 8px;
            display: none;
        }
        
        .business-consulting-included-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: #c0c0c0;
        }
        
        .business-consulting-features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        
        .business-consulting-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #a0a0a0;
        }
        
        .business-consulting-feature-item:before {
            content: "✓";
            color: #2ecc71;
            margin-right: 8px;
            font-weight: bold;
        }
        
        .business-consulting-cart-container {
            background: #06435a;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            margin-top: 30px;
        }
        
        .business-consulting-cart-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-align: center;
            background: #06435a;
            padding: 10px;
            margin: -25px -25px 20px -25px;
            border-radius: 10px 10px 0 0;
        }
        
        .business-consulting-cart-items {
            margin-bottom: 20px;
            max-height: 300px;
            overflow-y: auto;
            color: #fff;
        }
        
        .business-consulting-cart-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #34495e;
            color: #fff;
        }
        
        .business-consulting-cart-total {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            font-size: 1.8rem;
            font-weight: 800;
            border-top: 2px solid #34495e;
            margin-top: 10px;
            color: #fff;
        }

        .business-consulting-cart-items {
            font-size: 0.85rem;
        }
        
        .business-consulting-cart-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .business-consulting-pay-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            background: #00ff6e;
            color: white;
            width: 100%;
        }
        
        .business-consulting-pay-btn:hover {
            background: #155724;
        }
        
        .business-consulting-empty-cart {
            text-align: center;
            color: #7f8c8d;
            padding: 20px;
        }
        
        .business-consulting-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .business-consulting-modal-content {
            background: rgba(40, 50, 60, 0.95);
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid #34495e;
        }
        
        .business-consulting-modal-title {
            margin-bottom: 20px;
            color: #c0c0c0;
            text-align: center;
        }
        
        .business-consulting-form-group {
            margin-bottom: 20px;
        }
        
        .business-consulting-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #c0c0c0;
        }
        
        .business-consulting-form-group input, .business-consulting-form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #34495e;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(30, 40, 50, 0.8);
            color: #c0c0c0;
        }
        
        .business-consulting-form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .business-consulting-modal-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }
        
        .business-consulting-cancel-btn, .business-consulting-submit-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .business-consulting-cancel-btn {
            background: linear-gradient(to right, #95a5a6, #7f8c8d);
            color: white;
        }
        
        .business-consulting-cancel-btn:hover {
            background: linear-gradient(to right, #7f8c8d, #6c7a7b);
        }
        
        .business-consulting-submit-btn {
            background: linear-gradient(to right, #3498db, #2980b9);
            color: white;
        }
        
        .business-consulting-submit-btn:hover {
            background: linear-gradient(to right, #2980b9, #1c6ea4);
        }
        
        .business-consulting-success-message {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: white;
            padding: 15px;
            border-radius: 5px;
            text-align: center;
            margin-top: 20px;
            display: none;
        }
        
        /* Payment Modal Styles */
        .business-consulting-payment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .business-consulting-payment-modal-content {
            background: rgba(40, 50, 60, 0.95);
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid #34495e;
            position: relative;
        }
        
        .business-consulting-payment-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #c0c0c0;
        }
        
        .business-consulting-payment-modal-title {
            margin-bottom: 20px;
            color: #c0c0c0;
            text-align: center;
        }
        
        .business-consulting-payment-summary {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .business-consulting-payment-summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #c0c0c0;
        }
        
        .business-consulting-payment-summary-total {
            font-weight: bold;
            border-top: 1px solid #34495e;
            padding-top: 10px;
            margin-top: 10px;
            color: #fff;
        }
        
        .business-consulting-payment-methods {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .business-consulting-payment-method {
            flex: 1;
            text-align: center;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            cursor: pointer;
            color: #c0c0c0;
            transition: all 0.3s;
        }
        
        .business-consulting-payment-method.selected {
            border-color: #3498db;
            background-color: rgba(52, 152, 219, 0.2);
            color: #fff;
        }
        
        .business-consulting-payment-form-group {
            margin-bottom: 15px;
        }
        
        .business-consulting-payment-form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: #c0c0c0;
        }
        
        .business-consulting-payment-form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(30, 40, 50, 0.8);
            color: #c0c0c0;
        }
        
        .business-consulting-payment-form-row {
            display: flex;
            gap: 15px;
        }
        
        .business-consulting-payment-form-row .business-consulting-payment-form-group {
            flex: 1;
        }
        
        .business-consulting-payment-submit-btn {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
        }
        
        .business-consulting-payment-submit-btn:hover {
            background: linear-gradient(to right, #27ae60, #219653);
        }
        
        .business-consulting-payment-error {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }
        
        .business-consulting-payment-instructions {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            color: #c0c0c0;
            display: none;
        }
        
        .business-consulting-payment-instructions h4 {
            margin-top: 0;
            color: #fff;
        }
        
        .business-consulting-payment-instructions ul {
            margin: 10px 0;
            padding-left: 20px;
        }
        
        @media (max-width: 768px) {
            .business-consulting-grid {
                grid-template-columns: 1fr;
            }
            
            .business-consulting-features-grid {
                grid-template-columns: 1fr;
            }
            
            .business-consulting-cart-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .business-consulting-pay-btn {
                width: 100%;
            }
            
            .business-consulting-footer {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            
            .business-consulting-payment-methods {
                flex-direction: column;
            }
        }

        .business-consulting-payment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .business-consulting-payment-modal-content {
            background: rgba(40, 50, 60, 0.95);
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid #34495e;
            position: relative;
        }

        .business-consulting-payment-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #c0c0c0;
        }

        .business-consulting-payment-modal-title {
            margin-bottom: 20px;
            color: #c0c0c0;
            text-align: center;
        }

        .business-consulting-payment-summary {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .business-consulting-payment-summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #c0c0c0;
        }

        .business-consulting-payment-summary-total {
            font-weight: bold;
            border-top: 1px solid #34495e;
            padding-top: 10px;
            margin-top: 10px;
            color: #fff;
        }

        .business-consulting-payment-methods {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .business-consulting-payment-method {
            flex: 1;
            text-align: center;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            cursor: pointer;
            color: #c0c0c0;
            transition: all 0.3s;
        }

        .business-consulting-payment-method.selected {
            border-color: #3498db;
            background-color: rgba(52, 152, 219, 0.2);
            color: #fff;
        }

        .business-consulting-payment-form-group {
            margin-bottom: 15px;
        }

        .business-consulting-payment-form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: #c0c0c0;
        }

        .business-consulting-payment-form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(30, 40, 50, 0.8);
            color: #c0c0c0;
        }

        .business-consulting-payment-form-row {
            display: flex;
            gap: 15px;
        }

        .business-consulting-payment-form-row .business-consulting-payment-form-group {
            flex: 1;
        }

        .business-consulting-payment-submit-btn {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
        }

        .business-consulting-payment-submit-btn:hover {
            background: linear-gradient(to right, #27ae60, #219653);
        }

        .business-consulting-payment-error {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .business-consulting-payment-instructions {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            color: #c0c0c0;
            display: none;
        }

        .business-consulting-payment-instructions h4 {
            margin-top: 0;
            color: #fff;
        }

        .business-consulting-payment-instructions ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        @media (max-width: 768px) {
            .business-consulting-payment-methods {
                flex-direction: column;
            }
        }
        /*End of Business Consulting Service CSS*/

        /* Start of Social Media Growth CSS */
        .social-media-growth-container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .social-media-growth-section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2c3e50;
            margin: 30px 0;
            padding-bottom: 15px;
            border-bottom: 3px solid #3498db;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .social-media-growth-ad-card {
            background: silver;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .social-media-growth-ad-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .social-media-growth-card-header {
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .social-media-growth-card-header h3 {
            font-size: 1.6rem;
            margin: 0;
            font-weight: 600;
        }
        
        .social-media-growth-card-content {
            padding: 25px;
            flex-grow: 1;
        }
        
        .social-media-growth-ad-card ul {
            list-style-type: none;
            margin: 20px 0;
        }
        
        .social-media-growth-ad-card li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            border-bottom: 1px dashed #ecf0f1;
        }
        
        .social-media-growth-ad-card li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
        }
        
        .social-media-growth-price {
            font-size: 1.2rem;
            color: #0aa41e;
            text-align: center;
            margin: 20px 0;
            font-weight: 600;
        }
        
        .social-media-growth-card-footer {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            padding: 20px;
            text-align: center;
        }
        
        .social-media-growth-select-label {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .social-media-growth-select-label:hover {
            transform: scale(1.05);
        }
        
        .social-media-growth-select-label input {
            margin-left: 10px;
            width: 20px;
            height: 20px;
            accent-color: #27ae60;
            cursor: pointer;
        }
        
        .social-media-growth-summary {
            max-width: 800px;
            margin: 40px auto;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            text-align: center;
        }
        
        .social-media-growth-summary p {
            font-size: 1.3rem;
            margin: 15px 0;
            padding: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        
        .social-media-growth-subtotal, .social-media-growth-discount, .social-media-growth-final-total {
            font-weight: 700;
            color: #fff;
        }
        
        .social-media-growth-final-total {
            color: #5fffb0;
            font-size: 1.5rem;
        }
        
        .social-media-growth-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .social-media-growth-buttons button {
            padding: 15px 35px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .social-media-growth-add-to-cart {
            background: #3498db;
            color: white;
        }
        
        .social-media-growth-add-to-cart:hover {
            background: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }
        
        .social-media-growth-pay-now {
            background: #27ae60;
            color: white;
        }
        
        .social-media-growth-pay-now:hover {
            background: #219653;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
        }

        .social-media-growth-cart-count {
            padding: 20px;
            color: #FFF;
        }

        .social-media-growth-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 25px;
            background: #27ae60;
            color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            transform: translateX(100%);
            transition: transform 0.4s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .social-media-growth-notification.show {
            transform: translateX(0);
        }
        
        .social-media-growth-notification.error {
            background: #e74c3c;
        }
        
        /* Platform-specific styling */
        .social-media-growth-ad-card:nth-child(1) .social-media-growth-card-header { background: linear-gradient(135deg, #4285F4 0%, #0F9D58 100%); }
        .social-media-growth-ad-card:nth-child(1) .social-media-growth-card-footer { background: linear-gradient(135deg, #0F9D58 0%, #4285F4 100%); }
        
        .social-media-growth-ad-card:nth-child(2) .social-media-growth-card-header { background: linear-gradient(135deg, #000000 0%, #69C9D0 100%); }
        .social-media-growth-ad-card:nth-child(2) .social-media-growth-card-footer { background: linear-gradient(135deg, #69C9D0 0%, #000000 100%); }
        
        .social-media-growth-ad-card:nth-child(3) .social-media-growth-card-header { background: linear-gradient(135deg, #4267B2 0%, #898F9C 100%); }
        .social-media-growth-ad-card:nth-child(3) .social-media-growth-card-footer { background: linear-gradient(135deg, #898F9C 0%, #4267B2 100%); }
        
        .social-media-growth-ad-card:nth-child(4) .social-media-growth-card-header { background: linear-gradient(135deg, #53306b 0%, #8f3653 100%); }
        .social-media-growth-ad-card:nth-child(4) .social-media-growth-card-footer { background: linear-gradient(135deg, #994c66 0%, #694382 100%); }
        
        .social-media-growth-ad-card:nth-child(5) .social-media-growth-card-header { background: linear-gradient(135deg, #000000 0%, #1DA1F2 100%); }
        .social-media-growth-ad-card:nth-child(5) .social-media-growth-card-footer { background: linear-gradient(135deg, #1DA1F2 0%, #000000 100%); }
        
        .social-media-growth-ad-card:nth-child(6) .social-media-growth-card-header { background: linear-gradient(135deg, #962020 0%, #99661a 100%); }
        .social-media-growth-ad-card:nth-child(6) .social-media-growth-card-footer { background: linear-gradient(135deg, #b58031 0%, #db5757 100%); }
        
        /* Payment Modal Styles */
        .social-media-growth-payment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .social-media-growth-payment-modal-content {
            background: rgba(40, 50, 60, 0.95);
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid #34495e;
            position: relative;
        }

        .social-media-growth-payment-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #c0c0c0;
        }

        .social-media-growth-payment-modal-title {
            margin-bottom: 20px;
            color: #c0c0c0;
            text-align: center;
        }

        .social-media-growth-payment-summary {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .social-media-growth-payment-summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #c0c0c0;
        }

        .social-media-growth-payment-summary-total {
            font-weight: bold;
            border-top: 1px solid #34495e;
            padding-top: 10px;
            margin-top: 10px;
            color: #fff;
        }

        .social-media-growth-payment-methods {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .social-media-growth-payment-method {
            flex: 1;
            text-align: center;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            cursor: pointer;
            color: #c0c0c0;
            transition: all 0.3s;
        }

        .social-media-growth-payment-method.selected {
            border-color: #3498db;
            background-color: rgba(52, 152, 219, 0.2);
            color: #fff;
        }

        .social-media-growth-payment-form-group {
            margin-bottom: 15px;
        }

        .social-media-growth-payment-form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: #c0c0c0;
        }

        .social-media-growth-payment-form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(30, 40, 50, 0.8);
            color: #c0c0c0;
        }

        .social-media-growth-payment-form-row {
            display: flex;
            gap: 15px;
        }

        .social-media-growth-payment-form-row .social-media-growth-payment-form-group {
            flex: 1;
        }

        .social-media-growth-payment-submit-btn {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
        }

        .social-media-growth-payment-submit-btn:hover {
            background: linear-gradient(to right, #27ae60, #219653);
        }

        .social-media-growth-payment-error {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .social-media-growth-payment-instructions {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            color: #c0c0c0;
            display: none;
        }

        .social-media-growth-payment-instructions h4 {
            margin-top: 0;
            color: #fff;
        }

        .social-media-growth-payment-instructions ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        @media (max-width: 768px) {
            .social-media-growth-container {
                grid-template-columns: 1fr;
            }
            
            .social-media-growth-buttons {
                flex-direction: column;
            }
            
            .social-media-growth-payment-methods {
                flex-direction: column;
            }
        }
        /* End of Social Media Growth CSS */
        
       /* Start of Marketing Services CSS */
        .marketing-service-ads {
            text-align: center;
            margin-bottom: 5px;
            margin-top: 30px;
            color: silver;
            font-size: 2.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            background: #044051;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .marketing-service-ads-header {
            text-align: center;
            margin-bottom: 30px;
            color: #fff;
        }
        
        .marketing-service-ads-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .marketing-service-ads-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .marketing-service-ads-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .marketing-service-ad-card {
            background: silver;
            border-radius: 10px;
            margin: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .marketing-service-ad-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        /* Google Colors */
        .marketing-service-ad-card:nth-child(1) .marketing-service-card-header {
            background: linear-gradient(135deg, #4285F4 0%, #0F9D58 100%);
        }
        
        /* TikTok Colors */
        .marketing-service-ad-card:nth-child(2) .marketing-service-card-header {
            background: linear-gradient(135deg, #000000 0%, #69C9D0 100%);
        }
        
        /* Facebook Colors */
        .marketing-service-ad-card:nth-child(3) .marketing-service-card-header {
            background: linear-gradient(135deg, #4267B2 0%, #898F9C 100%);
        }
        
        /* Instagram Colors */
        .marketing-service-ad-card:nth-child(4) .marketing-service-card-header {
            background: linear-gradient(135deg, #53306b 0%, #8f3653 100%);
        }
        
        /* X/Twitter Colors */
        .marketing-service-ad-card:nth-child(5) .marketing-service-card-header {
            background: linear-gradient(135deg, #000000 0%, #1DA1F2 100%);
        }
        
        /* Email/SMS Colors */
        .marketing-service-ad-card:nth-child(6) .marketing-service-card-header {
            background: linear-gradient(135deg, #962020 0%, #99661a 100%);
        }

         /* Google Colors Footer*/
        .marketing-service-ad-card:nth-child(1) .marketing-service-card-footer {
            background: linear-gradient(135deg, #0F9D58 0%, #4285F4 100%);
        }
        
        /* TikTok Colors */
        .marketing-service-ad-card:nth-child(2) .marketing-service-card-footer {
            background: linear-gradient(135deg, #69C9D0 0%, #000000 100%);
        }
        
        /* Facebook Colors */
        .marketing-service-ad-card:nth-child(3) .marketing-service-card-footer {
            background: linear-gradient(135deg, #898F9C 0%, #4267B2 100%);
        }
        
        /* Instagram Colors */
        .marketing-service-ad-card:nth-child(4) .marketing-service-card-footer {
            background: linear-gradient(135deg, #994c66 0%, #694382 100%);
         }
        
        /* X/Twitter Colors */
        .marketing-service-ad-card:nth-child(5) .marketing-service-card-footer {
            background: linear-gradient(135deg, #1DA1F2 0%, #000000 100%);
        }
        
        /* Email/SMS Colors */
        .marketing-service-ad-card:nth-child(6) .marketing-service-card-footer {
            background: linear-gradient(135deg, #b58031 0%, #db5757 100%);
        }        
        
        .marketing-service-card-header {
            padding: 20px;
            color: #000;
            position: relative;
        }
        
        .marketing-service-card-header h3 {
            display: flex;
            align-items: center;
            font-size: 1.3rem;
            margin: 0;
        }
        
        .marketing-service-card-header input[type="checkbox"] {
            margin-right: 12px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        
        .marketing-service-card-body {
            padding: 20px;
        }
        
        .marketing-service-card-body ul {
            list-style-type: none;
        }
        
        .marketing-service-card-body li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .marketing-service-card-body li:before {
            content: "✓";
            color: #2ecc71;
            margin-right: 10px;
            font-weight: bold;
        }
        
        .marketing-service-card-body li:last-child {
            border-bottom: none;
        }
        
        .marketing-service-card-footer {
            padding: 15px 20px;
            background: #f8f9fa;
            border-top: 1px solid #eee;
        }
        
        .marketing-service-price, .marketing-service-management {
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .marketing-service-price {
            color: #fff;
            font-weight: 700;
        }

        .marketing-service-management {
            color: #fff;
            font-weight: 700;
        }
        
        .marketing-service-summary {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .marketing-service-summary p {
            margin-bottom: 12px;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
        }
        
        .marketing-service-summary strong {
            font-size: 1.3rem;
            color: #2c3e50;
        }
        
        .marketing-service-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
            gap: 15px;
        }
        
        .marketing-service-buttons button {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .marketing-service-pay-now {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: white;
        }
        
        .marketing-service-pay-now:hover {
            background: linear-gradient(to right, #27ae60, #219653);
        }
        
        /* Payment Modal Styles */
        .marketing-service-payment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .marketing-service-payment-modal-content {
            background: rgba(40, 50, 60, 0.95);
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid #34495e;
            position: relative;
        }

        .marketing-service-payment-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #c0c0c0;
        }

        .marketing-service-payment-modal-title {
            margin-bottom: 20px;
            color: #c0c0c0;
            text-align: center;
        }

        .marketing-service-payment-summary {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .marketing-service-payment-summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #c0c0c0;
        }

        .marketing-service-payment-summary-total {
            font-weight: bold;
            border-top: 1px solid #34495e;
            padding-top: 10px;
            margin-top: 10px;
            color: #fff;
        }

        .marketing-service-payment-methods {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .marketing-service-payment-method {
            flex: 1;
            text-align: center;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            cursor: pointer;
            color: #c0c0c0;
            transition: all 0.3s;
        }

        .marketing-service-payment-method.selected {
            border-color: #3498db;
            background-color: rgba(52, 152, 219, 0.2);
            color: #fff;
        }

        .marketing-service-payment-form-group {
            margin-bottom: 15px;
        }

        .marketing-service-payment-form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: #c0c0c0;
        }

        .marketing-service-payment-form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(30, 40, 50, 0.8);
            color: #c0c0c0;
        }

        .marketing-service-payment-form-row {
            display: flex;
            gap: 15px;
        }

        .marketing-service-payment-form-row .marketing-service-payment-form-group {
            flex: 1;
        }

        .marketing-service-payment-submit-btn {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
        }

        .marketing-service-payment-submit-btn:hover {
            background: linear-gradient(to right, #27ae60, #219653);
        }

        .marketing-service-payment-error {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .marketing-service-payment-instructions {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            color: #c0c0c0;
            display: none;
        }

        .marketing-service-payment-instructions h4 {
            margin-top: 0;
            color: #fff;
        }

        .marketing-service-payment-instructions ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        @media (max-width: 768px) {
            .marketing-service-ads-container {
                grid-template-columns: 1fr;
            }
            
            .marketing-service-buttons {
                flex-direction: column;
            }
            
            .marketing-service-payment-methods {
                flex-direction: column;
            }
        }
        /* End of Marketing Services CSS */
      
        /* Business Consulting Payment Modal CSS */
        .business-consulting-payment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .business-consulting-payment-modal-content {
            background: rgba(40, 50, 60, 0.95);
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid #34495e;
            position: relative;
        }

        .business-consulting-payment-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #c0c0c0;
        }

        .business-consulting-payment-modal-title {
            margin-bottom: 20px;
            color: #c0c0c0;
            text-align: center;
        }

        .business-consulting-payment-summary {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .business-consulting-payment-summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #c0c0c0;
        }

        .business-consulting-payment-summary-total {
            font-weight: bold;
            border-top: 1px solid #34495e;
            padding-top: 10px;
            margin-top: 10px;
            color: #fff;
        }

        .business-consulting-payment-methods {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .business-consulting-payment-method {
            flex: 1;
            text-align: center;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            cursor: pointer;
            color: #c0c0c0;
            transition: all 0.3s;
        }

        .business-consulting-payment-method.selected {
            border-color: #3498db;
            background-color: rgba(52, 152, 219, 0.2);
            color: #fff;
        }

        .business-consulting-payment-form-group {
            margin-bottom: 15px;
        }

        .business-consulting-payment-form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: #c0c0c0;
        }

        .business-consulting-payment-form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(30, 40, 50, 0.8);
            color: #c0c0c0;
        }

        .business-consulting-payment-form-row {
            display: flex;
            gap: 15px;
        }

        .business-consulting-payment-form-row .business-consulting-payment-form-group {
            flex: 1;
        }

        .business-consulting-payment-submit-btn {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
        }

        .business-consulting-payment-submit-btn:hover {
            background: linear-gradient(to right, #27ae60, #219653);
        }

        .business-consulting-payment-error {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .business-consulting-payment-instructions {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            color: #c0c0c0;
            display: none;
        }

        .business-consulting-payment-instructions h4 {
            margin-top: 0;
            color: #fff;
        }

        .business-consulting-payment-instructions ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        @media (max-width: 768px) {
            .business-consulting-payment-methods {
                flex-direction: column;
            }
        }

        /* Start of Other Services CSS */
        .other-services-container {
            max-width: 1200px;            
            margin: 6%;
            margin-top: 10px;
            display: grid;
            grid-template-columns: 55% 45%;
            gap: 30px;
            align-items: start;
        }
        
        .other-services-box {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            margin-top: 30px;
            margin-top: 30px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .other-services-box-title {
            text-align: center;
            font-size: 24px;
            color: #fff;
            margin: 0 0 25px 0;
            background: linear-gradient(135deg, #044051 0%, #06435a 100%);
            padding: 15px;
            border-radius: 10px;
            font-weight: 700;
        }
        
        .other-services-item {
            margin: 20px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
        }
        
        .other-services-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .other-services-header {
            padding: 18px 20px;
            background: linear-gradient(135deg, #044051 0%, #06435a 100%);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .other-services-header-content {
            display: flex;
            align-items: center;
            flex: 1;
        }
        
        .service-checkbox {
            width: 22px;
            height: 22px;
            margin-right: 15px;
            accent-color: #27ae60;
            cursor: pointer;
        }
        
        .other-service-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            cursor: pointer;
        }
        
        .service-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            background: rgba(0, 0, 0, 0.3);
            padding: 6px 15px;
            border-radius: 20px;
        }
        
        .service-description {
            padding: 18px 20px;
            background: #fff;
            color: #555;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .other-services-total-section {
            background: #06435a;
            color: #fff;
            align-self: center;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #e9ecef;
            width: 45%;
            margin-left: 85px;
            margin-top: -80px;
        }
        
        .other-services-total-label {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }

        .other-services-total-amount {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
        }
        
        .other-services-box-title {
             text-align: center;
            font-size: 20px;
            color: #fff;
            margin: 0 0 25px 0;
            background: linear-gradient(135deg, #044051 0%, #06435a 100%);
            padding: 5px;
            border-radius: 10px;
            font-weight: 700;
        }        
        
        .other-services-requirements-panel {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            margin-top: 30px;
            padding: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            height: 97%;
            width: 115%;
        }
        
        .other-services-requirements-header {
            text-align: center;
            font-size: 20px;
            color: #fff;
            margin: 0 0 25px 0;
            background: linear-gradient(135deg, #044051 0%, #06435a 100%);
            padding: 5px;
            border-radius: 10px;
            font-weight: 700;
        }
        
        .other-services-requirement-item {
            margin-bottom: 5px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #ddd;
        }
        
        .other-services-requirement-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .other-services-requirement-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            padding-bottom: 5px;
            border-bottom: 2px solid #17bd56;
            display: inline-block;
        }
        
        .other-services-requirement-content {
            color: #555;
            font-size: 15px;
            line-height: 18px;
        }
        
        .other-services-requirement-content strong {
            color: #2c3e50;
        }
        
        .other-services-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 25px;
            border-radius: 8px;
            background: #28a745;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateX(100%);
            transition: transform 0.3s ease;
            z-index: 1000;
        }
        
        .other-services-notification.show {
            transform: translateX(0);
        }
        
        .other-services-notification.error {
            background: #dc3545;
        }
        
        .other-services-cart-summary {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            border: 1px solid #e9ecef;
            display: none;
        }
        
        .other-services-cart-summary.show {
            display: block;
        }
        
        .other-services-cart-items {
            margin-bottom: 15px;
        }
        
        .other-services-cart-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #e9ecef;
        }
        
        .other-services-cart-item:last-child {
            border-bottom: none;
        }

        .other-services-selected-items-summary {
            margin-top: 10px;
            font-size: 0.85rem;
            color: #fff;
            font-weight: normal;
        }

        .other-services-selected-items-summary ul li {
            padding: 3px 0;
            border-bottom: 1px solid #ddd;
        }
        
        /* Updated button styles */
        .other-services-pay-now-btn {
            background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }
        
        .other-services-pay-now-btn:hover {
            background: linear-gradient(135deg, #219653 0%, #1e8449 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .other-services-pay-now-btn:disabled {
            background: #95a5a6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        @media (max-width: 768px) {
            .other-services-container {
                grid-template-columns: 1fr;
                margin: 5%;
            }
            
            .other-services-total-section {
                width: 90%;
                margin-left: 0;
                margin-top: 20px;
            }
            
            .other-services-requirements-panel {
                width: 100%;
            }
            
            .business-consulting-payment-methods {
                flex-direction: column;
            }
        }
        /* Payment Modal Styles */
        .other-services-payment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .other-services-payment-modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .other-services-payment-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #7f8c8d;
        }

        .other-services-payment-modal-close:hover {
            color: #34495e;
        }

        .other-services-payment-modal-title {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .other-services-payment-summary {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .other-services-payment-methods {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            gap: 10px;
        }

        .other-services-payment-method {
            flex: 1;
            padding: 12px;
            text-align: center;
            border: 2px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .other-services-payment-method.selected {
            border-color: #3498db;
            background-color: #e8f4fd;
        }

        .other-services-payment-form-group {
            margin-bottom: 20px;
        }

        .other-services-payment-form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }

        .other-services-payment-form-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            box-sizing: border-box;
        }

        .other-services-payment-form-row {
            display: flex;
            gap: 15px;
        }

        .other-services-payment-form-row .other-services-payment-form-group {
            flex: 1;
        }

        .other-services-payment-error {
            color: #e74c3c;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }

        .other-services-payment-instructions {
            display: none;
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .other-services-payment-instructions h4 {
            margin-top: 0;
            color: #2c3e50;
        }

        .other-services-payment-instructions ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        .other-services-payment-instructions li {
            margin-bottom: 5px;
        }

        .other-services-payment-submit-btn {
            width: 100%;
            padding: 15px;
            background-color: #27ae60;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 10px;
        }

        .other-services-payment-submit-btn:hover {
            background-color: #219653;
        }

        .other-services-card-icons {
            display: flex;
            gap: 10px;
            margin-top: 10px;
            justify-content: center;
        }

        .other-services-card-icon {
            font-size: 24px;
            color: #95a5a6;
        }
        /*End of Other Services CSS*/
            

        /* Start of SARS Services CSS */       
        .sars-services-container {
            display: flex;
            gap: 50px;
            max-width: 1200px;
            width: 100%;
            margin: 30px auto;
            align-items: stretch;
            padding-top: 15px;
            padding-bottom: 15px;
            justify-content: center;
        }

        .sars-services-container-box {
            display: grid;
            grid-template-columns: 40% 60%;
            gap: 30px;
            width: 100%;
            max-width: 1200px;
            margin: 40px auto;
        }

        .sars-box-title {
            text-align: center;
            font-size: 20px;
            color: #fff;           
            margin: 0;
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);            
            font-weight: 800;
        }

        .sars-service-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .sars-service-header-content {
            display: flex;
            align-items: center;
            flex: 1;
        }

        .sars-service-item {
            margin: 25px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            max-width: 1000px;
        }

        .sars-service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        /* Service Header */
        .sars-service-header {
            padding: 20px;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sars-service-header-content {
            display: flex;
            align-items: center;
            flex: 1;
        }

        .sars-service-checkbox {
            width: 22px;
            height: 22px;
            margin-right: 15px;
            accent-color: #27ae60;
            cursor: pointer;
        }

        .sars-service-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: white;
        }

        .sars-service-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: #27ae60;
            background: rgba(255, 255, 255, 0.9);
            padding: 5px 15px;
            border-radius: 20px;
            margin-left: 15px;
        }

        .sars-banner {
            max-width: 1500px;
            width: 100%;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: 0 auto;
        }

        .sars-header {
            background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
            color: white;
            padding: 5px 10px;
            text-align: center;
        }

        .sars-header h1 {
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .sars-header p {
            font-size: 12px;
            opacity: 0.9;
        }

        .sars-content {
            padding: 10px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 5px;
        }

        .sars-item {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 5px solid #3498db;
            position: relative;
            overflow: hidden;
        }

        .sars-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-left-color: #e74c3c;
        }

        .sars-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(231, 76, 60, 0.05) 100%);
            z-index: 1;
        }

        .sars-item h3 {
            color: #2c3e50;
            font-size: 18px;
            margin-bottom: 5px;
            padding-bottom: 5px;
            border-bottom: 2px solid #e74c3c;
            position: relative;
            z-index: 2;
        }

        .sars-item h3 i {
            margin-right: 10px;
            color: #e74c3c;
        }

        .sars-item p {
            color: #7f8c8d;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
            font-size: 1rem;
            line-height: 1.6;
        }

        .sars-item strong {
            color: #2c3e50;
            font-weight: 600;
        }

        .sars-requirements-list {
            position: relative;
            z-index: 2;
        }

        .sars-requirements-list ul {
            list-style: none;
            padding: 0;
        }

        .sars-requirements-list li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
            color: #2c3e50;
            font-size: 0.95rem;
        }

        .sars-requirements-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 8px;
            color: #2ecc71;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .sars-divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #3498db, transparent);
            margin: 5px 0;
            position: relative;
            z-index: 2;
        }

        .sars-footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
            max-width: 1500px;
            margin: 0 auto;
        }

        .sars-footer a {
            color: #3498db;
            text-decoration: none;
        }

        .sars-footer a:hover {
            text-decoration: underline;
        }

        /* Payment Modal Styles */
        .sars-payment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .sars-payment-modal-content {
            background: rgba(40, 50, 60, 0.95);
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid #34495e;
            position: relative;
        }

        .sars-payment-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #c0c0c0;
        }

        .sars-payment-modal-title {
            margin-bottom: 20px;
            color: #c0c0c0;
            text-align: center;
        }

        .sars-payment-summary {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .sars-payment-summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #c0c0c0;
        }

        .sars-payment-summary-total {
            font-weight: bold;
            border-top: 1px solid #34495e;
            padding-top: 10px;
            margin-top: 10px;
            color: #fff;
        }

        .sars-payment-methods {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .sars-payment-method {
            flex: 1;
            text-align: center;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            cursor: pointer;
            color: #c0c0c0;
            transition: all 0.3s;
        }

        .sars-payment-method.selected {
            border-color: #3498db;
            background-color: rgba(52, 152, 219, 0.2);
            color: #fff;
        }

        .sars-payment-form-group {
            margin-bottom: 15px;
        }

        .sars-payment-form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: #c0c0c0;
        }

        .sars-payment-form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(30, 40, 50, 0.8);
            color: #c0c0c0;
        }

        .sars-payment-form-row {
            display: flex;
            gap: 15px;
        }

        .sars-payment-form-row .sars-payment-form-group {
            flex: 1;
        }

        .sars-payment-submit-btn {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
        }

        .sars-payment-submit-btn:hover {
            background: linear-gradient(to right, #27ae60, #219653);
        }

        .sars-payment-error {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .sars-payment-instructions {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            color: #c0c0c0;
            display: none;
        }

        .sars-payment-instructions h4 {
            margin-top: 0;
            color: #fff;
        }

        .sars-payment-instructions ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        /* Updated button styles */
        .sars-pay-now-btn {
            background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }
        
        .sars-pay-now-btn:hover {
            background: linear-gradient(135deg, #219653 0%, #1e8449 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .sars-pay-now-btn:disabled {
            background: #95a5a6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        @media (max-width: 768px) {
            .sars-services-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .sars-services-container-box {
                grid-template-columns: 1fr;
                margin: 20px auto;
            }
            
            .sars-content {
                grid-template-columns: 1fr;
                padding: 20px;
            }
            
            .sars-header h1 {
                font-size: 2rem;
            }
            
            .sars-item {
                padding: 20px;
            }
            
            .sars-service-item {
                margin: 15px;
            }
            
            .sars-payment-methods {
                flex-direction: column;
            }
        }
        /* End of SARS Services CSS */

        /*Start of Accounting Services CSS*/
        .accounting-services-header {
            background: linear-gradient(135deg, #0d2f58 0%, #1a4b8c 100%);
            color: white;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .accounting-services-subtitle {
            padding: 20px;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
            margin-bottom: 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .accounting-services-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
        }

        .accounting-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .accounting-services-box {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .accounting-services-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .accounting-services-box-header {
            background: linear-gradient(135deg, #1a4b8c 0%, #2a63b8 100%);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .accounting-services-box-content {
            padding: 20px;
            flex-grow: 1;
        }

        .accounting-services-box-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .accounting-services-box-content li {
            margin-bottom: 8px;
            color: #555;
        }

        .accounting-services-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1a4b8c;
            margin: 15px 0;
            text-align: center;
        }

        .accounting-services-box-footer {
            background-color: #89a5c0;
            padding: 15px;
            border-top: 1px solid #d0deff;
        }

        .accounting-services-checkbox {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .accounting-services-checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .accounting-services-checkbox label {
            color: #1a4b8c;
            font-weight: 600;
            cursor: pointer;
        }

        .accounting-services-cart-container {
            background: linear-gradient(135deg, #1a4b8c 0%, #2563a8 100%);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            margin-top: 30px;
        }

        .accounting-services-cart-title {
            font-size: 1.8rem;
            color: #fff;
            margin-bottom: 20px;
            padding: 10px;
            margin: -25px -25px 20px -25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px 10px 0 0;
        }

        .accounting-services-cart-items {
            margin-bottom: 20px;
            max-height: 300px;
            overflow-y: auto;
            color: #fff;
        }

        .accounting-services-cart-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        .accounting-services-cart-total {
            font-size: 1.8rem;
            font-weight: 800;
            text-align: right;
            margin-top: 20px;
            color: #fff;
        }

        .accounting-services-cart-items {
            font-size: 0.85rem;
        }

        .accounting-services-discount-notice {
            color: #5fffb0;
            font-weight: 600;
            text-align: right;
            margin-top: 10px;
            font-size: 1.1rem;
        }

        .accounting-services-cart-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
            gap: 15px;
        }

        .accounting-services-cart-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
            flex: 1;
        }

        .accounting-services-pay-now {
            background-color: #27ae60;
            color: white;
        }

        .accounting-services-pay-now:hover {
            background-color: #00e686;
        }

        .accounting-services-footer {
            background: #3a75c4;
            color: #fff;
            text-align: center;
            padding: 25px;
            margin-top: 50px;
        }

        @media (max-width: 768px) {
            .accounting-services-grid {
                grid-template-columns: 1fr;
            }
            
            .accounting-services-cart-buttons {
                flex-direction: column;
            }
            
            .accounting-services-subtitle {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }

        /* Payment Modal Styles from Business Consulting */
        .business-consulting-payment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .business-consulting-payment-modal-content {
            background: rgba(40, 50, 60, 0.95);
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid #34495e;
            position: relative;
        }

        .business-consulting-payment-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #c0c0c0;
        }

        .business-consulting-payment-modal-title {
            margin-bottom: 20px;
            color: #c0c0c0;
            text-align: center;
        }

        .business-consulting-payment-summary {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .business-consulting-payment-summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #c0c0c0;
        }

        .business-consulting-payment-summary-total {
            font-weight: bold;
            border-top: 1px solid #34495e;
            padding-top: 10px;
            margin-top: 10px;
            color: #fff;
        }

        .business-consulting-payment-methods {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .business-consulting-payment-method {
            flex: 1;
            text-align: center;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            cursor: pointer;
            color: #c0c0c0;
            transition: all 0.3s;
        }

        .business-consulting-payment-method.selected {
            border-color: #3498db;
            background-color: rgba(52, 152, 219, 0.2);
            color: #fff;
        }

        .business-consulting-payment-form-group {
            margin-bottom: 15px;
        }

        .business-consulting-payment-form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: #c0c0c0;
        }

        .business-consulting-payment-form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(30, 40, 50, 0.8);
            color: #c0c0c0;
        }

        .business-consulting-payment-form-row {
            display: flex;
            gap: 15px;
        }

        .business-consulting-payment-form-row .business-consulting-payment-form-group {
            flex: 1;
        }

        .business-consulting-payment-submit-btn {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
        }

        .business-consulting-payment-submit-btn:hover {
            background: linear-gradient(to right, #27ae60, #219653);
        }

        .business-consulting-payment-error {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .business-consulting-payment-instructions {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            color: #c0c0c0;
            display: none;
        }

        .business-consulting-payment-instructions h4 {
            margin-top: 0;
            color: #fff;
        }

        .business-consulting-payment-instructions ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        @media (max-width: 768px) {
            .business-consulting-payment-methods {
                flex-direction: column;
            }
        }
        /*End of Accounting Services CSS*/

        /* Start of Company Registrations CSS */
        .company-registration-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .company-registration-title {
            text-align: center;
            color: #044051;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .company-registration-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .company-registration-service-card {
            background: #034a7d;
            border-radius: 10px;
            padding: 20px;
            border: 1px solid #34495e;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .company-registration-service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            border-color: #3498db;
        }

        .company-registration-service-card.selected {
            border-color: #3498db;
            background: #06435a;
        }

        .company-registration-service-title {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .company-registration-service-price {
            color: #2ecc71;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .company-registration-service-description {
            color: #c0c0c0;
            margin-bottom: 15px;
        }

        .company-registration-service-details {
            display: none;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #34495e;
        }

        .company-registration-service-details.active {
            display: block;
        }

        .company-registration-details-section {
            margin-bottom: 20px;
        }

        .company-registration-details-title {
            color: #4CAF50;
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .company-registration-details-list {
            list-style: none;
            padding-left: 0;
            color: white;
        }

        .company-registration-details-list li {
            padding: 5px 0;
            padding-left: 20px;
            position: relative;
        }

        .company-registration-details-list li:before {
            content: '•';
            color: #fff;
            position: absolute;
            left: 0;
        }

        .company-registration-form {
            display: none;
            background: rgba(40, 50, 60, 0.95);
            border-radius: 10px;
            padding: 30px;
            margin: 20px 0;
            border: 1px solid #34495e;
        }

        .company-registration-form.active {
            display: block;
        }

        .company-registration-form-title {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .company-registration-form-group {
            margin-bottom: 20px;
        }

        .company-registration-form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #fff;
        }

        .company-registration-form-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #34495e;
            border-radius: 5px;
            background: rgba(30, 40, 50, 0.8);
            color: #c0c0c0;
            font-size: 1rem;
        }

        .company-registration-form-input:focus {
            outline: none;
            border-color: #3498db;
            background: rgba(30, 40, 50, 0.9);
        }

        .company-registration-form-select {
            width: 100%;
            padding: 12px;
            border: 1px solid #34495e;
            border-radius: 5px;
            background: rgba(30, 40, 50, 0.8);
            color: #c0c0c0;
            font-size: 1rem;
        }

        .company-registration-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 15px;
        }

        .company-registration-company-names {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .company-registration-director-section {
            background: rgba(50, 60, 70, 0.6);
            color: #fff;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #34495e;
        }

        .company-registration-director-title {
            color: #3498db;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .company-registration-file-upload {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .company-registration-file-input {
            display: none;
        }

        .company-registration-file-button {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(to right, #3498db, #2980b9);
            color: white;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            width: 100%;
        }

        .company-registration-file-button:hover {
            background: linear-gradient(to right, #2980b9, #1f618d);
        }

        .company-registration-progress-bar {
            width: 100%;
            height: 4px;
            background: rgba(30, 40, 50, 0.8);
            border-radius: 2px;
            margin: 10px 0;
            overflow: hidden;
            display: none;
        }

        .company-registration-progress-fill {
            height: 100%;
            background: linear-gradient(to right, #2ecc71, #27ae60);
            width: 0%;
            transition: width 0.3s ease;
        }

        .company-registration-uploaded-files {
            margin-top: 15px;
        }

        .company-registration-file-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            background: rgba(30, 40, 50, 0.6);
            border-radius: 5px;
            margin-bottom: 8px;
        }

        .company-registration-file-name {
            color: #ffffff;
            flex: 1;
        }

        .company-registration-file-delete {
            background: #e74c3c;
            color: #ffffff;
            border: none;
            padding: 5px 10px;
            border-radius: 3px;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .company-registration-file-delete:hover {
            background: #c0392b;
        }

        .company-registration-save-director {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: #ffffff;
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            margin-top: 15px;
            width: 100%;
        }

        .company-registration-save-director:hover {
            background: linear-gradient(to right, #27ae60, #219653);
        }

        .company-registration-save-director.saved {
            background: linear-gradient(to right, #95a5a6, #7f8c8d);
            cursor: not-allowed;
        }

        .company-registration-director-section.saved {
            background: rgba(46, 204, 113, 0.1);
            border-color: #2ecc71;
        }

        .company-registration-director-section.saved .company-registration-form-input {
            background: rgba(30, 40, 50, 0.5);
            pointer-events: none;
        }

        .company-registration-checkbox-group {
            margin: 20px 0;
        }

        .company-registration-checkbox-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 15px;
            background: rgba(50, 60, 70, 0.6);
            border-radius: 8px;
        }

        .company-registration-checkbox {
            margin-right: 15px;
            transform: scale(1.2);
        }

        .company-registration-checkbox-label {
            color: #ffffff;
            cursor: pointer;
        }

        .company-registration-bank-select {
            margin-left: 30px;
            width: 200px;
            display: none;
        }

        .company-registration-total-section {
            background: rgba(50, 60, 70, 0.8);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            text-align: center;
        }

        .company-registration-total-label {
            color: #ffffff;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .company-registration-total-amount {
            color: #ffffff;
            font-size: 2rem;
            font-weight: bold;
        }

        .company-registration-table-container {
            margin: 30px 0;
            overflow-x: auto;
            background: #06435a;
        }

        .company-registration-table {
            width: 100%;
            background: rgba(40, 50, 60, 0.9);
            border-radius: 10px;
            overflow: hidden;
            border-collapse: collapse;
        }

        .company-registration-table th {
            background: rgba(30, 40, 50, 0.9);
            color: #ffffff;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }

        .company-registration-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #34495e;
            color: #ffffff;
        }

        .company-registration-table tr:hover {
            background: rgba(52, 152, 219, 0.1);
        }

        .company-registration-action-buttons {
            display: flex;
            gap: 10px;
        }

        .company-registration-edit-btn, .company-registration-delete-btn {
            padding: 6px 12px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .company-registration-edit-btn {
            background: #f39c12;
            color: #ffffff;
        }

        .company-registration-edit-btn:hover {
            background: #d68910;
        }

        .company-registration-delete-btn {
            background: #e74c3c;
            color: #ffffff;
        }

        .company-registration-delete-btn:hover {
            background: #c0392b;
        }

        .company-registration-pay-button {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: #ffffff;
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            display: block;
            margin: 30px auto;
            transition: all 0.3s;
        }

        .company-registration-pay-button:hover {
            background: linear-gradient(to right, #27ae60, #219653);
            transform: translateY(-2px);
        }

        /* ===========================================
           OLD PAYMENT MODAL CSS REMOVED
           Now using Yoco Payment Gateway
           See: assets/payment-modal.js
           =========================================== */

        .company-registration-payment-instructions {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            color: #ffffff;
            display: none;
        }

        .company-registration-payment-instructions h4 {
            margin-top: 0;
            color: #ffffff;
        }

        .company-registration-payment-instructions ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        @media (max-width: 768px) {
            .company-registration-services-grid {
                grid-template-columns: 1fr;
            }
            
            .company-registration-form-row {
                display: block;
            }
            
            .company-registration-form-row .company-registration-form-group {
                margin-bottom: 15px;
            }
            
            .company-registration-company-names {
                grid-template-columns: 1fr;
            }
            
            .company-registration-payment-methods {
                flex-direction: column;
            }
        }
        /*End of Company Registrations CSS*/
        
        .box-title {
            text-align: center;
            font-size: 2.5rem;
            color: #89a5c0;
            padding: 30px;
            margin: 0;
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }
        
        .service-item {
            margin: 25px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        
        /* Service Header */
        .service-header {
            padding: 20px;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .service-header-content {
            display: flex;
            align-items: center;
            flex: 1;
        }
        
        .service-checkbox {
            width: 22px;
            height: 22px;
            margin-right: 15px;
            accent-color: #27ae60;
            cursor: pointer;
        }
        
        .service-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: white;
        }
        
        .service-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: #27ae60;
            background: rgba(255, 255, 255, 0.9);
            padding: 5px 15px;
            border-radius: 20px;
            margin-left: 15px;
        }
        
        .quote-btn {
            background: #27ae60;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 15px;
        }
        
        .quote-btn:hover:not(:disabled) {
            background: #219653;
            transform: translateY(-2px);
        }
        
        .quote-btn:disabled {
            background: #95a5a6;
            cursor: not-allowed;
        }
        
        /* Service Body */
        .service-body {
            padding: 25px;
            background: #f8f9fa;
        }
        
        .service-description {
            color: #7f8c8d;
            line-height: 1.6;
            font-size: 1.05rem;
            margin-bottom: 20px;
        }
        
        .business-type-input {
            width: 100%;
            padding: 15px;
            border: 2px solid #3498db;
            border-radius: 8px;
            font-size: 1rem;
            margin-top: 15px;
            display: none;
            transition: all 0.3s ease;
        }
        
        .business-type-input:focus {
            outline: none;
            border-color: #2980b9;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        
        /* Service Footer */
        .service-footer {
            padding: 0 25px 25px;
            background: #f8f9fa;
        }
        
        .whats-included {
            background: #e8f4fc;
            border-left: 4px solid #3498db;
            padding: 20px;
            border-radius: 8px;
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .whats-included h4 {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .whats-included h4 i {
            margin-right: 10px;
            color: #3498db;
        }
        
        .included-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 12px;
            list-style-type: none;
        }
        
        .included-list li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #34495e;
        }
        
        .included-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
        }
        
        .total-section {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            margin: 30px 25px;
        }
        
        .total-label {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .total-amount {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 30px;
            color: #27ae60;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .total-section #cartItems {
            font-size: 0.85rem;
        }
        
        .button-container {
            display: flex;
            justify-content: center;
            gap: 25px;
        }
        
        .add-to-cart-btn, .pay-btn {
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .add-to-cart-btn {
            background: #3498db;
            color: white;
        }
        
        .add-to-cart-btn:hover:not(:disabled) {
            background: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
        }
        
        .pay-btn {
            background: #27ae60;
            color: white;
        }
        
        .pay-btn:hover:not(:disabled) {
            background: #219653;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(39, 174, 96, 0.4);
        }
        
        .add-to-cart-btn:disabled, .pay-btn:disabled {
            background: #95a5a6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }     
        
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 18px 28px;
            background: #27ae60;
            color: white;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transform: translateX(100%);
            transition: transform 0.4s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        .notification.error {
            background: #e74c3c;
        }
        
        .notification.info {
            background: #3498db;
        }
        
        @media (max-width: 768px) {
            .service-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .service-header-content {
                width: 100%;
                margin-bottom: 15px;
            }
            
            .service-price, .quote-btn {
                margin: 10px 0 0 0;
                align-self: flex-start;
            }
            
            .button-container {
                flex-direction: column;
            }
                        
            .included-list {
                grid-template-columns: 1fr;
            }
        }
        /*End of Marketing Services CSS*/
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .form-container {
                grid-template-columns: 1fr;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .form-group.full-width {
                grid-column: 1;
            }
            
            .checkbox-group {
                grid-template-columns: 1fr;
            }
            
            .architecture {
                transform: perspective(1000px) rotateX(0deg);
            }
        }
        
        /* 3D effect for form elements */
        input, select, textarea, .plan-type-btn, .checkbox-item input[type="checkbox"] {
            transform: translateZ(0);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        input:focus, select:focus, textarea:focus {
            transform: translateZ(5px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3), inset 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        /* Animation for section headers */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
            100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
        }
        
        .section h3 {
            animation: pulse 2s infinite;
        }
        
        /* Decorative elements */
        .arch-decoration {
            position: absolute;
            width: 150px;
            height: 150px;
            background: rgba(76, 175, 80, 0.1);
            border: 2px solid rgba(76, 175, 80, 0.3);
            border-radius: 10px;
            z-index: -1;
        }
        
        .decoration-1 {
            top: 10%;
            left: 5%;
            
        }
        
        .decoration-2 {
            bottom: 10%;
            right: 5%;
            
        }

        /* Business type input field */
        .business-type-input {
            width: 100%;
            padding: 10px;
            border: 2px solid #4CAF50;
            border-radius: 8px;
            font-size: 14px;
            margin-top: 10px;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
        }

        .business-type-input:focus {
            outline: none;
            border-color: #45a049;
            box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
        }

        /* Quote button styling */
        .quote-btn {
            background: linear-gradient(45deg, #FF9800, #F57C00);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .quote-btn:hover {
            background: linear-gradient(45deg, #F57C00, #FF9800);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
        }

        .quote-btn:disabled {
            background: rgba(128, 128, 128, 0.5);
            cursor: not-allowed;
            transform: none;
        }

        .services-box {
            width: 100%;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .box-title {
            text-align: center;
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 30px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .service-item {
            margin-bottom: 20px;
            margin: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .service-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.02);
        }

        .service-item.checked {
            background: rgba(76, 175, 80, 0.3);
            border-color: rgba(76, 175, 80, 0.5);
            animation: checkPulse 0.3s ease;
        }

        @keyframes checkPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .service-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .service-checkbox {
            width: 20px;
            height: 20px;
            accent-color: #4CAF50;
            cursor: pointer;
        }

        .service-name {
            color: #000;
            font-weight: 600;
            font-size: 16px;
            flex: 1;
            margin-left: 12px;
        }

        .service-price {
            color: #333;
            font-weight: bold;
            font-size: 18px;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
        }

        .service-description {
            color: #000;
            font-size: 12px;
            margin-top: 8px;
            line-height: 1.4;
            font-style: italic;
        }

        /* Business type input field */
        .business-type-input {
            width: 100%;
            padding: 10px;
            border: 2px solid #4CAF50;
            border-radius: 8px;
            font-size: 14px;
            margin-top: 10px;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
        }

        .business-type-input:focus {
            outline: none;
            border-color: #45a049;
            box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
        }

        /* Quote button styling */
        .quote-btn {
            background: linear-gradient(45deg, #FF9800, #F57C00);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .quote-btn:hover {
            background: linear-gradient(45deg, #F57C00, #FF9800);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
        }

        .quote-btn:disabled {
            background: rgba(128, 128, 128, 0.5);
            cursor: not-allowed;
            transform: none;
        }

        /* What's included section */
        .whats-included {
            margin-top: 15px;
            padding: 15px;
            background: rgba(76, 175, 80, 0.1);
            border-radius: 10px;
            border-left: 4px solid #4CAF50;
            display: none;
            animation: fadeInScale 0.3s ease;
        }

        .whats-included.show {
            display: block;
        }

        @keyframes fadeInScale {
            0% {
                opacity: 0;
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .whats-included h4 {
            color: #333;
            font-size: 16px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .whats-included ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .whats-included li {
            color: #333;
            padding: 5px 0;
            font-size: 13px;
            position: relative;
            padding-left: 20px;
        }

        .whats-included li:before {
            content: '✓';
            color: #4CAF50;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Notification */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 25px;
            background: rgba(76, 175, 80, 0.9);
            color: white;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transform: translateX(100%);
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification.error {
            background: rgba(244, 67, 54, 0.9);
        }

        
       /* Start of Branding & Identity CSS */
        .branding-identity-title {
            text-align: center;
            margin-bottom: 30px;
            color: #fff;
            margin-top: 30px;
            font-size: 2.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            background: #067590;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .branding-identity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .branding-identity-box {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            margin: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .branding-identity-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        
        .branding-identity-header {
            padding: 20px;
            background: #067590;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .branding-identity-service-title {
            font-weight: 600;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 5px;
        }
        
        .branding-identity-body {
            padding: 20px;
            flex-grow: 1;
        }
        
        .branding-identity-description {
            color: #000;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .branding-identity-options {
            margin-top: 15px;
        }
        
        .branding-identity-option {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            padding: 10px;
            background: #067590;
            border-radius: 5px;
            transition: background 0.3s;
            cursor: pointer;
        }
        
        .branding-identity-option:hover {
            background: #067594;
        }
        
        .branding-identity-checkbox {
            width: 18px !important;
            height: 18px !important;
            min-width: 18px !important;
            min-height: 18px !important;
            max-width: 18px !important;
            max-height: 18px !important;
            cursor: pointer;
            margin-right: 10px;
            margin-top: 2px;
            flex-shrink: 0;
            appearance: auto;
            -webkit-appearance: checkbox;
            -moz-appearance: checkbox;
        }
        
        .branding-identity-option-content {
            flex-grow: 1;
        }
        
        .branding-identity-option-label {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .branding-identity-option-price {
            font-weight: 700;
            color: #ffdd59;
            white-space: nowrap;
            margin-left: 10px;
        }
        
        .branding-identity-option-details {
            font-size: 0.8rem;
            color: #fff;
            margin-top: 5px;
            padding-left: 5px;
            border-left: 2px solid #3498db;
            display: none;
        }
        
        .branding-identity-cart-container {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            margin: 20px;
            margin-top: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .branding-identity-cart-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-align: center;
            background: linear-gradient(to right, #3498db, #2980b9);
            padding: 15px;
            border-radius: 8px;
        }
        
        .branding-identity-cart-items {
            margin-bottom: 20px;
            max-height: 300px;
            overflow-y: auto;
        }
        
        .branding-identity-cart-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: #e0e0e0;
            background: #067590;
            margin-bottom: 10px;
            border-radius: 5px;
            position: relative;
        }
        
        .branding-identity-cart-details {
            flex-grow: 1;
        }
        
        .branding-identity-cart-item-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .branding-identity-cart-item-price {
            color: #ffdd59;
        }
        
        .branding-identity-cart-item-remove {
            background: rgba(255, 107, 107, 0.8);
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            color: white;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .branding-identity-cart-summary {
            padding: 15px 0;
            border-top: 2px solid rgba(255, 255, 255, 0.2);
            margin-top: 10px;
        }
        
        .branding-identity-cart-subtotal,
        .branding-identity-cart-discount,
        .branding-identity-cart-total {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            color: #000;
        }
        
        .branding-identity-cart-total {
            font-size: 1.8rem;
            font-weight: 800;
            color: #034a7d;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 10px;
            padding-top: 15px;
        }

        .branding-identity-cart-items {
            font-size: 0.85rem;
        }
        
        .branding-identity-cart-buttons {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .branding-identity-cart-button {
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .branding-identity-cart-pay {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: white;
        }
        
        .branding-identity-cart-pay:hover {
            background: linear-gradient(to right, #27ae60, #219653);
        }
        
        .branding-identity-empty-cart {
            text-align: center;
            color: #a0a0a0;
            padding: 20px;
        }
        
        /* Payment Modal Styles */
        .branding-identity-payment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .branding-identity-payment-modal-content {
            background: rgba(40, 50, 60, 0.95);
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid #34495e;
            position: relative;
        }

        .branding-identity-payment-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #c0c0c0;
        }

        .branding-identity-payment-modal-title {
            margin-bottom: 20px;
            color: #c0c0c0;
            text-align: center;
        }

        .branding-identity-payment-summary {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .branding-identity-payment-summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #c0c0c0;
        }

        .branding-identity-payment-summary-total {
            font-weight: bold;
            border-top: 1px solid #34495e;
            padding-top: 10px;
            margin-top: 10px;
            color: #fff;
        }

        .branding-identity-payment-methods {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .branding-identity-payment-method {
            flex: 1;
            text-align: center;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            cursor: pointer;
            color: #c0c0c0;
            transition: all 0.3s;
        }

        .branding-identity-payment-method.selected {
            border-color: #3498db;
            background-color: rgba(52, 152, 219, 0.2);
            color: #fff;
        }

        .branding-identity-payment-form-group {
            margin-bottom: 15px;
        }

        .branding-identity-payment-form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            color: #c0c0c0;
        }

        .branding-identity-payment-form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #34495e;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(30, 40, 50, 0.8);
            color: #c0c0c0;
        }

        .branding-identity-payment-form-row {
            display: flex;
            gap: 15px;
        }

        .branding-identity-payment-form-row .branding-identity-payment-form-group {
            flex: 1;
        }

        .branding-identity-payment-submit-btn {
            background: linear-gradient(to right, #2ecc71, #27ae60);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
        }

        .branding-identity-payment-submit-btn:hover {
            background: linear-gradient(to right, #27ae60, #219653);
        }

        .branding-identity-payment-error {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .branding-identity-payment-instructions {
            background-color: rgba(50, 60, 70, 0.6);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            color: #c0c0c0;
            display: none;
        }

        .branding-identity-payment-instructions h4 {
            margin-top: 0;
            color: #fff;
        }

        .branding-identity-payment-instructions ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        @media (max-width: 768px) {
            .branding-identity-grid {
                grid-template-columns: 1fr;
            }
            
            .branding-identity-payment-methods {
                flex-direction: column;
            }
            
            .branding-identity-title {
                font-size: 2rem;
                padding: 15px;
            }
            
            .branding-identity-option {
                flex-wrap: wrap;
            }
            
            .branding-identity-option-price {
                margin-left: 28px;
                width: 100%;
                text-align: right;
                margin-top: 5px;
            }
        }
        /* End of Branding & Identity CSS */

/*Start of Digital Marketing CSS*/
.digital-ads-container {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   margin-bottom: 30px;
   padding: 20px;
}

.digital-header{
   font-size: 26px;
   color:#1e6f77;
   padding: 30px;
  text-align: center;

}

.digital-ads{
   font-size: 26px;
   color:#1e6f77;
   padding: 30px;
   text-align: center;
}

.digital-ads-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 20px;
}

.ad-card {
  background: #7FDD7F;
  border-radius: 12px;
  padding: 20px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1), 4px 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.select-label {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-top: 8px;
   padding: 6px 8px;
   border: 1px solid #ddd;
   border-radius: 8px;
   background: #f9f9f9;
}
.select-label input {
  transform: scale(1.2);
}

.ad-logo img {
  width: 100px;
  height: 70px;
  object-fit: contain;
}

.ad-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: inset 0 0 15px rgba(0,0,0,0.15), 6px 6px 15px rgba(0,0,0,0.2);
}

.ad-card h3 {
  margin-top: 0;
  color: #3d969e;
}

.ad-card ul {
  padding-left: 20px;
  margin: 10px 0;
}    

.summary {
  margin-top: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.08), 3px 3px 10px rgba(0,0,0,0.12);
  max-width: 400px;
}

.summary p {
  margin: 6px 0;
  font-size: 16px;
}

.summary p span {
  float: right;
}

.buttons {
  margin-top: 15px;
      display: flex;
      gap: 10px;
    }

    button {
      flex: 1;
      padding: 10px;
      border: none;
      border-radius: 8px;
      background: #82c99d;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    button:hover {
      background: #3d969e;
    }
    /*End of Marketing CSS*/

    /*Start of Career CSS*/
    .career-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .career-header {
            text-align: center;
            margin-bottom: 30px;
            padding: 30px;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .career-title {
            font-size: 2.8rem;
            margin-bottom: 10px;
        }
        
        .career-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 20px;
        }
        
        .career-search-box {
            display: flex;
            max-width: 700px;
            margin: 0 auto;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .career-search-input {
            flex-grow: 1;
            padding: 15px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        
        .career-search-button {
            background: #3498db;
            color: white;
            border: none;
            padding: 15px 30px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        
        .career-search-button:hover {
            background: #2980b9;
        }
        
        .career-nav {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            gap: 20px;
        }
        
        .career-nav-button {
            padding: 12px 25px;
            background: #06435a;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        
        .career-nav-button.active {
            background: #3498db;
            color: white;
        }
        
        .career-content {
            display: none;
        }
        
        .career-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .career-box {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 25px;
            margin-bottom: 25px;
        }
        
        .career-box-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .career-form {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .career-form-group {
            margin-bottom: 20px;
        }
        
        .career-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .career-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .career-select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            background-color: white;
        }
        
        .career-textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        
        .career-button {
            background: #3498db;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            font-size: 1rem;
        }
        
        .career-button:hover {
            background: #2980b9;
        }
        
        .career-button-secondary {
            background: #2c3e50;
        }
        
        .career-button-secondary:hover {
            background: #1a252f;
        }
        
        .career-button-success {
            background: #27ae60;
        }
        
        .career-button-success:hover {
            background: #219653;
        }
        
        .career-job-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .career-job-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .career-job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .career-job-card-featured {
            border-left: 4px solid #3498db;
        }
        
        .career-job-card-urgent {
            border-left: 4px solid #e74c3c;
        }
        
        .career-job-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .career-job-company {
            font-weight: 600;
            color: #3498db;
            margin-bottom: 10px;
        }
        
        .career-job-detail {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            color: #555;
        }
        
        .career-job-detail i {
            margin-right: 10px;
            color: #3498db;
        }
        
        .career-job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        
        .career-job-tag {
            background: #e8f4fc;
            color: #3498db;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        
        .career-job-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        
        .career-filter {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        
        .career-filter-select {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            min-width: 200px;
        }
        
        .career-search {
            position: relative;
            flex-grow: 1;
        }
        
        .career-search-input {
            width: 100%;
            padding: 10px 40px 10px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        .career-search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
        }
        
        .career-pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }
        
        .career-page-btn {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            cursor: pointer;
            background: #06435a;
        }
        
        .career-page-btn.active {
            background: #3498db;
            color: white;
            border-color: #3498db;
        }
        
        .career-alert {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            display: none;
        }
        
        .career-alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .career-alert-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .career-login-form {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .career-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .career-stat-box {
            background: #06435a;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 20px;
            text-align: center;
        }
        
        .career-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #FFF;
            margin-bottom: 10px;
        }
        
        .career-stat-label {
            color: #fff;
            font-weight: 600;
        }
        
        .career-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .career-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .career-modal-content {
            background: white;
            border-radius: 10px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
        }
        
        .career-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #777;
        }
        
        .career-modal-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .career-featured-companies {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .career-company-logo {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
            transition: transform 0.3s ease;
        }
        
        .career-company-logo:hover {
            transform: translateY(-5px);
        }
        
        .career-company-logo img {
            max-width: 100%;
            max-height: 60px;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .career-form {
                grid-template-columns: 1fr;
            }
            
            .career-job-list {
                grid-template-columns: 1fr;
            }
            
            .career-filter {
                flex-direction: column;
            }
            
            .career-filter-select {
                width: 100%;
            }
            
            .career-search-box {
                flex-direction: column;
                border-radius: 10px;
            }
            
            .career-search-input {
                border-radius: 10px 10px 0 0;
            }
            
            .career-search-button {
                border-radius: 0 0 10px 10px;
            }
            
            .career-stats {
                grid-template-columns: 1fr;
            }
        }
    /*End of Career Jobseeker Portal CSS*/

    /*Start of Employer Portal CSS*/
.employer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .employer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .employer-title {
            font-size: 2.2rem;
        }
        
        .employer-user {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .employer-user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #3498db;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .employer-content {
            display: none;
        }
        
        .employer-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .employer-box {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 25px;
            margin-bottom: 25px;
        }
        
        .employer-box-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .employer-form {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .employer-form-group {
            margin-bottom: 20px;
        }
        
        .employer-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .employer-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .employer-select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            background-color: white;
        }
        
        .employer-textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        
        .employer-button {
            background: #3498db;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .employer-button:hover {
            background: #2980b9;
        }
        
        .employer-button-secondary {
            background: #2c3e50;
        }
        
        .employer-button-secondary:hover {
            background: #1a252f;
        }
        
        .employer-button-success {
            background: #27ae60;
        }
        
        .employer-button-success:hover {
            background: #219653;
        }
        
        .employer-button-danger {
            background: #e74c3c;
        }
        
        .employer-button-danger:hover {
            background: #c0392b;
        }
        
        .employer-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        
        .employer-table th,
        .employer-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .employer-table th {
            background: #f8f9fa;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .employer-table tr:hover {
            background: #f8f9fa;
        }
        
        .employer-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .employer-stat-box {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 20px;
            text-align: center;
        }
        
        .employer-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3498db;
            margin-bottom: 10px;
        }
        
        .employer-stat-label {
            color: #555;
            font-weight: 600;
        }
        
        .employer-filter {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        
        .employer-filter-select {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            min-width: 200px;
        }
        
        .employer-search {
            position: relative;
            flex-grow: 1;
        }
        
        .employer-search-input {
            width: 100%;
            padding: 10px 40px 10px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        .employer-search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #e8f4fc;
        }
        
        .employer-applicant-card {
            background: #e8f4fc;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 20px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .employer-applicant-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .employer-applicant-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .employer-applicant-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .employer-applicant-date {
            color: #777;
            font-size: 0.9rem;
        }
        
        .employer-applicant-details {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .employer-applicant-detail {
            display: flex;
            flex-direction: column;
        }
        
        .employer-applicant-detail-label {
            font-size: 0.85rem;
            color: #777;
            margin-bottom: 5px;
        }
        
        .employer-applicant-detail-value {
            font-weight: 500;
        }
        
        .employer-applicant-actions {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .employer-status-badge {
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .employer-status-new {
            background: #e8f4fc;
            color: #3498db;
        }
        
        .employer-status-reviewed {
            background: #fef5e7;
            color: #e67e22;
        }
        
        .employer-status-shortlisted {
            background: #eafaf1;
            color: #27ae60;
        }
        
        .employer-status-rejected {
            background: #fdedec;
            color: #e74c3c;
        }
        
        .employer-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .employer-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .employer-modal-content {
            background: white;
            border-radius: 10px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
        }
        
        .employer-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #777;
        }
        
        .employer-modal-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .employer-alert {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            display: none;
        }
        
        .employer-alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .employer-alert-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .employer-form {
                grid-template-columns: 1fr;
            }
            
            .employer-filter {
                flex-direction: column;
            }
            
            .employer-filter-select {
                width: 100%;
            }
            
            .employer-applicant-details {
                grid-template-columns: 1fr;
            }
            
            .employer-applicant-actions {
                flex-wrap: wrap;
            }
            
            .employer-stats {
                grid-template-columns: 1fr;
            }
            
            .employer-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }
    /*End of Employer Portal CSS*/

/* Universal Footer CSS - REMOVED - Using single footer definition above */

/* ============================================= */
/* Password Toggle Fix - Override all instances */
/* ============================================= */

/* Ensure password containers have proper spacing for toggle button */
.password-container input[type="password"],
.password-container input[type="text"] {
    padding-right: 45px !important; /* Make room for the toggle button */
    box-sizing: border-box !important;
}

/* Enhanced password toggle button positioning and styling */
.password-toggle {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    color: #6c757d !important;
    font-size: 18px !important;
    padding: 5px !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    z-index: 10 !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
}

.password-toggle:hover {
    background: rgba(0,0,0,0.05) !important;
    color: #495057 !important;
}

.password-toggle:focus {
    outline: 2px solid #007bff !important;
    outline-offset: 2px !important;
    background: rgba(0,123,255,0.1) !important;
}

/* Ensure proper relative positioning for password containers */
.password-container {
    position: relative !important;
    display: block !important;
}

/* Mobile responsiveness for password toggle */
@media screen and (max-width: 768px) {
    .password-toggle {
        right: 8px !important;
        font-size: 16px !important;
        width: 28px !important;
        height: 28px !important;
    }
    
    .password-container input[type="password"],
    .password-container input[type="text"] {
        padding-right: 40px !important;
    }
}

/* ========================================== */
/* COMPREHENSIVE MOBILE RESPONSIVE FIXES     */
/* Prevents horizontal overflow & white space*/
/* ========================================== */
@media screen and (max-width: 768px) {
    /* Ensure all containers fit within viewport */
    * {
        max-width: 100vw;
    }
    
    /* Fix header on mobile */
    .header, header {
        width: 100%;       
        padding: 8px 15px;
        box-sizing: border-box;
        flex-wrap: nowrap;
        height: 60px;
    }
    
    #companyName {
        font-size: 20px;
        text-align: center;
        padding: 0 5px;
    }
    
    header img {
        height: 20px;
        width: auto;

    }
    
    /* Navigation menu mobile fix */
    nav, #navigationMenu {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    /* Main content containers */
    .container,
    .index-container,
    main,
    section {
        width: 100%;
        max-width: 100vw;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Tables - make them scrollable horizontally within container */
    table {
        display: block;
        overflow-x: auto;
        width: 100%;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Images and media */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Forms on mobile */
    form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    input, select, textarea, button {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Buttons full width on mobile */
    button, .btn, input[type="submit"], input[type="button"] {
        width: 100%;
        max-width: 100%;
    }
    
    /* Grid layouts - stack on mobile */
    .grid, .row, .columns {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    /* Index boxes for services */
    .index-box {
        width: 100%;
        max-width: 100%;
        margin: 10px 0;
    }
    
    /* Prevent long text from overflowing */
    p, h1, h2, h3, h4, h5, h6, span, div, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Links should not break layout */
    a {
        max-width: 100%;
        display: inline-block;
    }
}

/* Extra small devices (phones in portrait, less than 576px) */
@media screen and (max-width: 576px) {
    body {
        font-size: 14px;
    }
    
    .header {
        height: auto;
        min-height: 60px;
        padding: 8px;
    }
    
    #companyName {
        font-size: 16px;
    }
    
    footer {
        padding: 15px 10px;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
    }
    
    footer .section {
        padding: 10px 0;
        width: 100% !important;
        flex: 0 0 100% !important;
        min-width: 0 !important;
    }
    
    footer .section h4 {
        font-size: 15px;
    }
    
    footer .section p,
    footer .section a {
        font-size: 13px;
    }
}

/* ============================================= */
/* CONSOLIDATED RESPONSIVE FIXES - FINAL        */
/* All mobile fixes consolidated here            */
/* ============================================= */

/* CRITICAL: Force footer sections to stack vertically on mobile */
/* This MUST be at the end to override everything */
@media screen and (max-width: 768px) {
    /* Prevent horizontal scroll - CRITICAL FIX */
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Container fixes */
    .container,
    .index-container,
    main,
    section,
    article {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Footer already defined above with mobile-first approach - no override needed */
    
    /* Images and media */
    img,
    video,
    iframe,
    svg {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Tables - allow horizontal scroll within viewport */
    table {
        display: block !important;
        overflow-x: auto !important;
        max-width: 100% !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Text fixes - prevent long words from breaking layout */
    p, h1, h2, h3, h4, h5, h6, span, li, a, td, th {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Form elements */
    input,
    select,
    textarea,
    button {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Mobile phones - compact footer */
@media screen and (max-width: 480px) {
    footer {
        padding: 15px 10px;
    }
    
    footer .section {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    footer .section h4 {
        font-size: 16px;
    }
    
    footer .section p {
        font-size: 13px;
    }
    
    footer .subscribe-form input,
    footer .subscribe-form button {
        padding: 10px;
        font-size: 13px;
    }
}

/* Jobseeker Dashboard Styles - Blue Theme */
:root {
    --primary-blue: #3498db;
    --secondary-blue: #5dade2;
    --light-blue: #85c1e9;
    --lighter-blue: #d6eaf8;
    --lightest-blue: #ebf5fb;
    --dark-blue: #2c3e50;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --success-green: #10b981;
    --danger-red: #ef4444;
    --border-color: #e5e7eb;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.jobseeker-dashboard-container ~ body,
body:has(.jobseeker-dashboard-container),
.jobseeker-dashboard-form-container {
    /* Jobseeker page background applied via scoped class below */
}

.jobseeker-bg {
    background: linear-gradient(135deg, var(--lightest-blue) 0%, var(--lighter-blue) 100%) !important;
    min-height: 100vh;
    color: var(--text-dark);
}

/* Header */
.jobseeker-dashboard-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.jobseeker-dashboard-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jobseeker-dashboard-logo img {
    height: 50px;
    width: auto;
}

.jobseeker-dashboard-logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.jobseeker-dashboard-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.jobseeker-dashboard-user-info span {
    font-size: 1rem;
}

.jobseeker-dashboard-logout-btn {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.jobseeker-dashboard-logout-btn:hover {
    background: var(--lighter-blue);
    transform: translateY(-2px);
}

/* Main Container */
.jobseeker-dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Form Container (Login/Register) */
.jobseeker-dashboard-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
    padding: 2rem 0;
}

.jobseeker-dashboard-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: auto;
}

.jobseeker-dashboard-title {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Form Groups */
.jobseeker-dashboard-form-group {
    margin-bottom: 1.5rem;
}

.jobseeker-dashboard-form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.jobseeker-dashboard-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.jobseeker-dashboard-input:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px var(--lightest-blue);
}

.jobseeker-dashboard-input:disabled,
.jobseeker-dashboard-input:readonly {
    background-color: var(--lightest-blue);
    cursor: not-allowed;
}

/* Checkbox */
.jobseeker-dashboard-checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.jobseeker-dashboard-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.jobseeker-dashboard-checkbox-group label {
    margin: 0;
    cursor: pointer;
}

/* Buttons */
.jobseeker-dashboard-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jobseeker-dashboard-btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    width: 100%;
}

.jobseeker-dashboard-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

.jobseeker-dashboard-btn-secondary {
    background: var(--light-blue);
    color: var(--white);
}

.jobseeker-dashboard-btn-secondary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

.jobseeker-dashboard-btn-danger {
    background: var(--danger-red);
    color: var(--white);
}

.jobseeker-dashboard-btn-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.jobseeker-dashboard-link-text {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
}

.jobseeker-dashboard-link-text a {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
}

.jobseeker-dashboard-link-text a:hover {
    text-decoration: underline;
}

/* Dashboard Main */
.jobseeker-dashboard-main {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Sections */
.jobseeker-dashboard-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--lightest-blue);
    border-radius: 10px;
    border-left: 5px solid var(--secondary-blue);
}

.jobseeker-dashboard-section-title {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-blue);
}

/* Grid Layout */
.jobseeker-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Image Preview */
.jobseeker-dashboard-image-preview {
    margin-top: 1rem;
    width: 150px;
    height: 150px;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--white);
}

.jobseeker-dashboard-image-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.jobseeker-dashboard-image-preview.has-image {
    border-style: solid;
    border-color: var(--secondary-blue);
}

/* Qualifications */
.jobseeker-dashboard-qualifications-container {
    margin-bottom: 1rem;
}

.jobseeker-dashboard-qualification-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid var(--lighter-blue);
}

.jobseeker-dashboard-remove-qualification {
    width: auto;
    padding: 0.5rem 1rem;
}

/* Documents Table */
.jobseeker-dashboard-table-container {
    margin-top: 2rem;
    overflow-x: auto;
}

.jobseeker-dashboard-table-container h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.jobseeker-dashboard-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.jobseeker-dashboard-table thead {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.jobseeker-dashboard-table th,
.jobseeker-dashboard-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.jobseeker-dashboard-table th {
    font-weight: 600;
}

.jobseeker-dashboard-table tbody tr:hover {
    background: var(--lightest-blue);
}

.jobseeker-dashboard-table tbody tr:last-child td {
    border-bottom: none;
}

.jobseeker-dashboard-no-data {
    text-align: center;
    color: var(--text-light);
    padding: 2rem !important;
}

.jobseeker-dashboard-table-btn {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
}

/* Actions */
.jobseeker-dashboard-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.jobseeker-dashboard-actions .jobseeker-dashboard-btn {
    width: auto;
    min-width: 150px;
}

/* Modal */
.jobseeker-dashboard-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.jobseeker-dashboard-modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.jobseeker-dashboard-modal-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.jobseeker-dashboard-modal-content p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .jobseeker-dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .jobseeker-dashboard-logo {
        flex-direction: column;
    }

    .jobseeker-dashboard-logo h1 {
        font-size: 1.25rem;
    }

    .jobseeker-dashboard-container {
        padding: 0 1rem;
    }

    .jobseeker-dashboard-card {
        padding: 2rem 1.5rem;
    }

    .jobseeker-dashboard-main {
        padding: 1.5rem 1rem;
    }

    .jobseeker-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .jobseeker-dashboard-actions {
        flex-direction: column;
    }

    .jobseeker-dashboard-actions .jobseeker-dashboard-btn {
        width: 100%;
    }

    .jobseeker-dashboard-table {
        font-size: 0.875rem;
    }

    .jobseeker-dashboard-table th,
    .jobseeker-dashboard-table td {
        padding: 0.5rem;
    }
}

/* Loading Animation */
.jobseeker-dashboard-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.jobseeker-dashboard-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.jobseeker-dashboard-message-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.jobseeker-dashboard-message-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Browse Jobs Section */
.jobseeker-browse-jobs {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.jobseeker-browse-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.jobseeker-browse-header h2 {
    color: var(--primary-blue);
    font-size: 2rem;
}

.jobseeker-job-filters {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto auto;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.jobseeker-search-btn,
.jobseeker-clear-btn {
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.jobseeker-search-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.jobseeker-clear-btn:hover {
    background: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

.jobseeker-jobs-container {
    display: grid;
    gap: 1.5rem;
}

.jobseeker-job-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.jobseeker-job-card:hover {
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.15);
    transform: translateY(-2px);
}

.jobseeker-job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.jobseeker-job-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.jobseeker-job-company {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.jobseeker-job-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.jobseeker-job-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.jobseeker-job-badge-type {
    background: var(--lighter-blue);
    color: var(--primary-blue);
}

.jobseeker-job-badge-location {
    background: #fef3c7;
    color: #92400e;
}

.jobseeker-job-badge-salary {
    background: #d1fae5;
    color: #065f46;
}

.jobseeker-job-description {
    color: var(--text-light);
    margin: 1rem 0;
    line-height: 1.6;
}

.jobseeker-job-requirements {
    margin: 1rem 0;
}

.jobseeker-job-requirements h4 {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.jobseeker-job-requirements-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.jobseeker-job-requirement-tag {
    background: var(--lightest-blue);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.85rem;
}

.jobseeker-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.jobseeker-job-posted {
    color: var(--text-light);
    font-size: 0.9rem;
}

.jobseeker-job-actions {
    display: flex;
    gap: 0.75rem;
}

.jobseeker-job-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.jobseeker-job-btn-apply {
    background: var(--primary-blue);
    color: var(--white);
}

.jobseeker-job-btn-apply:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.jobseeker-job-btn-apply:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

.jobseeker-job-btn-like {
    background: var(--white);
    color: var(--danger-red);
    border: 2px solid var(--danger-red);
}

.jobseeker-job-btn-like:hover {
    background: var(--danger-red);
    color: var(--white);
}

.jobseeker-job-btn-like.liked {
    background: var(--danger-red);
    color: var(--white);
}

/* No Jobs Message */
.jobseeker-no-jobs {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.jobseeker-no-jobs h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Profile Summary Styles */
.jobseeker-profile-summary-container {
    background: linear-gradient(135deg, var(--lighter-blue) 0%, var(--lightest-blue) 100%);
    border: 2px solid var(--secondary-blue);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 16px rgba(30, 64, 175, 0.15);
}

.jobseeker-profile-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-blue);
}

.jobseeker-profile-summary-header h2 {
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin: 0;
}

.jobseeker-profile-summary-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.jobseeker-profile-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.jobseeker-profile-image-item {
    text-align: center;
}

.jobseeker-profile-image-item label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.jobseeker-profile-image-item img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--lighter-blue);
}

.jobseeker-profile-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.jobseeker-profile-detail-row {
    padding: 0.85rem 1rem;
    background: var(--lightest-blue);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.jobseeker-profile-detail-row:hover {
    background: var(--lighter-blue);
    transform: translateX(4px);
}

.jobseeker-profile-detail-row strong {
    color: var(--primary-blue);
    min-width: 150px;
    font-size: 0.95rem;
}

.jobseeker-profile-detail-row span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Responsive Design for Jobs */
@media (max-width: 768px) {
    .jobseeker-job-filters {
        grid-template-columns: 1fr;
    }
    
    .jobseeker-browse-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .jobseeker-job-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .jobseeker-profile-summary-card {
        grid-template-columns: 1fr;
    }
    
    .jobseeker-profile-images {
        flex-direction: row;
        justify-content: center;
    }

    .jobseeker-profile-summary-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .jobseeker-profile-detail-row strong {
        min-width: auto;
    }
}

/* Applications Table Styles */
.jobseeker-applications-section {
    margin-top: 2rem;
}

.jobseeker-applications-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.jobseeker-applications-table thead {
    background: var(--primary-blue);
    color: white;
}

.jobseeker-applications-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.jobseeker-applications-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.jobseeker-applications-table tbody tr:hover {
    background-color: var(--lightest-blue);
}

.jobseeker-applications-table tbody tr:last-child td {
    border-bottom: none;
}

.jobseeker-dashboard-no-data {
    text-align: center;
    padding: 2rem !important;
    color: #6b7280;
    font-style: italic;
}

/* Login Tabs */
.login-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    flex-wrap: nowrap;
    justify-content: space-between;
}

.login-tab {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    bottom: -2px;
    flex: 1;
    white-space: nowrap;
}

.login-tab:hover {
    color: var(--primary-blue);
    background: var(--lightest-blue);
}

.login-tab.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.login-tab[data-tab="admin"].active {
    color: #2c3e50;
    border-bottom-color: #2c3e50;
}

.login-tab[data-tab="manager"].active {
    color: #3498db;
    border-bottom-color: #3498db;
}

.login-tab[data-tab="hr"].active {
    color: #3498db;
    border-bottom-color: #3498db;
}

.tab-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tabs */
@media (max-width: 768px) {
    .login-tabs {
        flex-direction: column;
        gap: 0;
        border-bottom: none;
    }
    
    .login-tab {
        border-bottom: 1px solid var(--border-color);
        border-left: 3px solid transparent;
        bottom: 0;
        text-align: left;
    }
    
    .login-tab.active {
        border-bottom-color: var(--border-color);
        border-left-color: var(--primary-blue);
        background: var(--lightest-blue);
    }
    
    .login-tab[data-tab="admin"].active {
        border-left-color: #2c3e50;
    }
    
    .login-tab[data-tab="manager"].active {
        border-left-color: #3498db;
    }
    
    .login-tab[data-tab="hr"].active {
        border-left-color: #3498db;
    }
}


/* END OF CONSOLIDATED RESPONSIVE FIXES */