/* ===== SMART STOCKS COMBINED STYLES ===== */
:root {
    --primary: #0d47a1;
    --primary-dark: #002984;
    --accent: #ffd54f;
    --light: #e3f2fd;
    --dark: #0a192f;
    --gray: #6c757d;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --success: #28a745;
    --info: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== ANIMATIONS ===== */
@keyframes glowPulse {
    0% { box-shadow: 0 0 5px var(--accent); }
    50% { box-shadow: 0 0 20px var(--accent), 0 0 30px #ffd54f; transform: scale(1.02); }
    100% { box-shadow: 0 0 5px var(--accent); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.5; }
}

@keyframes softPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,213,79,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255,213,79,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,213,79,0); }
}

@keyframes floatImg {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes checkmark {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* ===== BODY & GENERAL ===== */
body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    padding-top: 70px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    backdrop-filter: blur(12px);
    background: rgba(13, 71, 161, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 8px 0;
    transition: all 0.3s ease;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

@media (max-width: 991.98px) {
    .navbar-collapse { display: none !important; }
    .navbar .container-fluid { padding-left: 7px !important; padding-right: 7px !important; max-width: 100%; }
    .navbar-brand { max-width: calc(100% - 100px); white-space: nowrap; text-overflow: ellipsis; }
    .navbar-brand img { height: 35px; width: auto; flex-shrink: 0; }
    .navbar-brand span { font-size: 1.1rem; display: inline-block; }
    .d-flex.align-items-center.gap-2 { flex-shrink: 0; }
}

@media (max-width: 480px) {
    .navbar-brand span { font-size: 1rem; }
    .navbar-brand img { height: 30px; }
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    margin-right: 8px;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
    animation: glowPulse 2s infinite;
}

.navbar-brand span {
    font-size: 1.2rem;
    color: white;
}

.navbar-brand span span { color: var(--accent) !important; }

.nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 30px;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255,213,79,0.2);
    color: var(--accent) !important;
}

.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.5);
    padding: 0.4rem 0.6rem;
    margin: 0;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255,213,79,0.3);
    outline: none;
}

/* ===== MOBILE MENU MODAL ===== */
.mobile-menu-modal .modal-content {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border: none;
    border-radius: 0;
    min-height: 100vh;
    color: white;
}

.mobile-menu-modal .modal-header {
    border-bottom: 2px solid rgba(255,213,79,0.3);
    padding: 1.2rem 1.5rem;
}

.mobile-menu-modal .modal-title {
    font-size: 1.8rem;
    font-weight: 800;
}

.mobile-menu-modal .modal-title span { color: var(--accent); }

.mobile-menu-items { padding: 1rem; }

.mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.2rem;
    margin-bottom: 0.6rem;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.mobile-menu-item i {
    font-size: 1.5rem;
    margin-right: 1.2rem;
    width: 1.8rem;
    color: var(--accent);
}

.mobile-menu-item.active {
    background: rgba(255,213,79,0.2);
    border-color: var(--accent);
    color: var(--accent);
}

.mobile-menu-footer {
    padding: 1.5rem;
    text-align: center;
    position: sticky;
    bottom: 0;
    background: rgba(13,71,161,0.95);
}

/* ===== HERO SECTION ===== */
.hero-bg {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    color: white;
    padding: 2rem 1rem 3rem !important;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,213,79,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

/* ===== BUTTON STYLES ===== */
.btn-premium {
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    transition: all 0.3s;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255,213,79,0.3);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-premium:hover {
    background: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,213,79,0.5);
    color: var(--dark);
}

.btn-premium-sm { padding: 8px 16px; font-size: 0.9rem; }

.btn-whatsapp {
    background: #25D366;
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    transition: all 0.3s;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(18,140,126,0.4);
    color: white;
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--dark);
}

.btn-accent {
    background: var(--accent);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 28px;
    transition: 0.3s;
    border: none;
}

.btn-accent:hover {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,213,79,0.4);
}

.btn-view {
    background: var(--primary);
    color: white;
}

.btn-view:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(13,71,161,0.4);
}

.btn-enquiry {
    background: var(--whatsapp);
    color: white;
}

.btn-enquiry:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37,211,102,0.4);
}

/* ===== FORM CONTROLS ===== */
.form-floating > .form-control,
.form-floating > .form-select {
    height: 60px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(13,71,161,0.1);
    transform: scale(1.01);
}

