/* ====================================
   SHRI KRISHNA TRADING - MAIN STYLESHEET
   Professional B2B Pharma Supply Website
   ==================================== */

/* ========== CSS VARIABLES ========== */
:root {
    --primary: #0d2f5b;
    --primary-light: #1a4a8a;
    --primary-dark: #081d3a;
    --secondary: #1a73e8;
    --accent: #00b894;
    --accent-dark: #00916e;
    --accent-light: #55efc4;
    --gradient-primary: linear-gradient(135deg, #0d2f5b 0%, #1a73e8 100%);
    --gradient-accent: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    --text-dark: #2c3e50;
    --text-medium: #5a6a7a;
    --text-light: #8899aa;
    --bg-light: #f0f4f8;
    --bg-white: #ffffff;
    --border-color: #e4e9f0;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-accent: 0 8px 25px rgba(0, 184, 148, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--accent);
    color: white;
}

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent);
    animation: spin 1s linear infinite;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.05);
    border-bottom-color: var(--secondary);
    animation: spin 0.8s linear infinite reverse;
    position: absolute;
}

.loader-text {
    font-size: 14px;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    z-index: 1;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--primary-dark);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-left span {
    margin-right: 25px;
    display: inline-block;
}

.top-bar-left i {
    color: var(--accent);
    margin-right: 6px;
}

.top-bar-right {
    text-align: right;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 15px;
    font-size: 14px;
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* ========== NAVBAR ========== */
#mainNavbar {
    background: var(--primary);
    padding: 6px 0;
    transition: var(--transition);
    box-shadow: none;
    z-index: 1050;
}

#mainNavbar.scrolled {
    background: rgba(13, 47, 91, 0.97);
    padding: 4px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 4px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 12px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px;
    margin-top: 10px;
    background: white;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-item i {
    margin-right: 10px;
    color: var(--accent);
    width: 20px;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary);
    transform: translateX(5px);
}

/* ========== BUTTONS ========== */
.btn-accent {
    background: var(--gradient-accent);
    color: white;
    font-weight: 600;
    padding: 8px 22px;
    border: none;
    border-radius: var(--radius-xl);
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 184, 148, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--radius-xl);
    font-size: 14px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-xl);
    font-size: 14px;
}

.btn-white:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--radius-xl);
    font-size: 14px;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 184, 148, 0.3);
    border-radius: 50%;
    animation: float-particle 15s infinite;
}

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    50% { transform: translate(var(--tx), var(--ty)) scale(1.5); }
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 184, 148, 0.15);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 184, 148, 0.2);
}

.hero-badge i {
    margin-right: 8px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-btns {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: inline;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Hero Right Side */
.hero-image-wrapper {
    position: relative;
    padding: 30px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 184, 148, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-slow 4s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(26, 115, 232, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-slow 4s ease-in-out infinite 1s;
}

@keyframes pulse-slow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.15); }
}

.hero-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.hero-icon-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    color: white;
    transition: var(--transition);
}

.hero-icon-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.hero-icon-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.hero-icon-card span {
    font-size: 14px;
    font-weight: 600;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ========== MARQUEE SECTION ========== */
.marquee-section {
    padding: 20px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.marquee-item i {
    color: var(--accent);
    font-size: 18px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== SECTION COMMON ========== */
.section-padding {
    padding: 100px 0;
}

.bg-light-custom {
    background: var(--bg-light);
}

.section-tag {
    display: inline-block;
    background: rgba(0, 184, 148, 0.1);
    color: var(--accent-dark);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 184, 148, 0.15);
}

.section-tag i {
    margin-right: 6px;
}

.section-tag-center {
    display: inline-block;
    background: rgba(0, 184, 148, 0.1);
    color: var(--accent-dark);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 184, 148, 0.15);
}

.text-white-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-light);
    border-color: rgba(255, 255, 255, 0.15);
}

