html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-blue: #1E4DB7;
    --dark-blue: #0F2E63;
    --light-blue: #F4F8FF;
    --accent-red: #E10600;
    --accent-red-dark: #C00500;
    --text-dark: #111827;
    --text-muted: #6B7280;
    --border-light: #E5EAF0;
}


body {
    font-family: 'Inter', sans-serif;
    background: #f4f6f9;
    color: var(--text-dark);
}

.btn {
    transition: all 0.25s ease;
}

.hero-modern {
height: 100vh;
background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
url('../images/hero.jpg') center/cover no-repeat;
}

.glass-box {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
border-radius: 20px;
}

.card {
transition: 0.3s;
}

.card:hover {
transform: translateY(-8px);
}
.navbar {
padding: 15px 0;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-red) !important;
}

.btn-primary {
background: #E10600;
border: none;
}

.btn-primary:hover {
background: #c30000;
}
.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: #fff;
}


.about-section {
background: #f8f9fa;
}

.about-section h2 {
color: #111;
}

.about-section p {
color: #555;
font-size: 16px;
line-height: 1.8;
}

.stats-section {
background: linear-gradient(135deg, #111, #1c1c1c);
}

.stat-card {
background: rgba(255,255,255,0.05);
border-radius: 20px;
transition: 0.3s;
}

.stat-card:hover {
transform: translateY(-10px);
background: rgba(255,255,255,0.1);
}

.stat-card h2 {
font-size: 48px;
font-weight: bold;
color: #E10600;
}

.categories-section {
background: #f9f9f9;
}

.category-card {
position: relative;
display: block;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transition: all 0.4s ease;
background: #fff;
}

.category-card::after {
content: "";
position: absolute;
inset: 0;
border-radius: 20px;
background: linear-gradient(45deg, transparent, rgba(225,6,0,0.15));
opacity: 0;
transition: 0.4s;
}

.category-card:hover::after {
opacity: 1;
}

.category-card:hover {
transform: translateY(-12px);
box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.category-image img {
width: 100%;
height: 260px;
object-fit: cover;
transition: transform 0.5s ease;
}

.category-card:hover img {
transform: scale(1.08);
}

.category-overlay {
position: absolute;
bottom: 0;
width: 100%;
background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
color: #fff;
padding: 25px 15px;
text-align: center;
transition: 0.3s;
}

.category-overlay h5 {
margin: 0;
font-weight: 600;
letter-spacing: 0.5px;
}

.category-hero {
height: 300px;
background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
url('assets/images/hero.jpg') center/cover no-repeat;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-card img {
height: 200px;
object-fit: cover;
width: 100%;
}

.product-body {
padding: 15px;
}

.carousel img {
height: 450px;
object-fit: cover;
}

.product-main-img {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.product-description p {
    font-size: 15px;
    line-height: 1.7;
}

.product-description ul {
    padding-left: 18px;
}
.product-image-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.product-thumb:hover {
    border-color: var(--accent-red);
    transform: scale(1.05);
}
.product-description {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.product-description h3,
.product-description h4 {
    margin-top: 25px;
    font-weight: 600;
}

.product-description ul {
    padding-left: 20px;
}

.product-description li {
    margin-bottom: 8px;
}
.main-product-image img {
    max-height: 420px;
    object-fit: contain;
    width: 100%;
}
.product-top-section {
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    margin-bottom: 60px;
}
.product-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}
.related-section {
    background: #f7f9fc;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 60px;
}



.btn-danger {
    border-radius: 10px;
}


.modal-content {
    border-radius: 20px;
}

.modal-body h3 {
    font-size: 28px;
}

.form-control {
    border: 1px solid #e1e5ea;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
}

.btn-success {
    background: #25D366;
    border: none;
    border-radius: 10px;
}

.btn-success:hover {
    background: #1ebe5d;
}
.nav-tabs .nav-link {
    font-weight: 600;
    color: #333;
}

.nav-tabs .nav-link.active {
    color: var(--accent-red);
    border-bottom: 3px solid #dc3545;
}
/* Gallery Wrapper */
.product-gallery {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* Main Image */
.main-image-container {
    text-align: center;
}

.main-product-image {
    max-height: 420px;
    width: 100%;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

/* Thumbnail Strip */
.thumbnail-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumb-image {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.thumb-image:hover {
    transform: scale(1.05);
}

.active-thumb {
    border-color: var(--accent-red);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Related Section Background */
.related-section {
    background: #f4f7fb;
    padding: 70px 40px;
    border-radius: 25px;
    margin-top: 60px;
}

/* Card */
.related-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    height: 100%;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Image Zoom */
.related-image-wrapper {
    overflow: hidden;
}

.related-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.4s ease;
}

.related-card:hover .related-image {
    transform: scale(1.08);
}

/* Title */
.related-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 45px;
}

/* Link */
.related-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-red);
    text-decoration: none;
}

.related-link:hover {
    text-decoration: underline;
}
.trust-section {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    margin-top: 70px;
}

.trust-item i {
    font-size: 36px;
    color: var(--accent-red);
    margin-bottom: 15px;
}

.trust-item h6 {
    font-weight: 700;
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 14px;
    color: #666;
}

.category-hero-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: #fff;
    border-radius: 0 0 40px 40px;
    padding: 80px 0;	
}

.category-title {
    font-size: 40px;
    font-weight: 700;
}

.category-subtitle {
    font-size: 16px;
    opacity: 0.9;
}
.category-product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    height: 100%;
}

.category-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.category-image-wrapper {
    overflow: hidden;
    background: #fff;
}

.category-product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.4s ease;
}

.category-product-card:hover .category-product-image {
    transform: scale(1.08);
}

.category-product-title {
    font-size: 15px;
    font-weight: 600;
    min-height: 45px;
    margin-bottom: 10px;
}

.category-product-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-red);
    text-decoration: none;
}