.form-floating > label { padding: 1rem; }

/* ===== MODAL BASE STYLES ===== */
.modal-dialog { max-width: 500px; margin: 1.75rem auto; }
@media (max-width: 768px) { .modal-dialog { margin: 1px; } }

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1.2rem 1.5rem;
    border: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-header .btn-close:hover { opacity: 1; }

.modal-body { padding: 1.5rem; max-height: 70vh; overflow-y: auto; }
@media (max-width: 768px) { .modal-body { padding: 1rem; } }

/* ===== SEARCH MODAL ===== */
.search-modal .search-filters {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.search-modal .form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.search-modal .form-control,
.search-modal .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.6rem 1rem;
}

.search-modal .form-control:focus,
.search-modal .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(13,71,161,0.1);
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.search-result-item:hover {
    background: #f0f7ff;
    transform: translateX(5px);
}

.result-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    background: var(--light);
    color: var(--primary);
    font-weight: 600;
    display: inline-block;
    margin-right: 0.8rem;
}

.result-title { font-weight: 600; color: var(--dark); }
.result-category { font-size: 0.8rem; color: var(--gray); margin-top: 0.2rem; margin-left: 2.2rem; }
.no-results { text-align: center; padding: 3rem; color: var(--gray); }

/* ===== PRODUCT DETAIL MODAL ===== */
.product-detail-modal .modal-content { border-radius: 24px; overflow: hidden; }
.product-detail-modal .modal-header { padding: 1.5rem; }
.product-detail-modal .modal-body { padding: 2rem; }

.product-field {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.field-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.field-value { font-size: 1rem; font-weight: 600; color: var(--dark); }

.price-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    margin: 1rem 0;
}

.price-large { font-size: 1.8rem; font-weight: 800; }
@media (max-width: 768px) { .price-large { font-size: 1.5rem; } }

.offer-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.features-list { list-style: none; padding: 0; margin: 0; }
.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px dashed #eee;
}
.features-list li:last-child { border-bottom: none; }
.features-list i { color: var(--success); font-size: 1.1rem; }

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.action-buttons .btn {
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ===== ENQUIRY MODAL ===== */
.enquiry-modal .modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.enquiry-modal .modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1.5rem 2rem;
    border: none;
}

.enquiry-modal .modal-header .btn-close { filter: brightness(0) invert(1); opacity: 0.8; transition: all 0.3s; }
.enquiry-modal .modal-header .btn-close:hover { opacity: 1; transform: rotate(90deg); }
.enquiry-modal .modal-body { padding: 2rem; }
@media (max-width: 768px) { .enquiry-modal .modal-body { padding: 1.5rem; } }
@media (max-width: 480px) { .enquiry-modal .modal-body { padding: 1.2rem; } }

.enquiry-modal .form-floating > .form-control,
.enquiry-modal .form-floating > .form-select {
    height: 58px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .enquiry-modal .form-floating > .form-control,
    .enquiry-modal .form-floating > .form-select { height: 54px; font-size: 0.9rem; }
}

.enquiry-modal .form-floating > .form-control:focus,
.enquiry-modal .form-floating > .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(13,71,161,0.1);
    transform: scale(1.01);
}

.enquiry-modal .form-floating > label { padding: 1rem; color: var(--gray); font-size: 0.9rem; }
.enquiry-modal textarea.form-control { height: 120px !important; resize: none; }

.enquiry-modal .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.enquiry-modal .form-check-label a { text-decoration: none; font-weight: 600; }
.enquiry-modal .form-check-label a:hover { text-decoration: underline; }

.enquiry-modal .btn-premium {
    padding: 14px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    width: 100%;
    margin-top: 0.5rem;
}

@media (max-width: 768px) { .enquiry-modal .btn-premium { padding: 12px 20px; font-size: 1rem; } }

/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #0a192f, #0d2b4f);
    color: white;
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent, var(--accent));
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent);
}

.footer-logo span { font-size: 1.5rem; font-weight: 800; }
.footer-logo span span { color: var(--accent); }
@media (max-width: 768px) { .footer-logo img { height: 40px; } .footer-logo span { font-size: 1.2rem; } }

.footer-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-links a:hover { color: var(--accent); transform: translateX(5px); }

