/* ===== PROFESSIONAL MANUFACTURING WEBSITE STYLES ===== */

/* Root Variables */
:root {
    --primary: #000000;
    --secondary: #d34f1b;
    --accent: #d34f1b;
    --dark: #020202;
    --light: #ffffff;
    --muted: #666666;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #d34f1b 0%, #ff8c5a 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.2);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInImage {
    from {
        opacity: 0;
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }
    to {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* ===== HEADER BELT (Top Bar) ===== */
.header-belt {
    background: linear-gradient(90deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--secondary);
}

.belt-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.belt-left {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.belt-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.belt-item:hover {
    color: var(--secondary);
}

.belt-item i {
    color: var(--secondary);
    font-size: 1rem;
}

.belt-right {
    display: flex;
    align-items: center;
}

.social-belt {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.social-belt a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-belt a:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-belt a i {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .belt-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .belt-left {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .belt-right {
        width: 100%;
        justify-content: center;
    }
    
    .belt-item {
        font-size: 0.85rem;
    }
    
    .social-belt {
        gap: 1rem;
    }
}

/* ===== NAVBAR ===== */
.modern-navbar {
    background: var(--dark);
    border-bottom: 2px solid var(--accent);
    padding: 0.3rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.modern-navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.brand-text {
    color: #fff !important;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-icon {
    color: var(--secondary);
    font-size: 1.5rem;
}

.logo-img {
    height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 600;
    font-size: 17px;
    margin: 0 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--secondary);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: var(--secondary) !important;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        border-top: 1px solid var(--accent);
        margin-top: 10px;
        padding: 2px 0 0 0;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width:100%
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
        padding: 15px 0px 10px 0;
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 12px 0px 10px 0px;
        text-align: center;
        font-size: 14px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}
.btn-cta {
    background: var(--accent);
    color: white !important;
    border: none;
    padding: 0.6rem 1.8rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #ff5c1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    color: white;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #020202 0%, #0a0a0a 50%, rgba(255, 107, 53, 0.05) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 100% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-lg {
    background: var(--accent);
    color: #ffffff !important;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out;
}

.btn-primary-lg:hover {
    background: #ff5722;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

/* ===== BOOTSTRAP BUTTON OVERRIDES ===== */
.btn-primary {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #ffffff !important;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #ff5722 !important;
    border-color: #ff5722 !important;
    color: #ffffff !important;
}

.btn-primary:focus,
.btn-primary.focus {
    background-color: #ff5722 !important;
    border-color: #ff5722 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.5) !important;
}

.btn-cta {
    background-color: var(--accent) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta:hover {
    background-color: #ff5722 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    color: #ffffff !important;
}

.btn-outline-light {
    color: white !important;
    border: 2px solid white;
    padding: 0.9rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark) !important;
}

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.hero-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--secondary);
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.hero-card h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* ===== STATS SECTION ===== */
.stats-premium {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
}

.stat-premium-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
}

.stat-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-text {
    color: #666;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1.5rem;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f3f4f6 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(211, 79, 27, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.products-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(30, 125, 217, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.product-card-premium {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid transparent;
    animation: fadeInUp 0.6s ease-out;
}

.product-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent);
    animation: glow 2s ease-in-out infinite;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-icon-box {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.product-card-premium h4 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.product-specs span {
    display: flex;
    align-items: center;
}

/* ===== PRODUCT SHOWCASE STYLES ===== */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    /* height: 350px; */
    border-radius: 8px;
}

.product-image-large {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.4s ease;
}

.product-image-wrapper:hover .product-image-large {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-wrapper:hover .product-overlay {
    opacity: 1;
}

.product-title {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.product-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-quick-specs {
    list-style: none;
    margin: 1.5rem 0;
}

.product-quick-specs li {
    color: #666;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.product-quick-specs i {
    color: var(--accent);
    margin-right: 10px;
}

.product-specs i {
    color: var(--secondary);
    margin-right: 0.5rem;
    font-size: 0.85rem;
}

.section-header-products {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.products-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.header-line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, #000);
}

.header-line:last-child {
    background: linear-gradient(to left, transparent, #000);
}

.header-dot {
    width: 18px;
    height: 18px;
    background: var(--gradient-accent);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(211, 79, 27, 0.3);
}

.section-header-products .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--dark);
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.products-indicators {
    position: relative;
    display: flex;
    bottom: auto;
    left: auto;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    width: 100%;
}

.products-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(211, 79, 27, 0.3);
    background: rgba(211, 79, 27, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.products-indicators button.active {
    background: var(--gradient-accent);
    border-color: var(--secondary);
    width: 18px;
    height: 18px;
    box-shadow: 0 4px 15px rgba(211, 79, 27, 0.4);
}

.products-indicators button:hover {
    border-color: var(--secondary);
    background: rgba(211, 79, 27, 0.2);
}

/* Hide elements with data-animation before scroll animation is applied */
[data-animation]:not(.scroll-fade-up):not(.scroll-fade-down):not(.scroll-fade-left):not(.scroll-fade-right):not(.scroll-scale):not(.scroll-zoom):not(.scroll-rotate) {
    opacity: 0;
    transform: translateY(40px);
}

.product-card-slider {
    text-align: center;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 79, 27, 0.1) 0%, rgba(211, 79, 27, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card-slider:hover {
    transform: translateY(-8px) scale(1.02);
    /* box-shadow: 0 20px 50px rgba(211, 79, 27, 0.15); */
    /* border-color: rgba(211, 79, 27, 0.2); */
}

/* .product-card-slider:hover::before {
    opacity: 1;
} */

.product-image-slider {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f1f3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.product-image-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%); */
    pointer-events: none;
}

.product-image-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0px;
}

.product-card-slider:hover .product-image-slider img {
    transform: scale(1.08) rotate(2deg);
}

.product-info-slider {
    padding: 10px 0px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name-slider {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.6;
    margin: 0 0 5px 0;
    min-height: auto;
    display: block;
    letter-spacing: -0.3px;
}

.product-card-slider .btn-primary {
    background: var(--gradient-accent);
    border: none;
    font-size: 0.9rem;
    padding: 10px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.product-card-slider .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-card-slider .btn-primary:hover {
    background: linear-gradient(135deg, #e84e2e 0%, #ff7a3d 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(211, 79, 27, 0.4);
}

.product-card-slider .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

#productsCarousel {
    padding: 0 60px;
}

#productsCarousel .carousel-control-prev,
#productsCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    top: 35%;
    transform: translateY(-50%);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    border: 2px solid rgba(211, 79, 27, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

#productsCarousel .carousel-control-prev:hover,
#productsCarousel .carousel-control-next:hover {
    opacity: 1;
    background: var(--gradient-accent);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(211, 79, 27, 0.4);
}

#productsCarousel .carousel-control-prev {
    left: 0;
}

#productsCarousel .carousel-control-next {
    right: 0;
}

#productsCarousel .carousel-control-prev-icon,
#productsCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(1.2);
}

/* Add margin to accommodate carousel controls and indicators */
.products-section .carousel {
    margin-bottom: 20px;
}

/* Responsive adjustments for products carousel */
@media (max-width: 992px) {
    .product-image-slider {
        height: 250px;
    }
    
    #productsCarousel {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .product-image-slider {
        height: 220px;
    }
    
    .product-name-slider {
        font-size: 0.8rem;
        min-height: 50px;
    }
    
    #productsCarousel {
        padding: 0 30px;
    }
    
    #productsCarousel .carousel-control-prev {
        left: -10px;
    }
    
    #productsCarousel .carousel-control-next {
        right: -10px;
    }
    
    .products-header-decoration {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .header-line {
        max-width: 120px;
    }
    
    .products-indicators {
        margin-top: 30px;
        gap: 8px;
    }
    
    .section-header-products .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .product-card-slider {
        padding: 10px;
    }
    
    .product-image-slider {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .product-name-slider {
        font-size: 0.7rem;
        min-height: 40px;
    }
    
    #productsCarousel .carousel-control-prev,
    #productsCarousel .carousel-control-next {
        display: none;
    }
    
    #productsCarousel {
        padding: 0;
    }
    
    .products-section .carousel {
        margin-bottom: 60px;
    }
    
    .products-indicators {
        bottom: -40px;
    }
    
    .section-header-products .section-title {
        font-size: 1.5rem;
    }
    
    .products-header-decoration {
        gap: 10px;
    }
    
    .header-line {
        max-width: 80px;
    }
}