.category-product-link:hover {
    text-decoration: underline;
}
.category-products-section {
    background: #f4f7fb;
    border-radius: 30px;
    padding: 60px 40px;
    margin-top: -40px;
}
.category-toolbar {
    background: #f4f7fb;
    padding: 15px 25px;
    border-radius: 15px;
}

.category-search input {
    width: 380px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.toggle-btn {
    background: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    cursor: pointer;
}

.toggle-btn.active {
    background: #dc3545;
    color: #fff;
}
/* LIST VIEW MODE */
#productContainer.list-view .product-item {
    flex: 0 0 100%;
    max-width: 100%;
}

#productContainer.list-view .category-product-card {
    display: flex;
    align-items: center;
    padding: 20px;
}

#productContainer.list-view .category-image-wrapper {
    width: 120px;
    flex-shrink: 0;
}

#productContainer.list-view .category-product-image {
    height: 90px;
    object-fit: contain;
    padding: 5px;
}

#productContainer.list-view .category-body {
    text-align: left !important;
    padding-left: 25px;
    flex: 1;
}

#productContainer.list-view .category-product-title {
    font-size: 18px;
    margin-bottom: 8px;
}

#productContainer.list-view .category-product-link {
    margin-top: 8px;
    display: inline-block;
}
.category-product-desc {
    display: none;
    color: #666;
    font-size: 14px;
}

#productContainer.list-view .category-product-desc {
    display: block;
}



/* homepage css  */

.justify {
  text-align: justify;
}

.hero-premium {
    padding: 120px 0;
    background: linear-gradient(135deg,#f7fbff,#ffffff);
}

.hero-badge {
    display: inline-block;
    padding: 6px 15px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero-heading {
    font-size: 52px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.hero-image {
    max-height: 480px;
}
.category-advanced {
    background: #f9fbff;
}
section {
    position: relative;
}

section:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #eee, transparent);
}
.section-header h2 {
    font-size: 36px;
    font-weight: 700;
}

.section-header p {
    color: #666;
}

.category-advanced-card {
    display: block;
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    text-decoration: none;
    color: #111;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.category-advanced-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 18px;
     background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 30px;
    transition: 0.4s;
}

.category-advanced-card:hover .icon-wrapper {
    transform: rotate(-8deg) scale(1.1);
}

.category-advanced-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.category-short {
    font-size: 14px;
    color: #666;
    min-height: 50px;
}

.read-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #1976d2;
}
.cta-premium {
background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: #fff;
    padding: 100px 0;
}

.trust-strip {
    background: #ffffff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.trust-strip h4 {
    font-weight: 700;
}

.certifications-section {
    background: #f8fbff;
}

.certificate-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-next {
    position: relative;
    padding: 180px 0;
    overflow: hidden;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f9ff, #ffffff);
}

.hero-bg {
    background: linear-gradient(120deg, #e8f1ff, #ffffff, #f3f8ff);
}


.hero-next::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 30% 20%, rgba(25,118,210,0.15), transparent 60%);
    animation: beamMove 8s ease-in-out infinite alternate;
}