.footer-social {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-contact { color: rgba(255,255,255,0.7); }
.footer-contact p { margin-bottom: 0.8rem; }
.footer-contact i { color: var(--accent); margin-right: 0.5rem; width: 20px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ===== ADVERTISEMENT SLIDER ===== */
.ad-slider {
    background: var(--accent);
    color: var(--dark);
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-weight: 600;
    font-size: 0.9rem;
}

.ad-slider-track {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.ad-slider-track span { margin-right: 40px; }
.ad-slider-track i { margin-right: 8px; color: var(--primary); }

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
    body { padding-top: 62px; }
    .btn-premium, .btn-whatsapp { padding: 10px 20px; font-size: 0.95rem; width: 100%; margin: 0.25rem 0; }
    .product-field { padding: 0.8rem; margin-bottom: 0.8rem; }
}

/* ===== INDEX PAGE SPECIFIC STYLES ===== */
.hero-image { text-align: center; }
.hero-image img {
    max-width: 100%;
    height: auto;
    max-width: 300px;
    margin: 0 auto;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}
@media (max-width: 480px) { .hero-image img { max-width: 200px; } }

/* Search Section */
.search-section {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(13,71,161,0.1);
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(13,71,161,0.15);
    border: 2px solid var(--primary);
    overflow: hidden;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: white;
}

.search-type {
    padding: 0 20px;
    border-right: 2px solid #e0e0e0;
    background: #f8f9fa;
}

.search-type select {
    border: none;
    background: transparent;
    padding: 15px 0;
    font-weight: 600;
    color: var(--primary);
    outline: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    padding: 15px 0;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.search-input-wrapper button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
}

.search-input-wrapper button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.category-chips {
    display: flex;
    gap: 10px;
    padding: 10px 20px 15px;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.chip {
    padding: 6px 16px;
    background: white;
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: 0.3s;
}

.chip:hover, .chip.active { background: var(--primary); color: white; }

/* Feature Cards */
.feature-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    height: 100%;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13,71,161,0.15);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 1rem;
    transition: all 0.3s;
}

.feature-card:hover .icon-circle {
    transform: scale(1.1);
    background: var(--accent);
    color: var(--dark);
}

/* Demo Showcase */
.demo-showcase {
    position: relative;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}
@media (max-width: 768px) { .demo-showcase { min-height: 450px; } }
@media (max-width: 480px) { .demo-showcase { min-height: 400px; } }

.demo-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    left: 0;
    right: 0;
    top: 0;
}

.demo-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
    animation: slideIn 0.5s ease-out;
}

.demo-slide.prev { transform: translateX(-100%); }

.demo-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    box-shadow: 0 15px 30px rgba(13,71,161,0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,213,79,0.2);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}
@media (max-width: 768px) { .demo-card { margin: 0 15px; padding: 1.5rem; max-width: 100%; } }
@media (max-width: 480px) { .demo-card { padding: 1.2rem; margin: 0 10px; } }

.demo-badge {
    position: absolute;
    top: -5px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(255,213,79,0.3);
    border: 2px solid white;
    white-space: nowrap;
    margin-top:0.75rem;
}
@media (max-width: 768px) { .demo-badge { top: -10px; right: 15px; padding: 0.3rem 1rem; font-size: 0.7rem; margin-top:0.75rem; } }
@media (max-width: 480px) { .demo-badge { right: 10px; padding: 0.25rem 0.8rem; font-size: 0.65rem; margin-top:0.75rem; } }

.demo-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 0;
}

.demo-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) { .demo-nav-btn { width: 40px; height: 40px; font-size: 1rem; } }

.demo-nav-btn:hover { background: var(--primary); color: white; }

.demo-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.demo-indicator {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: #ccc;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
    padding: 0;
}

.demo-indicator.active { background: var(--primary); width: 50px; }

/* Featured Products */
.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0 10px;
}

.featured-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
@media (max-width: 768px) { .featured-header h3 { font-size: 1.3rem; } }

.featured-header .btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
    white-space: nowrap;
}
@media (max-width: 768px) { .featured-header .btn-sm { font-size: 0.8rem; padding: 5px 10px; } }

.featured-carousel-wrapper {
    position: relative;
    padding: 0 40px;
}
@media (max-width: 768px) { .featured-carousel-wrapper { padding: 0 30px; } }

.featured-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 5px 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.featured-grid::-webkit-scrollbar { height: 6px; }
.featured-grid::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