.section-tag-center i {
    margin-right: 6px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.text-primary-custom {
    color: var(--secondary);
}

.text-accent {
    color: var(--accent);
}

.section-desc {
    font-size: 16px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.lead-text {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ========== ABOUT SECTION ========== */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main {
    background: var(--gradient-primary);
    height: 400px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon-placeholder {
    text-align: center;
    color: white;
}

.about-icon-placeholder i {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.about-icon-placeholder span {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.about-experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--accent);
    color: white;
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-accent);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.about-float-card {
    position: absolute;
    top: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: float 3s ease-in-out infinite 1.5s;
}

.about-float-card i {
    font-size: 1.5rem;
    color: var(--accent);
}

.about-float-card span {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-features {
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.about-feature-item:hover {
    background: var(--bg-light);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 184, 148, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--accent);
}

.about-feature-item h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary);
}

.about-feature-item p {
    font-size: 13px;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
}

/* ========== PRODUCT CARDS ========== */
.product-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card-icon {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-card-icon i {
    font-size: 1.8rem;
    color: white;
}

.product-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-card-desc {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.product-list li {
    font-size: 14px;
    color: var(--text-dark);
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.product-list li:last-child {
    border-bottom: none;
}

.product-list li:hover {
    padding-left: 5px;
    color: var(--primary);
}

.product-list li i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 12px;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
}

.product-card-link:hover {
    color: var(--accent);
    gap: 12px;
}

.product-card-cta {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf0 100%);
    border: 2px dashed var(--border-color);
}

/* Product Image Strip */
.product-img-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 15px;
    margin: -35px -30px 20px -30px;
    background: var(--bg-light);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    min-height: 120px;
}

.product-img-strip img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.product-img-strip img:hover {
    transform: scale(1.08);
}

@media (max-width: 575px) {
    .product-img-strip img {
        height: 55px;
    }
    .product-img-strip {
        gap: 8px;
        padding: 15px 10px;
        margin: -35px -30px 15px -30px;
        min-height: 90px;
    }
}

.cta-card-content p {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

/* ========== INDUSTRIES SECTION ========== */
.industries-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.industries-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon i {
    font-size: 1.5rem;
    color: white;
}

.industry-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

/* ========== WHY CHOOSE US ========== */
.why-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-card:hover .why-number {
    color: var(--accent);
}

.why-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-light);
    line-height: 1;
    transition: var(--transition);
}

.why-icon {
    width: 55px;
    height: 55px;
    background: rgba(0, 184, 148, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.why-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.why-card p {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

/* ========== COUNTER SECTION ========== */
.counter-section {
    background: var(--gradient-primary);
    padding: 70px 0;
    position: relative;
}

.counter-item {
    padding: 20px;
}

.counter-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: inline;
}

.counter-plus {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: inline;
}

.counter-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-top: 5px;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.testimonial-avatar i {
    font-size: 2.5rem;
    color: var(--primary);
}

.testimonial-author h5 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-light);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--gradient-accent);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========== CONTACT SECTION ========== */
.contact-info-wrapper {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
}

.contact-info-card {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-card:last-of-type {
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.1rem;
    color: white;
}

.contact-info-card h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary);
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
}

.contact-social h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
}

.contact-form-wrapper h3 i {
    color: var(--accent);
    margin-right: 10px;
}

.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.1);
}

.form-floating label {
    font-size: 14px;
    color: var(--text-light);
}

.form-floating label i {
    margin-right: 6px;
    color: var(--accent);
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.form-success h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-medium);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: 70px 0 40px;
}

.brand-logo-footer .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.brand-logo-footer .brand-name {
    font-size: 16px;
}

.brand-logo-footer .brand-tagline {
    font-size: 10px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 8px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a i {
    margin-right: 8px;
    font-size: 10px;
    color: var(--accent);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact li i {
    color: var(--accent);
    margin-right: 10px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-5px);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.1);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========== INNER PAGE STYLES ========== */
.page-header {
    background: var(--gradient-primary);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    position: relative;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    position: relative;
}

.breadcrumb-custom a {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

.breadcrumb-custom span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Product Detail Cards */
.product-detail-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.product-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-detail-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.product-detail-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.05), transparent);
}

.product-detail-body {
    padding: 25px;
}