@keyframes beamMove {
    from { transform: translateX(-5%) translateY(-5%); }
    to { transform: translateX(5%) translateY(5%); }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
	letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.fade-word {
    opacity: 0;
    display: inline-block;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards;
}

.fade-word:nth-child(1) { animation-delay: 0.2s; }
.fade-word:nth-child(2) { animation-delay: 0.4s; }
.fade-word:nth-child(3) { animation-delay: 0.6s; }
.fade-word:nth-child(4) { animation-delay: 0.8s; }
.fade-word:nth-child(5) { animation-delay: 1s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.certificate-card-advanced {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.35s ease;
    height: 100%;
}

.certificate-card-advanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.certificate-thumb {
    background: #f4f8ff;
    padding: 25px;
    text-align: center;
}

.certificate-thumb img {
    max-height: 200px;
    object-fit: contain;
}

.certificate-info {
    padding: 25px;
}

.certificate-info h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.certificate-info p {
    font-size: 14px;
    color: #6B7280;
}

.certificate-modal {
    border-radius: 20px;
}

.pdf-icon-box {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f8ff;
    font-size: 60px;
    color: var(--accent-red);
}



.navbar-premium .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 12px;
    position: relative;
}

.navbar-premium .nav-link:hover {
    color: var(--accent-red);
}

/* Hover underline animation */
.navbar-premium .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    bottom: -6px;
    left: 0;
    transition: 0.3s ease;
}

.navbar-premium .nav-link:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown-mega {
    border-radius: 15px;
    padding: 15px;
    border: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.dropdown-item:hover {
    background: var(--light-blue);
}

/* Icons */
.nav-icon-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    transition: 0.3s;
}

.nav-icon-btn:hover {
    color: var(--accent-red);
}

.search-wrapper {
    width: 280px;
}

.search-dropdown {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    max-height: 350px;
    overflow-y: auto;
    display: none;
    z-index: 999;
}

.search-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
}

.search-item:hover {
    background: #f4f8ff;
}
.search-input {
    border-radius: 50px;
    padding: 8px 18px;
    border: 1px solid #e5e5e5;
}

.search-input:focus {
    border-color: #E10600;
    box-shadow: 0 0 0 0.2rem rgba(225,6,0,0.1);
}

/* HERO BASE */
.hero-tech {
    position: relative;
    padding: 180px 0;
    overflow: hidden;
    background: #f8fbff;
}

/* Animated Gradient Background */
.hero-bg-animated {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #eaf2ff, #ffffff, #f0f6ff);
    background-size: 300% 300%;
    animation: gradientFlow 12s ease infinite;
    z-index: 0;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ECG Line */
.tech-lines {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    z-index: 1;
}

.ecg-line {
    fill: none;
    stroke: #1E4DB7;
    stroke-width: 3;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLine 6s linear infinite;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* Hero Content */
/* SECTION BASE */
.hero-premium-split {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    background: #f8fbff;
}

/* Soft Moving Background */
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #eef4ff, #ffffff, #f3f8ff);
    background-size: 300% 300%;
    animation: gradientMove 15s ease infinite;
    z-index: 0;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* LEFT SIDE */
.hero-left {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(30,77,183,0.1);
    color: #1E4DB7;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #111827;
    animation: fadeUp 0.8s ease forwards;
}

.hero-subtext {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 35px;
    animation: fadeUp 1s ease forwards;
}

.hero-buttons {
    animation: fadeUp 1.2s ease forwards;
}

/* RIGHT SIDE */
.hero-right {
    position: relative;
    z-index: 2;
}

/* Floating Device Effect */
.hero-device-img {
    max-height: 500px;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.15));
    animation: floatDevice 6s ease-in-out infinite;
}

@keyframes floatDevice {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Light Glow Layer */
.hero-premium-split::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 30% 20%, rgba(30,77,183,0.12), transparent 60%);
    animation: floatGlow 12s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    from { transform: translateX(-5%) translateY(-5%); }
    to { transform: translateX(5%) translateY(5%); }
}

/* Fade Animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
.navbar-brand img {
    height: 58px;   /* increase from 40 */
    transition: 0.3s ease;
}

.hero-device-img::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.15), transparent);
    filter: blur(20px);
}


.footer-premium {
background: #0f172a;
    color: #cbd5e1;
    padding: 90px 0 40px;
    position: relative;
}
.footer-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(to right, transparent, #E10600, transparent);
}

.footer-logo {
    height: 48px;
}

.footer-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-contact {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #E10600;
    transform: translateY(-4px);
}

.footer-divider {
    margin: 40px 0 20px;
    border-color: rgba(255,255,255,0.1);
}

.footer-bottom {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent-red);
}
.global-section {
    padding: 120px 0;
    background: linear-gradient(135deg,#f8fbff,#ffffff);
}

.section-title {
    font-size: 40px;
    font-weight: 800;
}

.section-subtitle {
    color: #666;
}

.why-luxury {
    padding: 120px 0;
    background: #ffffff;
}

.why-header h2 {
    font-size: 40px;
    font-weight: 800;
}

.why-header p {
    color: #666;
    font-size: 16px;
}

.pillar {
    padding: 40px;
    border-radius: 20px;
    background: #f9fbff;
    transition: 0.3s ease;
    height: 100%;
}

.pillar:hover {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transform: translateY(-6px);
}

.pillar-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(225,6,0,0.15);
    display: block;
    margin-bottom: 15px;
}