.featured-item {
    min-width: 250px;
    max-width: 250px;
    flex: 0 0 250px;
    scroll-snap-align: start;
}
@media (max-width: 768px) { .featured-item { min-width: 220px; max-width: 220px; flex: 0 0 220px; } }
@media (max-width: 480px) { .featured-item { min-width: 200px; max-width: 200px; flex: 0 0 200px; } }

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carousel-nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.left { left: 0; }
.carousel-nav-btn.right { right: 0; }
@media (max-width: 768px) { .carousel-nav-btn { width: 28px; height: 28px; font-size: 0.9rem; } }

/* Featured Product Card */
.featured-card {
    background: white;
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 10px 20px rgba(13,71,161,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,213,79,0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.featured-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,213,79,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.featured-card:hover::after { transform: translateX(100%); }
.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255,213,79,0.15);
    border-color: var(--accent);
}

.featured-card .badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    z-index: 2;
    animation: softPulse 2s infinite;
}

.featured-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.8rem 0 0.5rem;
    color: var(--dark);
}

.featured-card .product-desc {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 2.8rem;
}

.featured-card .price-tag {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0;
}

.featured-card .offer-tag {
    font-size: 0.7rem;
    color: #28a745;
    font-weight: 600;
    background: rgba(40,167,69,0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.featured-card .btn-group {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.featured-card .btn-sm {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

/* ===== PRODUCT PAGE SPECIFIC STYLES ===== */
/* Filter Section - Desktop (Left Sidebar) */
@media (min-width: 992px) {
    .products-layout { display: flex; gap: 1.5rem; }
    .filter-sidebar {
        width: 280px;
        flex-shrink: 0;
        background: white;
        border-radius: 20px;
        padding: 1.2rem;
        box-shadow: 0 8px 18px rgba(13,71,161,0.08);
        height: fit-content;
        position: sticky;
        top: 90px;
        margin-bottom: 1.5rem;
    }
    .products-main { flex: 1; min-width: 0; }
    .filter-toggle-mobile { display: none; }
}

/* Filter Section - Mobile (Modal) */
@media (max-width: 991px) {
    .filter-sidebar { display: none; }
    .filter-toggle-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        padding: 0.8rem 1rem;
        border-radius: 50px;
        box-shadow: 0 4px 12px rgba(13,71,161,0.1);
        margin-bottom: 1rem;
        cursor: pointer;
        border: 2px solid var(--primary);
    }
    .filter-toggle-mobile span { font-weight: 600; color: var(--primary); }
    .filter-toggle-mobile i { color: var(--primary); font-size: 1.2rem; }
    .filter-badge {
        background: var(--primary);
        color: white;
        border-radius: 30px;
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
        margin-left: 0.5rem;
    }
}

/* Filter Modal */
.filter-modal .modal-content { border-radius: 20px 20px 0 0; min-height: 90vh; }
.filter-modal .modal-header { background: var(--primary); }
.filter-modal .modal-body { padding: 1.5rem; }
.filter-modal.show .modal-dialog { animation: slideUp 0.3s ease-out; }

.filter-group {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}
.filter-group:last-child { border-bottom: none; }
.filter-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    display: block;
}

.filter-select, .filter-input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: white;
}

.filter-select:focus, .filter-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(13,71,161,0.1);
}

.price-range {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.price-range input { flex: 1; }

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tag {
    padding: 0.4rem 1rem;
    background: #f0f0f0;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.filter-tag:hover { background: #e0e0e0; }
.filter-tag.active { background: var(--primary); color: white; }

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 0.5rem 0;
}

.active-filter-badge {
    background: var(--light);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid var(--primary);
}

.active-filter-badge i { cursor: pointer; font-size: 0.9rem; }

.clear-filters {
    color: #dc3545;
    background: rgba(220,53,69,0.1);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #dc3545;
}

/* Product Section Headers */
.product-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
}

.product-section-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.product-section-header h3 i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 1.4rem;
}

.view-all-link {
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    background: rgba(13,71,161,0.08);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.view-all-link:hover { background: var(--primary); color: white; }

.section-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin: 0.5rem 0 1.2rem 0;
    border-radius: 3px;
}

