/* ==========================================================================
   GLOBAL VARIABLES, CONFIGURATION & RESET
   ========================================================================== */
:root {
    --primary: #0099ff;
    --secondary: #00cfff;
    --dark: #0f172a;
    --light: #f8fbff;
    --accent: #ff9900;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #334155;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ==========================================================================
   HERO SECTION STRUCTURE
   ========================================================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, #eef9ff 0%, #ffffff 100%);
    padding: 30px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, rgba(0, 153, 255, 0.12), rgba(0, 207, 255, 0.05));
    border-radius: 43% 57% 70% 30% / 45% 45% 55% 55%;
    top: -150px;
    right: -150px;
    filter: blur(40px);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(0, 207, 255, 0.08), rgba(0, 153, 255, 0.03));
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
    bottom: -150px;
    left: -150px;
    filter: blur(50px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 153, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 99, 255, 0.05);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-top: 15px;
    margin-bottom: 0;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 18px;
    color: #475569;
    max-width: 520px;
    margin-top: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 25px;
    background: linear-gradient(135deg, var(--primary), #0077cc);
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 153, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 153, 255, 0.4);
    background: linear-gradient(135deg, #0077cc, var(--primary));
    color: #fff;
}

.hero-image {
    width: 100%;
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(15, 23, 42, 0.15));
    animation: floatProduct 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes floatProduct {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* ==========================================================================
   ABOUT SECTION - SPLIT LAYER
   ========================================================================== */
.about-section {
    position: relative;
    padding: 40px 0 60px 0 !important;
    background: #ffffff;
}

.about-image-wrapper {
    position: relative;
    padding-right: 20px;
}

.about-image {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
}

.about-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-image img {
    transform: scale(1.03);
}

.experience-card {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: #0f172a;
    padding: 28px 24px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
    min-width: 200px;
    text-align: center;
    transition: transform 0.4s ease;
    z-index: 3;
}

.about-image-wrapper:hover .experience-card {
    transform: translateY(-8px);
}

.experience-card h2 {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
}

.experience-card p {
    margin: 8px 0 0 0;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-subtitle {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    padding-left: 35px;
}

.about-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.about-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text {
    color: #334155;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-text-sub {
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
    color: #64748b;
    margin-bottom: 30px;
}

.feature-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 12px 25px rgba(0, 153, 255, 0.06);
}

.feature-icon {
    width: 34px;
    height: 34px;
    background: rgba(0, 153, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: var(--primary);
}

.feature-box i {
    color: var(--primary);
    font-size: 15px;
    transition: 0.3s ease;
}

.feature-box:hover i {
    color: #ffffff;
}

.feature-box span {
    font-weight: 600;
    color: var(--dark);
    font-size: 14.5px;
    letter-spacing: -0.2px;
}

.stats-btn-wrapper {
    border-top: 1px solid #f1f5f9;
}

.stat-item h3 {
    background: linear-gradient(135deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: -1px;
}

.stat-item span {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), #0077cc);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 153, 255, 0.2);
    white-space: nowrap;
}

.about-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 153, 255, 0.3);
    background: linear-gradient(135deg, #0077cc, var(--primary));
}

.about-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   UNIFIED TRUST BADGES STRIP
   ========================================================================== */
.trust-badges-bar {
    background: #ffffff !important;
    border-top: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 30px 0;
}

.trust-title-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.trust-icon-shield {
    width: 46px;
    height: 46px;
    background: rgba(0, 153, 255, 0.08);
    color: var(--primary, #0099ff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.trust-text-block {
    display: flex;
    flex-direction: column;
}

.trust-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.8px;
}

.trust-main-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.vector-badge-card {
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.badge-vector-icon {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.3s ease;
}

.badge-vector-info {
    display: flex;
    flex-direction: column;
}

.badge-vector-info strong {
    font-size: 13.5px;
    color: #334155;
    font-weight: 700;
    transition: color 0.3s ease;
}

.badge-vector-info span {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.vector-badge-card:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: var(--primary, #0099ff);
    box-shadow: 0 10px 25px rgba(0, 153, 255, 0.08);
}

.vector-badge-card:hover .badge-vector-icon {
    background: var(--primary, #0099ff);
    border-color: var(--primary, #0099ff);
    color: #ffffff;
}

.vector-badge-card:hover .badge-vector-info strong {
    color: var(--primary, #0099ff);
}

/* ==========================================================================
   DYNAMIC APP SECTIONS GRID (UNIFIED GAP MANAGEMENT)
   ========================================================================== */
.category-section,
.products-section,
.why-section,
.cta-section {
    padding: 50px 0 !important;
}

.category-section .row,
.products-section .row,
.why-section .row,
.about-section .row {
    margin-bottom: 0 !important;
}

.text-center.mb-5 {
    margin-bottom: 2.5rem !important;
}

/* --- Categories Inner Layout --- */
.category-section {
    background: var(--light);
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title {
    font-size: 50px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-desc {
    color: #64748b;
    max-width: 650px;
    margin: auto;
}

.category-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .04);
    height: 100%;
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 153, 255, 0.12);
}

.category-image {
    height: 260px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-content {
    padding: 25px;
    text-align: center;
}

.category-content h4 {
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

/* --- Products Inner Layout --- */
.products-section {
    background: #fff;
}

.product-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 30px;
    overflow: hidden;
    transition: .4s;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .04);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 153, 255, 0.15);
}

.product-image {
    height: 300px;
    background: linear-gradient(135deg, #eef9ff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative;
}

.product-image img {
    max-height: 100%;
    object-fit: contain;
    transition: .5s;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
}

.product-card:hover img {
    transform: scale(1.1) rotate(3deg);
}

.product-content {
    padding: 25px;
    text-align: center;
}

.product-badge {
    background: #e6f6ff;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.product-desc {
    color: #64748b;
    min-height: 70px;
    font-size: 15px;
}

.product-btn {
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: 0.3s;
}

/* --- Why Choose Us Layout --- */
.why-section {
    background: var(--light);
}

.why-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px 25px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .04);
    height: 100%;
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 153, 255, 0.1);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: #eaf8ff;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.why-card:hover .why-icon {
    background: var(--primary);
}

.why-card:hover .why-icon i {
    color: #fff;
    transform: scale(1.1);
}

.why-icon i {
    font-size: 35px;
    color: var(--primary);
    transition: 0.3s;
}

/* ==========================================================================
   STATS COUNTERS
   ========================================================================== */
.counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.counter-card {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    color: #fff;
    transition: 0.3s;
}

.counter-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .2);
}