.pillar h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.pillar p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.brands-clean {
    padding: 120px 0;
    background: #ffffff;
}

.brands-title {
    font-size: 40px;
    font-weight: 800;
}

.brands-subtitle {
    max-width: 750px;
    margin: auto;
    color: #666;
}

.brands-grid {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px 40px;
}

.brands-grid span {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
    position: relative;
}

.brands-grid span::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #E10600;
    transition: 0.3s ease;
}

.brands-grid span:hover {
    color: #111;
}

.brands-grid span:hover::after {
    width: 100%;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.06),
        0 5px 20px rgba(30,77,183,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-form-wrapper .form-control,
.contact-form-wrapper select {
    height: 50px;
    border-radius: 14px;
    border: 1px solid #e5eaf0;
    padding: 0 15px;
    background: #ffffff;
    transition: 0.3s ease;
}

.contact-form-wrapper textarea {
    border-radius: 14px;
    border: 1px solid #e5eaf0;
    padding: 15px;
    background: #ffffff;
    resize: none;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30,77,183,0.08);
}
.section-spacing {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fbff, #ffffff);
}

.contact-form-wrapper .btn-success {
    display: flex;
    align-items: center;
    gap: 6px;
}
.contact-card {
    background: linear-gradient(145deg, #ffffff, #f3f7ff);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.04),
        0 4px 12px rgba(30,77,183,0.05);
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.08),
        0 8px 20px rgba(30,77,183,0.08);
}

.contact-card h6 {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.contact-card i {
    font-size: 18px;
}

.map-wrapper iframe {
    border-radius: 20px;
}
.contact-highlight {
    background: linear-gradient(135deg, #f4f8ff, #ffffff);
    border: 1px solid #e5eaf0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.contact-highlight ul {
    padding-left: 18px;
    font-size: 14px;
    color: #555;
}


/* ABOUT PAGE */

.about-hero {
    padding: 160px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: #fff;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
}

.about-hero p {
    opacity: 0.9;
}

.mv-card {
    background: #f8fbff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.manufacturing-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.manufacturing-box:hover {
    transform: translateY(-8px);
}

.trust-pill {
    background: #f4f8ff;
    padding: 25px;
    border-radius: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.trust-pill:hover {
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}

/* LEGAL PAGES */

.legal-hero {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: #fff;
}

.legal-content h3 {
    margin-top: 35px;
    font-weight: 700;
}

.legal-content p,
.legal-content ul {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.product-loader {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

#productContainer {
    transition: opacity 0.3s ease;
}

.product-count {
    font-weight: 600;
    color: #555;
}
.language-dropdown-box {
    position: absolute;
    top: 45px;
    right: 0;
    width: 280px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: none;
    padding: 15px;
    z-index: 9999;
}

.language-dropdown-box.active {
    display: block;
}


.language-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.2s ease;
}

.language-item:hover {
    background: #f4f8ff;
}

.language-item img {
    width: 22px;
}


.language-list {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom scrollbar */
.language-list::-webkit-scrollbar {
    width: 6px;
}

.language-list::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}
/* Hide Google top banner */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

/* LANGUAGE BUTTON */
.language-trigger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5eaf0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 18px;
    color: var(--text-dark);
}

.language-trigger:hover {
    background: #f4f8ff;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Align inside navbar */
.navbar-premium .d-flex {
    align-items: center;
}

body {
    top: 0px !important;
}

/* Hide tooltip */
.goog-tooltip {
    display: none !important;
}

/* Hide Google logo & branding */
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

/* Hide default dropdown */
.goog-te-gadget {
    font-size: 0px !important;
}

@media (max-width: 992px) {

    .search-wrapper {
        width: 100%;
        margin: 15px 0;
    }

    .language-wrapper {
        margin-right: 10px;
    }

    .navbar-premium .btn-primary {
        width: 100%;
        margin-top: 10px;
    }

}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {

    .language-dropdown-box {
        width: 100%;
        right: 0;
        left: 0;
    }

}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Pagination Base */
.custom-pagination-wrapper {
    margin-top: 50px;
}

.pagination .page-link {
    color: var(--accent-red);
    border-radius: 12px; /* modern rounded square */
    border: 1px solid #eee;
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.pagination .page-link:hover {
    background: #f4f8ff;
}






.pagination {
    flex-wrap: wrap;
    gap: 6px;
}

/* Button Style */
.pagination .page-link {
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

/* Active */
.pagination .page-item.active .page-link {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
}

/* Hover */
.pagination .page-link:hover {
    background: #f4f8ff;
}

/* Mobile Optimization */
@media (max-width: 576px) {

    .pagination {
        justify-content: center;
    }

    .pagination .page-link {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
    }

}


.view-all-link {
    font-weight: 600;
    color: var(--accent-red);
    text-decoration: none;
}

.view-all-link:hover {
    text-decoration: underline;
}