/* ===== CAPABILITIES SECTION ===== */
.capabilities-section {
    background: white;
    padding: 5rem 0;
}

.capability-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.capability-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInLeft 0.6s ease-out backwards;
}

.capability-item:hover {
    background: var(--light);
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.capability-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.capability-item h5 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.capability-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.capability-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.capability-box {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f2f5 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
}

.capability-box h4 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.capability-box ul {
    list-style: none;
    padding: 0;
}

.capability-box li {
    padding: 0.6rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.capability-box i {
    color: var(--secondary);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2332 100%);
    color: white;
    padding: 5rem 0;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    animation: scaleIn 0.6s ease-out;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.stars {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: rgba(255,255,255,0.95);
}

.testimonial-author h6 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    background: #f9f9f9;
    padding: 5rem 0;
}

.industry-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-sm);
    height: 100%;
    animation: fadeInUp 0.6s ease-out;
}

.industry-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    animation: glow 2s ease-in-out infinite;
}

.industry-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.industry-card-modern:hover .industry-icon {
    transform: scale(1.2) rotate(10deg);
    animation: bounce 0.6s ease-in-out;
}

.industry-card-modern h5 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.industry-card-modern p {
    color: #666;
    font-size: 0.9rem;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: white;
    padding: 5rem 0;
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.process-step {
    flex: 0 1 calc(20% - 1rem);
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.6s ease-out backwards;
}

.process-step:hover {
    background: var(--light);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.process-step h5 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.process-step p {
    color: #666;
    font-size: 0.85rem;
}

.process-arrow {
    color: var(--accent);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .logo-img {
        height: 80px;
    }

    .process-timeline {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
}

/* ===== CTA SECTION ===== */
.cta-premium {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2332 100%);
    color: white;
    border-top: 3px solid var(--accent);
}

.cta-title {
    /* font-size: 2.5rem; */
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: #f9f9f9;
    padding: 5rem 0;
}

.contact-item h6 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--accent);
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ff5c1f;
    text-decoration: underline;
}