.counter-card h2 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 5px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background: var(--light) !important;
    padding: 60px 0 !important;
    border-top: 1px solid #e2e8f0;
}

.review-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 24px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 153, 255, 0.08);
    border-color: rgba(0, 153, 255, 0.2);
}

.review-stars {
    color: var(--accent, #ff9900);
    font-size: 14px;
    margin-bottom: 18px;
}

.review-text {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.review-user {
    display: flex;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.user-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 2px 0;
}

.user-info span {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    display: block;
}

/* ==========================================================================
   LATEST NEWS / BLOGS
   ========================================================================== */
.news-section {
    padding: 60px 0 !important;
    background: #ffffff !important;
}

.blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(0, 153, 255, 0.2);
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    color: #64748b;
    font-size: 13px;
    margin-bottom: 12px;
}

.blog-meta i {
    color: var(--primary);
    margin-right: 4px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-title a {
    color: var(--dark);
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: #475569;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-readmore-btn {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.blog-readmore-btn i {
    font-size: 12px;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(0, 153, 255, 0.15);
}

.blog-card:hover .blog-img {
    transform: scale(1.06);
}

.blog-readmore-btn:hover {
    color: var(--secondary);
    gap: 10px;
}

/* ==========================================================================
   HIGH-END CTA CARD REWORK
   ========================================================================== */
.cta-box {
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    padding: 60px 50px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.15) 0%, rgba(0, 207, 255, 0) 70%);
    top: -100px;
    right: -50px;
    z-index: 1;
    pointer-events: none;
}

.cta-box .row {
    position: relative;
    z-index: 2;
}