/* Product Cards (Universal) */
.product-card {
    background: white;
    border-radius: 20px;
    padding: 1.2rem 1rem;
    box-shadow: 0 8px 18px rgba(13,71,161,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(255,213,79,0.1);
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Gradient overlay animation */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,213,79,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover::after { transform: translateX(100%); }

/* Card content should be above overlay */
.product-card > * { position: relative; z-index: 2; }

/* Main hover effects */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(13,71,161,0.2);
    border-color: var(--accent);
}

.product-badge {
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 30px;
    padding: 0.25rem 0.8rem;
    display: inline-block;
    margin-bottom: 0.6rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    display: inline-block;
}

.product-badge.warning { background: #ffc107; color: var(--dark); }
.product-badge.success { background: #28a745; color: white; }
.product-badge.info { background: #17a2b8; color: white; }

.product-card:hover .product-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(13,71,161,0.2);
}

.product-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0.3rem 0;
    color: var(--dark);
    line-height: 1.3;
}

.product-card .product-desc {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-price { color: var(--accent); transform: scale(1.05); }

.product-card .product-price small { font-size: 0.7rem; font-weight: 400; color: var(--gray); }

.product-card .offer-tag {
    font-size: 0.7rem;
    color: #28a745;
    font-weight: 600;
    background: rgba(40,167,69,0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.product-card:hover .offer-tag {
    background: var(--success);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(40,167,69,0.3);
}

.product-card .btn-group {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.product-card:hover .btn-group { opacity: 1; transform: translateY(-2px); }

.product-card .btn-sm {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.product-card .btn-sm::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.product-card .btn-sm:active::after { width: 100px; height: 100px; }

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.5rem 0 1.5rem;
}

.products-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    flex: 1;
    padding: 0.3rem 0 1rem;
}

.products-container::-webkit-scrollbar { height: 4px; }
.products-container::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
.products-container::-webkit-scrollbar-track { background: #e0e0e0; border-radius: 10px; }

.product-item {
    min-width: 250px;
    max-width: 250px;
    flex: 0 0 250px;
    scroll-snap-align: start;
}
@media (max-width: 768px) { .product-item { min-width: 220px; max-width: 220px; flex: 0 0 220px; } }
@media (max-width: 480px) { .product-item { min-width: 200px; max-width: 200px; flex: 0 0 200px; } }

/* Scroll Buttons */
.scroll-btn {
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(13,71,161,0.15);
    color: var(--primary);
    font-size: 1.4rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 5;
}

.scroll-btn:hover { background: var(--primary); color: white; transform: scale(1.1); }
@media (max-width: 768px) { .scroll-btn { width: 32px; height: 32px; font-size: 1.2rem; } }
@media (max-width: 480px) { .scroll-btn { width: 28px; height: 28px; font-size: 1rem; } }

/* Quick View Modal */
.quick-view-modal .modal-content {
    border-radius: 24px;
    overflow: hidden;
}

.quick-view-modal .modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1.5rem;
    border: none;
}

.quick-view-modal .modal-body {
    padding: 2rem;
}

.product-detail-row {
    margin-bottom: 1.2rem;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.detail-value.price {
    color: var(--primary);
    font-size: 1.2rem;
}

.detail-value.offer {
    color: #28a745;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-list li {
    padding: 0.4rem 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feature-list li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.modal-action-btn {
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    width: 100%;
    margin-bottom: 0.5rem;
}

.modal-action-btn.whatsapp {
    background: #25D366;
    color: white;
}

.modal-action-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(18,140,126,0.3);
}

.modal-action-btn.primary {
    background: var(--primary);
    color: white;
}

.modal-action-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(13,71,161,0.3);
}

.modal-action-btn.outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.modal-action-btn.outline:hover {
    background: var(--primary);
    color: white;
}

/* View All Modal - Wider on Desktop */
@media (min-width: 992px) {
    .view-all-modal .modal-dialog {
        max-width: 1200px;
        width: 90%;
    }
}

.view-all-modal .modal-body {
    max-height: 80vh;
}

/* Results Count */
.results-count {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
    padding: 0 0.5rem;
    font-weight: 500;
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* No Products Message */
.no-products {
    text-align: center;
    padding: 3rem;
    color: var(--gray);
    background: white;
    border-radius: 20px;
    margin: 1rem 0;
}

.no-products i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

/* Filter Header with Reset */
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light);
}

.filter-header h5 {
    margin: 0;
    font-weight: 700;
    color: var(--primary);
}

.filter-header .reset-btn {
    background: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-header .reset-btn:hover {
    background: #dc3545;
    color: white;
}

/* Search Count Badge */
.search-count {
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

/* Filter Stats */
.filter-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: var(--light);
    border-radius: 12px;
    font-size: 0.85rem;
}

.filter-stats .active-count {
    font-weight: 600;
    color: var(--primary);
}

.filter-stats .clear-link {
    color: #dc3545;
    cursor: pointer;
    font-weight: 500;
    text-decoration: underline;
}

/* Filter Modal Quick Actions */
.filter-quick-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: var(--light);
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 10;
}

.quick-action-btn {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.quick-action-btn.clear-btn {
    background: white;
    color: #dc3545;
    border: 1px solid #dc3545;
    flex: 2;
}

.quick-action-btn.clear-btn:hover {
    background: #dc3545;
    color: white;
}

.quick-action-btn.apply-btn {
    background: var(--primary);
    color: white;
    flex: 3;
}

.quick-action-btn.apply-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.quick-action-btn.close-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    background: rgba(0,0,0,0.1);
    color: var(--dark);
    border-radius: 50%;
    flex: 0 0 auto;
}

.quick-action-btn.close-btn:hover {
    background: rgba(0,0,0,0.2);
    transform: rotate(90deg);
}

/* Active Filters Summary */
.active-filters-summary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: white;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    position: sticky;
    top: 60px;
    z-index: 9;
}

.summary-label {
    color: var(--gray);
    font-weight: 500;
}

.summary-count {
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.summary-clear {
    margin-left: auto;
    color: #dc3545;
    background: transparent;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
}

.summary-clear:hover {
    color: #b02a37;
}

/* Responsive adjustments for filter modal */
@media (max-width: 480px) {
    .quick-action-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .quick-action-btn.close-btn {
        width: 36px;
        height: 36px;
    }
    
    .active-filters-summary {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* ===== CAREER PAGE SPECIFIC STYLES ===== */
.career-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.career-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,213,79,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

.career-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s infinite reverse;
}

.job-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border-left: 8px solid var(--accent);
    box-shadow: 0 15px 30px rgba(13,71,161,0.08);
    transition: 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(13,71,161,0.15);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,213,79,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.job-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Job Card Buttons */
.job-card .btn {
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    white-space: nowrap;
    border: none;
    transition: all 0.3s ease;
}

.job-card .btn-primary {
    background: var(--primary);
    color: white;
}

.job-card .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13,71,161,0.3);
}

.job-card .btn-warning {
    background: var(--accent);
    color: var(--dark);
}

.job-card .btn-warning:hover {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,213,79,0.4);
}

.job-card .flex-fill {
    flex: 1 1 0px;
    min-width: 100px;
}

@media (max-width: 480px) {
    .job-card .btn {
        font-size: 0.8rem;
        padding: 8px 10px;
    }
    .job-card .flex-fill {
        min-width: 80px;
    }
}

/* Job Description Modal */
.jd-modal .modal-content {
    border-radius: 24px;
    border: none;
}

.jd-modal .modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 1.5rem;
}

.jd-modal .modal-body {
    padding: 2rem;
}

.jd-section {
    margin-bottom: 1.5rem;
}

.jd-section h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.jd-section ul {
    list-style: none;
    padding-left: 0;
}

.jd-section li {
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.jd-section li i {
    color: var(--accent);
    font-size: 1rem;
}

/* Apply Modal */
.apply-modal .modal-content {
    border-radius: 24px;
    border: none;
}

.apply-modal .modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 1.5rem;
}

.apply-modal .modal-body {
    padding: 2rem;
}

.apply-modal .form-control, 
.apply-modal .form-select {
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    padding: 0.8rem 1rem;
    transition: all 0.3s;
}

.apply-modal .form-control:focus, 
.apply-modal .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(13,71,161,0.1);
}