.contact-form input,
.contact-form textarea {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 12px 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: white;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* ===== FOOTER ===== */
.footer-modern {
    background: linear-gradient(135deg, var(--dark) 0%, #0a0a0a 100%);
    color: rgba(255,255,255,0.85);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary) 0%, transparent 50%, var(--secondary) 100%);
}

.footer-section {
    position: relative;
    z-index: 2;
}

.footer-logo {
    width:100%;
    object-fit: contain;
    display: block;
    margin-bottom: 1.5rem;
    filter: brightness(1.1);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.5rem;
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    /* text-transform: uppercase; */
    letter-spacing: 1.5px;
    font-size: 18px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-title i {
    color: var(--secondary);
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.9rem;
    line-height: 1.5;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-certifications li i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item a {
    color: rgba(255,255,255,0.75);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    /* background: rgba(255, 107, 53, 0.15); */
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    /* transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
    font-size: 1.1rem;
    /* animation: fadeInUp 0.6s ease-out backwards; */
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--light);
    transform: translateY(-8px) scale(1.15);
    border-color: var(--secondary);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    animation: bounce 0.6s ease-in-out;
}

.footer-divider {
    height: 1px;
    /* background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%); */
    margin: 12px 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
    padding: 8px 0px 8px 0;
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

.footer-bottom-links .divider {
    color: rgba(255,255,255,0.2);
}

/* ===== ABOUT US PAGE STYLES ===== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    margin-bottom: 3rem;
    display: flex;
    gap: 2rem;
}

.timeline-marker {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8b5f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255,107,53,0.2);
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.timeline-content h5 {
    color: #1e3a5f;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.value-card h5 {
    color: #1e3a5f;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.team-image {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.team-card h5 {
    color: #1e3a5f;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.role {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bio {
    font-size: 0.9rem;
    color: #666;
}

.achievement-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-top: 3px solid #ff6b35;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.achievement-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.achievement-item h5 {
    color: #1e3a5f;
    font-weight: 700;
}

.why-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #ff6b35;
}

.why-card h5 {
    color: #1e3a5f;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== PRODUCTS PAGE STYLES ===== */
.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.spec-label {
    font-weight: 600;
    color: #333;
}

.spec-value {
    color: #ff6b35;
    font-weight: 700;
}

.features-list ul li {
    padding: 0.6rem 0;
    color: #666;
}

.applications {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.accessory-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.accessory-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-top-color: #ff6b35;
}

.accessory-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.accessory-card h5 {
    color: #1e3a5f;
    font-weight: 700;
    margin-bottom: 1rem;
}

.accessory-card ul {
    text-align: left;
    color: #666;
}

.product-image-gallery {
    overflow: hidden;
    border-radius: 12px;
}

/* ===== FACILITIES PAGE STYLES ===== */
.facility-stat {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 3px solid var(--secondary);
    animation: scaleIn 0.6s ease-out;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.facility-stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.facility-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.facility-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1.5rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.facility-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.capability-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.capability-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.capability-box i {
    font-size: 2.5rem;
    color: #ff6b35;
    /* margin-bottom: 1rem; */
}

.infrastructure-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.infrastructure-card h5 {
    color: #1e3a5f;
    font-weight: 700;
    margin-bottom: 1rem;
}

.infrastructure-card ul li {
    padding: 0.4rem 0;
    color: #666;
}

.cert-badge {
    padding: 2rem;
    border-radius: 8px;
    background: #f9f9f9;
}

/* ===== CONTACT US PAGE STYLES ===== */
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 3px solid transparent;
    animation: fadeInUp 0.6s ease-out;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-top-color: #ff6b35;
}
.contact-card p{
    font-size: 0.9rem;
}

.contact-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-card:hover .contact-icon {
    transform: scale(1.2) rotate(-10deg);
    animation: bounce 0.6s ease-in-out;
}

.contact-card h5 {
    color: #1e3a5f;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255,107,53,0.15);
}

.contact-form .form-label {
    color: #1e3a5f;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-benefits {
    list-style: none;
    padding: 0;
}

.contact-benefits li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.contact-benefits li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-benefits i {
    color: #ff6b35;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-benefits strong {
    color: #1e3a5f;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-benefits span {
    color: #666;
    font-size: 0.9rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: #ff8b5f;
    transform: translateY(-3px);
}

.quick-contact {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.quick-contact i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.quick-contact h6 {
    color: #1e3a5f;
    font-weight: 700;
}

.accordion-button:not(.collapsed) {
    background-color: #f9f9f9;
    color: #1e3a5f;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #ff6b35;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .logo-img {
        height: 65px;
    }

    .carousel-inner {
        min-height: 400px !important;
    }
    
    .carousel-item img {
        height: 400px !important;
    }
    
    .carousel-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .carousel-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .carousel-caption .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-step {
        flex: 0 1 calc(50% - 1rem);
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .btn-primary-lg,
    .btn-outline-light {
        width: 100%;
        text-align: center;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary) 0%, #ff8c5a 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    display: flex;
    animation: slideInUp 0.4s ease;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #ff8c5a 0%, var(--secondary) 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30%;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: slideInUp 0.4s ease;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-btn:active {
    transform: translateY(-2px) scale(1.05);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 4rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, #0a0a0a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.6s ease-out 2.4s forwards;
}

.page-loader.hidden {
    display: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 400px;
    margin: 0 auto 10px;
    padding: 0;
    background: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: none;
}

.loader-logo::before {
    display: none;
}

.loader-logo::after {
    display: none;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.5);
    position: relative;
    z-index: 2;
}
}

@keyframes loadingRing {
    from {
        border-color: var(--secondary);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    to {
        border-color: rgba(255, 107, 53, 0.2);
        box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
    }
}

.spinner {
    display: none;
}

@keyframes spinnerRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spinner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 107, 53, 0.2);
    border-top: 4px solid var(--secondary);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spinner::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-right: 3px solid var(--secondary);
    border-radius: 50%;
    animation: spin 2s linear infinite reverse;
}