.cta-badge {
    color: var(--secondary);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-desc {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
    max-width: 620px;
    margin: 0;
}

.cta-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    color: var(--dark) !important;
    padding: 12px 14px 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn-icon-circle {
    width: 44px;
    height: 44px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-icon-circle i {
    color: #ffffff;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cta-action-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 153, 255, 0.25);
    background: var(--primary);
    color: #ffffff !important;
}

.cta-action-btn:hover .btn-icon-circle {
    background: #ffffff;
}

.cta-action-btn:hover .btn-icon-circle i {
    color: var(--primary);
    transform: translateX(3px);
}

/* ==========================================================================
   PREMIUM ENTERPRISE FOOTER
   ========================================================================== */
.footer-section {
    background: #0f172a;
    color: #ffffff;
    padding: 80px 0 30px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.footer-logo span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-about-text {
    color: #94a3b8;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1 !important;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
}

.social-icon:hover {
    background: var(--primary);
    color: #ffffff !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 153, 255, 0.3);
    border-color: var(--primary);
}

.footer-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
    list-style: none;
}

.footer-links a,
.footer-links span {
    color: #cbd5e1;
    font-size: 14.5px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary) !important;
    padding-left: 6px;
}

.footer-links a:hover i {
    transform: translateX(2px);
    color: var(--secondary);
}

.footer-links span i {
    font-size: 12px;
    color: var(--primary);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 153, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text span {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-text a {
    color: #cbd5e1 !important;
    font-size: 14.5px;
    text-decoration: none !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary) !important;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.copyright-text {
    color: #64748b;
    font-size: 14px;
}

.copyright-text strong {
    color: #94a3b8;
}

.footer-bottom-links a {
    color: #64748b;
    font-size: 14px;
    text-decoration: none !important;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE ENGINE (UNIFIED MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    .hero-content {
        padding: 30px 0;
    }
    .about-title,
    .section-title,
    .cta-title {
        font-size: 40px;
    }
    .cta-box {
        padding: 45px 30px;
    }
    .cta-desc {
        font-size: 15px;
    }
    .footer-links,
    .ps-lg-5,
    .ps-lg-4 {
        padding-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 15px 0;
    }
    .hero-content {
        text-align: center;
        padding: 20px 0;
    }
    .hero-title {
        font-size: 38px;
        margin-top: 10px;
    }
    .hero-text {
        font-size: 16px;
        margin: 12px auto 0;
    }
    .hero-btn {
        margin-top: 20px;
    }
    .hero-image {
        max-height: 380px;
        margin-top: 25px;
    }
    .about-section,
    .category-section,
    .products-section,
    .why-section,
    .cta-section {
        padding: 60px 0 !important;
    }
    .about-title,
    .section-title {
        font-size: 32px;
    }
    .about-image-wrapper {
        margin-bottom: 25px;
        padding-right: 0;
    }
    .experience-card {
        right: 0px;
        bottom: -15px;
        min-width: auto;
        padding: 18px;
    }
    .experience-card h2 {
        font-size: 34px;
    }
    .product-image {
        height: 240px;
    }
    .cta-box {
        padding: 50px 20px;
    }
    .cta-title {
        font-size: 32px;
    }
    .cta-action-btn {
        width: 100%;
        justify-content: space-between;
        padding: 14px 16px 14px 28px;
    }
    .footer-section {
        padding: 60px 0 30px 0;
    }
    .footer-bottom {
        margin-top: 40px;
    }
    .footer-bottom-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }
    .footer-bottom-links a {
        margin-left: 0;
    }
    .review-card {
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .vector-badge-card {
        padding: 12px 10px;
        gap: 8px;
    }
    .badge-vector-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    .badge-vector-info strong {
        font-size: 12px;
    }
    .badge-vector-info span {
        font-size: 10px;
    }
}

.product-detail{
    background:#f8fbff;
}

.product-image-box{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.product-main-image{
    width:100%;
    max-height:500px;
    object-fit:contain;
}

.product-title{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.product-description{
    font-size:17px;
    line-height:1.9;
    color:#64748b;
}

.feature-item{
    margin-bottom:12px;
    font-weight:600;
    color:#334155;
}

.feature-item i{
    color:#0099ff;
    margin-right:10px;
}

.badge-primary{
    background:#0099ff;
    color:#fff;
    border-radius:30px;
}