.apply-modal .form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.apply-modal .required::after {
    content: '*';
    color: #dc3545;
    margin-left: 0.2rem;
}

/* Filter Section for Jobs */
.job-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.job-filter {
    padding: 0.5rem 1.5rem;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.job-filter:hover, 
.job-filter.active {
    background: var(--primary);
    color: white;
}

/* Notice Modal */
.notice-modal .modal-content {
    border-radius: 30px;
    border: none;
    overflow: hidden;
}

.notice-modal .modal-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 2rem;
    text-align: center;
    display: block;
    position: relative;
}

.notice-modal .modal-header::before {
    content: '📧';
    position: absolute;
    font-size: 6rem;
    opacity: 0.2;
    right: 20px;
    top: -10px;
    transform: rotate(15deg);
}

.notice-modal .modal-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.notice-modal .modal-body {
    padding: 2.5rem;
    background: #f8faff;
}

.notice-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-left: 6px solid var(--accent);
}

.notice-email {
    background: var(--light);
    padding: 1.2rem;
    border-radius: 16px;
    margin: 1.5rem 0;
    border: 2px dashed var(--primary);
}

.notice-email p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.notice-email i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-right: 0.8rem;
}

.copy-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    transition: 0.3s;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* HR Acknowledgment */
.hr-acknowledge {
    background: linear-gradient(145deg, #eef4ff, #ffffff);
    border-radius: 40px;
    padding: 3rem;
    margin: 3rem 0;
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hr-acknowledge:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13,71,161,0.15);
}