.loader-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-dots {
    display: inline-block;
}

.loader-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    margin: 0 3px;
    animation: simpleFade 1.4s infinite ease-in-out both;
}

.loader-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes simpleFade {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

.loader-bar {
    width: 100px;
    height: 3px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    margin: 30px auto 0;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    animation: loadingBar 1.5s ease-in-out infinite;
}

@keyframes loadingBar {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 55px;
    }

    .carousel-inner {
        min-height: 300px !important;
    }
    
    .carousel-item img {
        height: 300px !important;
    }
    
    .carousel-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .carousel-subtitle {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        opacity: 0.5;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .product-card-premium {
        padding: 1.5rem;
    }
    
    .process-step {
        flex: 0 1 100%;
    }
    
    .footer-title {
        margin-top: 1.5rem;
    }
}

/* ===== CAROUSEL/SLIDER STYLES ===== */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 95, 0.5);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.caption-content {
    text-align: center;
    animation: slideInUp 0.8s ease-out;
}

.carousel-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.carousel-subtitle {
    font-size: 1.3rem;
    color: #f8f9fa;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-indicators {
    bottom: 30px !important;
    z-index: 10 !important;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgb(211 79 27) !important;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--accent) !important;
    width: 30px;
    border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-inner {
        min-height: 400px !important;
    }
    
    .carousel-item img {
        height: 400px !important;
    }
    
    .carousel-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .carousel-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .carousel-caption .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .carousel-inner {
        min-height: 300px !important;
    }
    
    .carousel-item img {
        height: 300px !important;
    }
    
    .carousel-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .carousel-subtitle {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
}