.product-detail-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-detail-body p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-detail-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-detail-specs li {
    font-size: 13px;
    padding: 5px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.product-detail-specs li:last-child {
    border-bottom: none;
}

.product-detail-specs li i {
    color: var(--accent);
    margin-right: 8px;
    font-size: 11px;
}

.product-enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

.product-enquiry-btn:hover {
    color: var(--accent);
}

/* ========== RESPONSIVE ========== */

/* ---------- TABLET LANDSCAPE (max 1199px) ---------- */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ---------- TABLET PORTRAIT (max 991px) ---------- */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 110px 0 70px;
    }

    .min-vh-80 {
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        max-width: 100%;
    }

    .hero-badge {
        display: block;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 25px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    #mainNavbar {
        padding: 10px 0;
    }

    .navbar-collapse {
        background: var(--primary-dark);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 10px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav .nav-link {
        padding: 12px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-toggler {
        border: 2px solid rgba(255, 255, 255, 0.3);
        padding: 6px 10px;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.3);
    }

    .btn-accent.ms-lg-3 {
        margin-top: 15px;
        display: block;
        text-align: center;
        width: 100%;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-image-wrapper {
        margin-bottom: 30px;
    }

    .about-experience-badge {
        bottom: -10px;
        left: 10px;
    }

    .about-float-card {
        top: -10px;
        right: 10px;
    }

    .contact-info-wrapper {
        margin-bottom: 30px;
    }

    .dropdown-menu {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .dropdown-item i {
        color: var(--accent);
    }

    .footer-top {
        padding: 50px 0 30px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* ---------- MOBILE LARGE (max 767px) ---------- */
@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: space-around;
    }

    .stat-item {
        flex: 0 0 30%;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .hero-wave svg {
        height: 40px;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-desc {
        font-size: 14px;
    }

    .section-padding {
        padding: 50px 0;
    }

    /* About */
    .about-img-main {
        height: 250px;
    }

    .about-feature-item {
        padding: 12px;
    }

    .lead-text {
        font-size: 15px;
    }

    /* Products */
    .product-card {
        padding: 25px 20px;
    }

    .product-card-icon {
        width: 55px;
        height: 55px;
    }

    .product-card-icon i {
        font-size: 1.4rem;
    }

    .product-card-title {
        font-size: 1.1rem;
    }

    .product-list li {
        font-size: 13px;
        padding: 5px 0;
    }

    /* Industries */
    .industry-card {
        padding: 20px 15px;
    }

    .industry-card h4 {
        font-size: 14px;
    }

    .industry-card p {
        font-size: 12px;
    }

    /* Why Us */
    .why-card {
        padding: 25px 20px;
    }

    .why-number {
        font-size: 2.5rem;
    }

    /* Counter */
    .counter-section {
        padding: 50px 0;
    }

    .counter-number {
        font-size: 2rem;
    }

    .counter-icon {
        font-size: 2rem;
    }

    .counter-label {
        font-size: 12px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    /* CTA */
    .cta-section {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-info-wrapper {
        padding: 25px 20px;
    }

    /* Footer */
    .footer-top {
        padding: 40px 0 20px;
    }

    .footer-title {
        margin-top: 20px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 5px;
    }

    /* Floating buttons */
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    /* Marquee */
    .marquee-item {
        font-size: 12px;
    }

    /* Inner pages */
    .page-header {
        padding: 100px 0 50px;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-header p {
        font-size: 14px;
    }

    .product-detail-img {
        height: 160px;
        font-size: 3rem;
    }

    .product-detail-body {
        padding: 20px;
    }

    .product-detail-body h4 {
        font-size: 15px;
    }
}

/* ---------- MOBILE SMALL (max 575px) ---------- */
@media (max-width: 575px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .section-tag,
    .section-tag-center {
        font-size: 11px;
        padding: 5px 12px;
    }

    .product-card {
        padding: 20px 16px;
    }

    .product-card-icon {
        width: 48px;
        height: 48px;
    }

    .product-card-icon i {
        font-size: 1.2rem;
    }

    .product-card-title {
        font-size: 1rem;
    }

    .product-card-desc {
        font-size: 13px;
    }

    .counter-item {
        padding: 10px 5px;
    }

    .counter-number {
        font-size: 1.6rem;
    }

    .counter-plus {
        font-size: 1.2rem;
    }

    .counter-icon {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .counter-label {
        font-size: 11px;
    }

    .brand-name {
        font-size: 15px;
    }

    .brand-tagline {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .btn-accent,
    .btn-outline-light,
    .btn-white,
    .btn-outline-white {
        padding: 10px 20px;
        font-size: 13px;
    }

    .industry-icon {
        width: 48px;
        height: 48px;
    }

    .industry-icon i {
        font-size: 1.2rem;
    }

    .why-icon {
        width: 45px;
        height: 45px;
    }

    .why-icon i {
        font-size: 1.2rem;
    }

    .why-card h4 {
        font-size: 15px;
    }

    .why-card p {
        font-size: 13px;
    }

    .testimonial-author h5 {
        font-size: 13px;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
    }

    .form-floating label {
        font-size: 13px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .about-experience-badge {
        padding: 15px 18px;
    }

    .exp-number {
        font-size: 2rem;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
    }
}

/* ---------- MOBILE EXTRA SMALL (max 375px) ---------- */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .counter-number {
        font-size: 1.4rem;
    }

    .counter-label {
        font-size: 10px;
    }

    .brand-name {
        font-size: 14px;
    }

    .brand-tagline {
        font-size: 8px;
    }

    .brand-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .product-card {
        padding: 18px 14px;
    }

    .cta-content h2 {
        font-size: 1.2rem;
    }
}

/* ---------- TOUCH DEVICE OPTIMIZATIONS ---------- */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
    }

    .product-card:hover::before {
        transform: scaleX(1);
    }

    .industry-card:hover {
        transform: none;
    }

    .why-card:hover {
        transform: none;
    }

    .testimonial-card:hover {
        transform: none;
    }

    .hero-icon-card:hover {
        transform: none;
    }

    .btn-accent:hover {
        transform: none;
    }

    .btn-white:hover {
        transform: none;
    }

    .back-to-top:hover {
        transform: none;
    }

    /* Bigger touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .dropdown-item {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .footer-links a {
        display: inline-block;
        min-height: 38px;
        line-height: 38px;
    }

    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ---------- LANDSCAPE MOBILE ---------- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-stats {
        display: none;
    }

    .hero-wave svg {
        height: 30px;
    }
}

/* ---------- PRINT STYLES ---------- */
@media print {
    .navbar, .top-bar, .whatsapp-float, .back-to-top,
    .hero-particles, .hero-wave, #preloader {
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        padding: 30px 0;
    }

    .section-padding {
        padding: 30px 0;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        color: #000 !important;
    }
}