.hr-acknowledge::before {
    content: '📧';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    bottom: -20px;
    right: -20px;
    transform: rotate(15deg);
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    transition: 0.3s;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13,71,161,0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.contact-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,213,79,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

.contact-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s infinite reverse;
}

.contact-info-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(13,71,161,0.08);
    transition: 0.3s;
    height: 100%;
    text-align: center;
    border-bottom: 4px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--accent);
    box-shadow: 0 25px 50px rgba(13,71,161,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    transition: 0.3s;
}

.contact-info-card:hover .contact-icon {
    background: var(--primary);
    color: white;
    transform: rotate(360deg);
    transition: 0.6s;
}

.contact-form-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(13,71,161,0.1);
    border: 1px solid rgba(255,213,79,0.2);
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 1.5rem;
    }
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(13,71,161,0.1);
    border: 3px solid white;
}

.office-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    transition: 0.3s;
    border-left: 4px solid var(--primary);
}

.office-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 30px rgba(13,71,161,0.1);
}

.office-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.social-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid transparent;
}

.social-contact:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13,71,161,0.1);
}

/* FAQ Items */
.faq-item {
    background: white;
    border-radius: 16px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: 0.3s;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    border-left-color: var(--accent);
    box-shadow: 0 10px 20px rgba(13,71,161,0.05);
}

.faq-question {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #e0e0e0;
    color: var(--gray);
}

/* Business Hours */
.business-hours {
    background: linear-gradient(145deg, #ffffff, #f8faff);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(13,71,161,0.1);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.hours-item:last-child {
    border-bottom: none;
}

.emergency-badge {
    background: #ff4444;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* ===== TOUR PAGE SPECIFIC STYLES ===== */
.tour-header {
    background: linear-gradient(135deg, var(--primary) 0%, #1565c0 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.tour-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,213,79,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

/* Tour Tabs */
.tour-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: -2rem auto 2rem;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.tour-tab {
    background: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
    color: var(--dark);
    border: 2px solid transparent;
}

.tour-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(13,71,161,0.2);
}

.tour-tab.active {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .tour-tab {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tour-tab {
        width: 100%;
        text-align: center;
    }
}

/* Tour Slides Container */
.tour-slides-container {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    margin: 2rem 0;
}

.tour-slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.6s ease-in-out;
    pointer-events: none;
}

.tour-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

/* Onboarding Cards */
.onboarding-step {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-left: 8px solid var(--accent);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.onboarding-step::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,213,79,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.onboarding-step:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(13,71,161,0.15);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(13,71,161,0.1);
    position: absolute;
    bottom: 0;
    right: 20px;
    line-height: 1;
}

/* Company Tour Cards */
.company-card {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.company-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent);
    box-shadow: 0 25px 60px rgba(13,71,161,0.15);
}

.company-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

/* Ongoing Events Banner */
.events-banner {
    background: linear-gradient(145deg, #0b2b4f, #1a4c7a);
    color: white;
    padding: 3rem;
    border-radius: 40px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.events-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,213,79,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.event-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 0.5s ease-out;
    height: 100%;
}

@media (max-width: 768px) {
    .events-banner {
        padding: 2rem;
    }
}

/* Floating Images */
.float-img {
    animation: floatImg 6s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
.about-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,213,79,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

.about-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s infinite reverse;
}

.milestone-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(13,71,161,0.08);
    transition: 0.3s;
    border-bottom: 4px solid transparent;
    height: 100%;
}

.milestone-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--accent);
    box-shadow: 0 25px 50px rgba(13,71,161,0.15);
}

.milestone-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.value-card {
    background: linear-gradient(145deg, #ffffff, #f8faff);
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid rgba(13,71,161,0.1);
    transition: 0.3s;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(13,71,161,0.1);
}

.team-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(13,71,161,0.15);
}