.navbar-brand{
    padding:0px
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-fade-up {
    animation: fadeInUp 0.8s ease-out;
}

.scroll-fade-down {
    animation: fadeInDown 0.8s ease-out;
}

.scroll-fade-left {
    animation: fadeInLeft 0.8s ease-out;
}

.scroll-fade-right {
    animation: fadeInRight 0.8s ease-out;
}

.scroll-scale {
    animation: scaleIn 0.8s ease-out;
}

.scroll-zoom {
    animation: zoomIn 0.8s ease-out;
}

.scroll-rotate {
    animation: rotateIn 0.8s ease-out;
}

/* ===== IMAGE ANIMATIONS ===== */
img {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

img.scroll-image {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.img-zoom {
    transition: transform 0.4s ease;
}

.img-zoom:hover {
    transform: scale(1.08);
}

.img-blur-hover {
    transition: filter 0.4s ease;
}

.img-blur-hover:hover {
    filter: blur(2px);
}

.img-brightness-hover {
    transition: filter 0.4s ease;
}

.img-brightness-hover:hover {
    filter: brightness(1.1);
}

.img-grayscale-hover {
    transition: filter 0.4s ease;
}

.img-grayscale-hover:hover {
    filter: grayscale(0%);
}

/* Gallery Image Animations */
.gallery-img {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Hero Image Animations */
.hero-image {
    animation: zoomIn 1s ease-out;
}

.hero-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Product Image Animations */
.product-image {
    animation: fadeInUp 0.6s ease-out;
}

.product-image:hover {
    transform: scale(1.08);
}

/* Facility Gallery Item */
.facility-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: fadeInUp 0.6s ease-out;
}

.facility-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.facility-gallery-item:hover img {
    transform: scale(1.12) rotate(2deg);
}

/* Card Image Animations */
.card-image {
    animation: slideInImage 0.8s ease-out;
    transition: all 0.4s ease;
}

.card-image:hover {
    filter: brightness(1.15);
    transform: scale(1.05);
}

/* Parallax Effect for Images */
.parallax {
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.4s ease;
}

/* ===== PRODUCT IMAGE CAROUSEL STYLES ===== */
.product-image-gallery .carousel {
    border-radius: 12px;
    overflow: hidden;
}

.product-image-gallery .carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    gap: 10px;
}

.product-image-gallery .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-image-gallery .carousel-indicators button.active {
    background: var(--secondary);
    border-color: var(--secondary);
    width: 14px;
    height: 14px;
    box-shadow: 0 4px 12px rgba(211, 79, 27, 0.4);
}

.product-image-gallery .carousel-indicators button:hover {
    background: rgba(211, 79, 27, 0.6);
    border-color: var(--secondary);
}

.product-image-gallery .carousel-control-prev,
.product-image-gallery .carousel-control-next {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.product-image-gallery .carousel-control-prev:hover,
.product-image-gallery .carousel-control-next:hover {
    opacity: 1;
    background: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.product-image-gallery .carousel-control-prev-icon,
.product-image-gallery .carousel-control-next-icon {
    filter: brightness(1.2);
}

.parallax:hover {
    filter: brightness(1.05);
}

/* ===== PRODUCT TABS STYLES ===== */
.product-tabs {
    border-bottom: 3px solid #f0f0f0;
}

.product-tabs .nav-link {
    color: #666;
    font-weight: 600;
    border-radius: 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.product-tabs .nav-link:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
    background: rgba(211, 79, 27, 0.05);
}

.product-tabs .nav-link.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
    background: transparent;
}

/* ===== CATALOGUES LIST STYLES ===== */
.catalogue-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.catalogue-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    border-left: 4px solid var(--secondary);
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalogue-item:hover {
    background: linear-gradient(135deg, rgba(211, 79, 27, 0.05) 0%, rgba(211, 79, 27, 0.02) 100%);
    border-color: var(--secondary);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(211, 79, 27, 0.15);
}

.catalogue-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d34f1b 0%, #ff8c5a 100%);
    border-radius: 8px;
    font-size: 1.5rem;
    color: white;
}

.catalogue-content h6 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.catalogue-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.catalogue-content .btn-outline-danger {
    border-color: var(--secondary);
    color: var(--secondary);
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
}

.catalogue-content .btn-outline-danger:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

/* ===== TABLE STYLES FOR SPECIFICATIONS ===== */
.table-responsive {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.table {
    margin-bottom: 0;
}

.table thead {
    background-color: #d34f1b;
    color: white;
}

.table thead th {
    border-color: #d34f1b;
    font-weight: 600;
    font-size: 12px;
    padding: 12px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody tr {
    transition: background-color 0.2s ease;
}

.table tbody tr:hover {
    background-color: rgba(211, 79, 27, 0.03);
}

.table tbody td {
    padding: 10px 8px;
    font-size: 12px;
    vertical-align: middle;
}

.table tbody tr:nth-child(odd) {
    background-color: #fafafa;
}

.table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.table .bg-light {
    background-color: #f0f0f0 !important;
    font-size: 0.9rem;
}

.table-bordered {
    border-color: #d0d0d0;
}

.table-bordered td, .table-bordered th {
    border-color: #d0d0d0;
}

/* ===== ACCESSORIES GRID STYLES ===== */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.accessory-item {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.accessory-item:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(211, 79, 27, 0.1);
    transform: translateY(-3px);
}

.accessory-item h6 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
}

.accessory-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* ===== INLINE STYLE REPLACEMENTS ===== */

/* Hero Section */
.hero-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-section .container-lg {
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
}

/* Icon Styles */
.icon-accent {
    color: var(--secondary);
    margin-right: 10px;
}

.icon-bullet {
    color: var(--secondary);
    font-size: 0.5rem;
    margin-right: 12px;
}

/* List Items */
.attachment-heading {
    color: var(--secondary);
}

.attachment-list-item {
    margin-bottom: 12px;
}

/* Table Styles */
.spec-table {
    font-size: 0.8rem;
}

.spec-table thead {
    background-color: var(--secondary);
    color: white;
    position: sticky;
    top: 0;
}

.spec-table th:first-child {
    width: 15%;
}

.spec-row-highlight {
    background-color: #f5e6d3;
}

.bg-accessories-section {
    background: #f9f9f9;
}

/* Check icon accent color */
.icon-check-accent {
    color: #ff6b35;
}

/* Comparison Table */
.comparison-table {
    border: 1px solid #ddd;
}

/* ===== Utilities extracted from inline styles in contact & facilities pages ===== */

/* Hero height variations */
.hero-section {
    display: flex;
    align-items: center;
}
.hero-section.hero-short {
    min-height: 40vh;
}
.hero-section.hero-medium {
    min-height: 50vh;
}

/* Container z-index inside hero */
.hero-section .container-lg.position-relative {
    z-index: 2;
}

/* Hero title size variants */
.hero-title.hero-small {
    font-size: 2.5rem;
}
.hero-title.hero-medium {
    font-size: 3rem;
}

/* Accent link used in contact cards */
.link-accent {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

/* Light background utility used on some sections */
.bg-light-custom {
    background: #f9f9f9;
}

/* Small icon used inside buttons */
.icon-btn {
    margin-right: 8px;
}

/* Heading accent color */
.heading-accent {
    color: #1e3a5f;
}

/* Social buttons row */
.social-flex {
    display: flex;
    gap: 1rem;
}

/* Map container styles */
.map-section {
    padding: 0 !important;
}
.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 450px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.map-iframe {
    border: 0;
}

/* small padded section header variant */
.section-header--padded {
    padding: 2rem;
}

/* Icon accent and spacing */
.icon-accent {
    color: #ff6b35;
    margin-right: 10px;
}

.cert-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}


/* ===== Extracted inline styles from index.php ===== */

/* Slider sizing */
#productSlider .carousel-inner {
    min-height: 600px;
}

#productSlider .carousel-item video {
    width: 100%;
    height: auto;
    display: block;
}

#productSlider .carousel-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Company overview specific paragraphs previously inline-styled */
.company-overview .lead,
.company-overview p {
    color: var(--muted);
    line-height: 1.8;
}

/* Remove inline margin-top for stacked capability boxes */
.capability-box + .capability-box {
    margin-top: 20px;
}


.alert{ margin-top:25px;}

.btn.disabled, .btn:disabled, fieldset:disabled .btn{ background: var(--accent)}