.team-img {
    width: 100%;
    height: 250px;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

@media (max-width: 480px) {
    .team-img {
        height: 200px;
        font-size: 3rem;
    }
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

/* Partner Cards */
.partner-card {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,213,79,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.partner-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 25px 50px rgba(13,71,161,0.15);
}

.partner-icon {
    width: 100px;
    height: 100px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    transition: 0.3s;
}

.partner-card:hover .partner-icon {
    background: var(--primary);
    color: white;
    transform: rotate(360deg);
    transition: 0.6s;
}

.partner-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Team Strength Cards */
.strength-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: 0.3s;
    height: 100%;
    border-left: 4px solid var(--primary);
    position: relative;
}

.strength-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(13,71,161,0.1);
}

.strength-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.member-dept {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.member-location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--gray);
}

.member-location i {
    color: var(--accent);
}

.work-mode {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: var(--light);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Department Filter */
.dept-filter {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.dept-tag {
    padding: 0.5rem 1.2rem;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.dept-tag:hover, 
.dept-tag.active {
    background: var(--primary);
    color: white;
}

@media (max-width: 480px) {
    .dept-tag {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Title Underline */
.title-underline {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 1rem 0 2rem;
    border-radius: 2px;
}

.title-underline.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Success message animation */
.success-check {
    color: #28a745;
    font-size: 3rem;
    animation: checkmark 0.5s ease-in-out;
    margin-bottom: 1rem;
}

/* ===== PROJECT FLOW PAGE SPECIFIC STYLES ===== */
/* Step Cards for Project Flow */
.step-container {
    position: relative;
    margin-bottom: 4rem;
}

.step-card {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(13,71,161,0.1);
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    height: 100%;
    cursor: pointer;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(13,71,161,0.15);
    border-color: var(--accent);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--accent);
    color: var(--dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(255,213,79,0.3);
    border: 3px solid white;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.step-card:hover .step-icon {
    background: var(--primary);
    color: white;
    transform: rotate(360deg);
    transition: 0.6s;
}

/* Connecting Lines */
.connector-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    top: 40px;
    left: 0;
    opacity: 0.3;
    z-index: 1;
}

/* Lead Sources */
.lead-source {
    background: white;
    border-radius: 100px;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.5rem;
    border: 1px solid transparent;
    transition: 0.3s;
}

.lead-source:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13,71,161,0.1);
}

.lead-source i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Training Cards */
.training-card {
    background: linear-gradient(145deg, #ffffff, #f8faff);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(13,71,161,0.1);
    position: relative;
    overflow: hidden;
}

.training-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,213,79,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Promise Banner */
.promise-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 40px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.promise-banner::before {
    content: '✦';
    position: absolute;
    font-size: 20rem;
    opacity: 0.05;
    bottom: -50px;
    right: -50px;
    transform: rotate(15deg);
}

/* Animation Classes */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.slide-in-left {
    animation: slideInLeft 0.8s forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Loading Shimmer Effect */
.product-card.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Responsive hover adjustments for touch devices */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
        box-shadow: 0 8px 18px rgba(13,71,161,0.08);
    }
    
    .product-card:hover::after {
        transform: translateX(-100%);
    }
    
    .product-card:active {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 0 15px 25px rgba(13,71,161,0.15);
        transition: all 0.1s ease;
    }
}


/* Visitor Count Styles */
.visitor-count-container {
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin: 1rem 0;
}

.visitor-count-container .text-white-50 {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.9rem;
}

.visitor-count, .total-visitors {
    font-size: 1.1rem;
    margin: 0 0.2rem;
}


/* Update this section - around line 500-520 */
@media (max-width: 768px) {
    .search-container {
        border-radius: 30px;
        margin: 0 15px;
    }

    .search-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .search-type {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #e0e0e0;
        padding: 5px 15px;
    }

    .search-type select {
        width: 100%;
        padding: 10px 0;
    }

    .search-input-wrapper {
        width: 100%;
        padding: 10px 15px;
        flex-direction: column;  /* Changed from row to column */
        gap: 10px;
    }

    .search-input-wrapper input {
        width: 100%;
        padding: 12px 0;
        border: none;
        border-bottom: 1px solid #e0e0e0; /* Optional: adds separator */
    }

    .search-input-wrapper button {
        width: 100%;
        padding: 12px;
        margin-top: 5px;
    }
}