/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    color: #222222;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
}

body:not(.home-page) {
    padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Layout */
.main-content {
    min-height: calc(100vh - 90px);
    margin-top: 0;
    position: relative;
}

/* Product Page Header Fix */
.main-content section:first-child {
    margin-top: 0 !important;
    padding-top: 2rem !important;
    position: relative;
    z-index: 1;
}

/* Breadcrumb Visibility Fix */
.breadcrumb {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

.breadcrumb-item {
    display: list-item !important;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    transition: all 0.3s;
    z-index: 1030;
}

/* Hot Deals Menu Styling */
.hot-deals-menu {
    position: relative;
}

.hot-deals-link {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 8px 20px !important;
    margin: 0 5px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.hot-deals-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hot-deals-link:hover::before {
    left: 100%;
}

.hot-deals-link:hover {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
    color: white !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4) !important;
}

.hot-deals-link.active {
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 160, 230, 0.3) !important;
}

.hot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.hot-deals-link i {
    color: white !important;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Mobile Hot Deals Menu */
@media (max-width: 991.98px) {
    .hot-deals-link {
        margin: 5px 0 !important;
        text-align: center !important;
    }

    .hot-badge {
        position: static;
        margin-left: 5px;
    }
}

.navbar.scrolled {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    display: inline-block;
    padding: 0;
    margin-right: 1rem;
}

.navbar-brand img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: all 0.3s;
    max-width: 100%;
}

.nav-link {
    font-weight: 600;
    color: #222222;
    padding: 8px 15px !important;
    margin: 0 5px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    left: 15px;
    bottom: 0;
    width: calc(100% - 30px);
    height: 2px;
    background: #e74c3c;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-link:hover:after,
.nav-link.active:after {
    transform: scaleX(1);
}

/* Buttons */
.btn-primary {
    background-color: #00a0e6;
    border-color: #00a0e6;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #007db3;
    border-color: #007db3;
    transform: translateY(-3px);
}

.btn-accent {
    background-color: #f39c12;
    border-color: #f39c12;
    color: white;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-accent:hover {
    background-color: #c87f0a;
    border-color: #c87f0a;
    color: white;
    transform: translateY(-3px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 650px;
    max-height: none;
    margin-top: 0;
    padding-top: 80px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/cnc-synchronize-press-brake.webp');
    background-size: cover;
    background-position: center;
}

.hero-slide-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hydraulic-iron-worker.png');
    background-size: cover;
    background-position: center;
}

.hero-slide-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/3-4-roll-plate-banding-machine.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
    padding: 20px 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.8rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.2rem;
    max-width: 750px;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 8px 20px;
    font-weight: 600;
    margin-bottom: 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.hero-content .btn {
    padding: 14px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    min-width: 170px;
}

.hero-content .d-flex {
    gap: 18px;
}

.hero-slider-controls {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.hero-slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.hero-slider-dot.active {
    background-color: #00a0e6;
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(0, 160, 230, 0.2);
}

/* Section Title */
.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    width: fit-content;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: #e74c3c;
    border-radius: 2px;
}

.section-title.text-center {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    margin-top: 0;
}

.about-img {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.03);
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-top: 3px solid #00a0e6;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Products Slider Section */
.products-slider-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.products-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 160, 230, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.products-slider-section .container {
    position: relative;
    z-index: 1;
}

.product-slider-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin: 15px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.product-slider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00a0e6, #f39c12, #e74c3c);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-slider-card:hover::before {
    opacity: 1;
}

.product-slider-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 160, 230, 0.2);
}

.product-slider-img {
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative;
}

.product-slider-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(0, 160, 230, 0.03) 50%, transparent 51%);
    pointer-events: none;
}

.product-slider-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.product-slider-card:hover .product-slider-img img {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.product-slider-body {
    padding: 25px;
    position: relative;
}

.product-slider-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 1.25rem;
    line-height: 1.3;
    position: relative;
    transition: color 0.3s ease;
}

.product-slider-card:hover .product-slider-title {
    color: #00a0e6;
}

.product-slider-body p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-slider-body .btn {
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-slider-body .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.product-slider-body .btn:hover::before {
    left: 100%;
}

.product-slider-body .btn:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

/* Add trending badge */
.product-slider-card .trending-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

/* Add category tag */
.product-slider-card .category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 160, 230, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 160, 230, 0.95) 0%, rgba(0, 119, 179, 0.95) 100%), url('../images/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1px;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    opacity: 0.95;
}

/* Clients Section */
.clients-section {
    padding: 60px 0 40px;
    background-color: #f5f5f5;
}

.client-logo {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.client-logo:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-height: 90px;
    width: auto;
    max-width: 100%;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Swiper Overrides */
.products-slider.swiper {
    padding-bottom: 50px;
}

.clients-slider.swiper {
    padding-bottom: 20px;
}

.swiper-pagination-bullet {
    background: #555555;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #00a0e6;
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #00a0e6;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(0, 160, 230, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.back-to-top i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Sticky Social Icons */
.sticky-social {
    position: fixed;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 998;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-social.visible {
    right: 0;
}

.sticky-social a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    width: 50px;
    height: 45px;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    color: white;
    margin-bottom: 2px;
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    box-shadow: -3px 3px 12px rgba(0, 0, 0, 0.2);
    position: relative;
}

.sticky-social a:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    width: 140px;
    padding-right: 15px;
    transform: translateX(-5px);
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-social a i {
    margin-left: 8px;
    width: 18px;
    text-align: center;
    order: 2;
    font-size: 16px;
}

.sticky-social a span {
    order: 1;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sticky-social a:hover span {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .main-content {
        margin-top: 0;
    }

    .hero-slider {
        height: 90vh;
        min-height: 600px;
        max-height: none;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-content .btn {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .hero-slider-controls {
        bottom: 30px;
        gap: 12px;
    }

    .hero-slider-dot {
        width: 12px;
        height: 12px;
    }

    .about-section,
    .products-slider-section,
    .stats-section,
    .clients-section,
    .cta-section {
        padding: 60px 0;
    }

    /* Products Slider Mobile Adjustments */
    .products-slider .swiper-button-next,
    .products-slider .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .products-slider .swiper-button-next:after,
    .products-slider .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    body:not(.home-page) {
        padding-top: 70px;
    }

    .main-content {
        margin-top: 0;
    }

    .hero-slider {
        height: 85vh;
        min-height: 550px;
        max-height: none;
        padding-top: 70px;
    }

    .hero-slide-1,
    .hero-slide-2,
    .hero-slide-3 {
        background-attachment: scroll;
    }

    .hero-content {
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-badge {
        padding: 6px 14px;
        font-size: 0.8rem;
        margin-bottom: 0.9rem;
    }

    .hero-content .d-flex {
        flex-direction: column;
        gap: 10px !important;
    }

    .hero-content .btn {
        width: 100%;
        text-align: center;
        padding: 11px 20px;
        font-size: 0.9rem;
        min-width: auto;
    }

    .hero-slider-controls {
        bottom: 25px;
        gap: 10px;
    }

    .hero-slider-dot {
        width: 10px;
        height: 10px;
    }

    .hero-slider-dot.active {
        transform: scale(1.2);
    }

    .about-section,
    .products-slider-section,
    .stats-section,
    .clients-section,
    .cta-section {
        padding: 50px 0;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .sticky-social {
        display: none;
    }

    /* Products Slider Mobile */
    .product-slider-card {
        margin: 10px;
    }

    .product-slider-img {
        height: 200px;
        padding: 20px;
    }

    .product-slider-body {
        padding: 20px;
    }

    .product-slider-title {
        font-size: 1.1rem;
    }

    .products-slider .swiper-button-next,
    .products-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .products-slider .swiper-button-next:after,
    .products-slider .swiper-button-prev:after {
        font-size: 14px;
    }

    /* Clients Slider Mobile */
    .client-logo {
        height: 100px;
        padding: 15px;
    }

    .client-logo img {
        max-height: 70px;
    }
}

@media (max-width: 575.98px) {
    body:not(.home-page) {
        padding-top: 65px;
    }

    .main-content {
        margin-top: 0;
    }

    .hero-slider {
        height: 80vh;
        min-height: 500px;
        max-height: none;
        padding-top: 65px;
    }

    .hero-content {
        text-align: center;
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 1.3rem;
        line-height: 1.5;
    }

    .hero-badge {
        padding: 5px 12px;
        font-size: 0.75rem;
    }

    .hero-content .btn {
        padding: 11px 22px;
        font-size: 0.9rem;
    }

    .hero-slider-controls {
        bottom: 20px;
        gap: 8px;
    }

    .hero-slider-dot {
        width: 8px;
        height: 8px;
    }

    .hero-slider-dot.active {
        transform: scale(1.3);
    }

    .about-section,
    .products-slider-section,
    .stats-section,
    .clients-section,
    .cta-section {
        padding: 40px 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-box {
        padding: 30px 15px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top i {
        font-size: 16px;
    }

    /* Products Slider Extra Small Mobile */
    .product-slider-card {
        margin: 8px;
        border-radius: 15px;
    }

    .product-slider-img {
        height: 180px;
        padding: 15px;
    }

    .product-slider-body {
        padding: 18px;
    }

    .product-slider-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .product-slider-body p {
        font-size: 0.9rem;
        height: 44px;
    }

    .product-slider-body .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .products-slider .swiper-button-next,
    .products-slider .swiper-button-prev {
        width: 35px;
        height: 35px;
        display: none; /* Hide arrows on very small screens */
    }

    .products-slider .swiper-pagination {
        bottom: 5px;
    }

    .products-slider .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    /* Clients Slider Extra Small Mobile */
    .client-logo {
        height: 90px;
        padding: 12px;
    }

    .client-logo img {
        max-height: 60px;
    }

    /* Section Titles Mobile */
    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
    }
}

/* 
Footer Styles */
.footer {
    background-color: #222222;
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    margin-bottom: 20px;
    display: block;
}

.footer-logo img {
    max-height: 150px;
    max-width: 350px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.footer-links h5 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #e74c3c;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: #e74c3c;
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 0;
    font-size: 0.9rem;
    color: #adb5bd;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.dropdown-item {
    font-weight: 500;
    padding: 8px 20px;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: #f5f5f5;
    border-left: 3px solid #e74c3c;
}

/* Button Outline Styles */
.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #222;
    border-color: white;
}

.btn-outline-primary {
    border: 2px solid #00a0e6;
    color: #00a0e6;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #00a0e6;
    color: white;
    border-color: #00a0e6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #00a0e6;
    border-radius: 10px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: #0077b3;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #00a0e6 #f1f1f1;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Fix for Bootstrap Gap Utility */
.gap-3 {
    gap: 1rem !important;
}

/* Ensure sections are visible */
section {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Product Cards in Slider */
.products-slider .swiper-slide {
    height: auto;
}

.products-slider .product-slider-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.products-slider .product-slider-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Clients Slider */
.clients-slider .swiper-slide {
    height: auto;
}

/* Stats Section Background */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px);
}

/* CTA Section Background */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 160, 230, 0.1) 0%, transparent 70%);
}

/* About Section Background */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

/* Enhanced Feature Box Icons */
.feature-box .feature-icon {
    background: linear-gradient(135deg, rgba(0, 160, 230, 0.1), rgba(231, 76, 60, 0.1));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.feature-box .feature-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #00a0e6, #e74c3c);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover .feature-icon::before {
    opacity: 1;
}

.feature-box .feature-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #00a0e6, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsive Fixes */
@media (max-width: 767.98px) {
    .feature-box .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .feature-box .feature-icon i {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        background: #ffffff;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        background-clip: initial;
        filter: none;
        color: white;
    }
}

/*
 Fix hero slider layout issues */
.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
    pointer-events: none;
}

/* Prevent content jumping during slider transitions */
.hero-slider,
.hero-slide {
    will-change: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Ensure smooth transitions without layout shifts */
.hero-slide {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Fix for any background color bleeding */
.hero-slider {
    background: #000;
}

.hero-slide:not(.active) {
    pointer-events: none;
}

.hero-slide.active {
    pointer-events: auto;
}

/* Modern Swiper Styling for Products */
.products-slider .swiper-button-next,
.products-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 160, 230, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.products-slider .swiper-button-next:hover,
.products-slider .swiper-button-prev:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.products-slider .swiper-button-next:after,
.products-slider .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

.products-slider .swiper-pagination {
    bottom: 10px;
}

.products-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(0, 160, 230, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.products-slider .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(0, 160, 230, 0.4);
}

/* Clients Slider Styling */
.clients-slider .swiper-button-next,
.clients-slider .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: rgba(0, 160, 230, 0.9);
    border-radius: 50%;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 160, 230, 0.25);
    transition: all 0.3s ease;
}

.clients-slider .swiper-button-next:hover,
.clients-slider .swiper-button-prev:hover {
    background: rgba(231, 76, 60, 0.9);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.35);
}

.clients-slider .swiper-button-next:after,
.clients-slider .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700;
}

.clients-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 160, 230, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.clients-slider .swiper-pagination-bullet-active {
    background: #00a0e6;
    transform: scale(1.4);
    box-shadow: 0 3px 10px rgba(0, 160, 230, 0.4);
}ba(0, 160, 230, 0.4);
}

/* Enhanced section title for products */
.products-slider-section .section-title h2 {
    background: linear-gradient(135deg, #2c3e50 0%, #00a0e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.products-slider-section .section-title p {
    color: #6c757d;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Add floating animation for trending badges */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.trending-badge {
    animation: float 3s ease-in-out infinite;
}

/* Add shimmer effect for category tags */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.category-tag {
    background: linear-gradient(90deg, rgba(0, 160, 230, 0.9) 0%, rgba(0, 160, 230, 1) 50%, rgba(0, 160, 230, 0.9) 100%);
    background-size: 200px 100%;
    animation: shimmer 3s infinite linear;
}

/* Responsive improvements for product cards */
@media (max-width: 768px) {
    .product-slider-card {
        margin: 10px;
    }

    .product-slider-img {
        height: 200px;
        padding: 20px;
    }

    .product-slider-body {
        padding: 20px;
    }

    .product-slider-title {
        font-size: 1.1rem;
    }

    .products-slider .swiper-button-next,
    .products-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .products-slider .swiper-button-next:after,
    .products-slider .swiper-button-prev:after {
        font-size: 14px;
    }

    .trending-badge,
    .category-tag {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
}

@media (max-width: 576px) {
    .products-slider-section .section-title h2 {
        font-size: 2rem;
    }

    .product-slider-img {
        height: 180px;
        padding: 15px;
    }

    .product-slider-body {
        padding: 15px;
    }

    .product-slider-body p {
        height: 40px;
        -webkit-line-clamp: 2;
    }
}

/* About Us & Contact Page Styles */

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #00a0e6 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-banner .breadcrumb-item a:hover {
    color: white;
}

.page-banner .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 160, 230, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(231, 76, 60, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Alert Styling */
.alert {
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.alert .btn-close {
    opacity: 0.7;
}

.alert .btn-close:hover {
    opacity: 1;
}

/* Form Validation Styling */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.15);
}

.invalid-feedback {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0;
    font-weight: 500;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 160, 230, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00a0e6 0%, #f39c12 50%, #e74c3c 100%);
    border-radius: 20px 20px 0 0;
}

.contact-form-wrapper .section-title h2 {
    color: #1a252f;
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-wrapper .section-title p {
    color: #5a6c7d;
    font-size: 1.1rem;
    margin-bottom: 35px;
    font-weight: 500;
    line-height: 1.6;
}

.contact-form .form-label {
    font-weight: 600;
    color: #1a252f;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fafbfc;
    color: #2c3e50;
    font-weight: 500;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #00a0e6;
    box-shadow: 0 0 0 0.25rem rgba(0, 160, 230, 0.12);
    background-color: white;
    outline: none;
    transform: translateY(-1px);
}

.contact-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300a0e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
    padding-right: 45px;
    cursor: pointer;
}

.contact-form .form-control::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.contact-form .form-control.is-invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.15);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-check {
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-form .form-check:hover {
    background: #f1f3f4;
    border-color: #00a0e6;
}

.contact-form .form-check-input {
    margin-top: 0.3rem;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #00a0e6;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-form .form-check-input:checked {
    background-color: #00a0e6;
    border-color: #00a0e6;
    box-shadow: 0 0 0 0.2rem rgba(0, 160, 230, 0.15);
}

.contact-form .form-check-input:focus {
    border-color: #00a0e6;
    box-shadow: 0 0 0 0.2rem rgba(0, 160, 230, 0.15);
}

.contact-form .form-check-label {
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    margin-left: 10px;
}

.contact-form .form-check-label a {
    color: #00a0e6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-form .form-check-label a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border: none;
    padding: 16px 35px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 160, 230, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-form .btn-primary:hover::before {
    left: 100%;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.35);
}

.contact-form .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

/* Contact Info */
.contact-info {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.contact-info .section-title h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info .section-title p {
    color: #f2f5f7;
    font-size: 1.1rem;
    margin-bottom: 35px;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 28px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #00a0e6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 160, 230, 0.02) 0%, rgba(231, 76, 60, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-left-color: #e74c3c;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 22px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 160, 230, 0.3);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover .contact-icon::before {
    opacity: 1;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.contact-icon i {
    font-size: 1.6rem;
    color: white;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon i {
    transform: scale(1.1);
}

.contact-details h4 {
    color: #1a252f;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    color: #5a6c7d;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-details strong {
    color: #1a252f;
    font-weight: 700;
}

/* Social Connect */
.social-connect {
    margin-top: 0;
    padding: 30px;
    background: linear-gradient(135deg, white 0%, #fafbfc 100%);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 1px solid rgba(0, 160, 230, 0.08);
    position: relative;
    overflow: hidden;
}

.social-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00a0e6 0%, #f39c12 50%, #e74c3c 100%);
    border-radius: 18px 18px 0 0;
}

.social-connect h4 {
    color: #1a252f;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.social-link {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 18px rgba(0, 160, 230, 0.25);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.35);
    color: white;
}

.social-link i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Map Section */
.map-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 0;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(0, 160, 230, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(30%) brightness(0.95);
    transition: all 0.4s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    backdrop-filter: blur(10px);
}

.map-info h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.map-info p {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f1f3f4 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 160, 230, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(231, 76, 60, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section .section-title h2 {
    color: #1a252f;
    font-size: 2.8rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-section .section-title p {
    color: #5a6c7d;
    font-size: 1.3rem;
    margin-bottom: 55px;
    font-weight: 500;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 160, 230, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    border-radius: 16px !important;
}

.accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-weight: 700;
    color: #1a252f;
    font-size: 1.15rem;
    border-radius: 16px !important;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 160, 230, 0.1), transparent);
    transition: left 0.5s;
}

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 160, 230, 0.3);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    padding: 30px;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 500;
    border-top: 2px solid rgba(0, 160, 230, 0.1);
}

/* Responsive Design for Contact Page */
@media (max-width: 991.98px) {
    .page-banner {
        padding: 100px 0 50px;
        margin-top: 0;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 30px;
        margin-bottom: 40px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .contact-icon i {
        font-size: 1.3rem;
    }

    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .page-banner {
        padding: 90px 0 40px;
        margin-top: 0;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link i {
        font-size: 1.1rem;
    }

    .map-overlay {
        position: static;
        margin: 20px;
        max-width: none;
    }

    .accordion-button {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 20px;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-section .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .page-banner {
        padding: 80px 0 30px;
        margin-top: 0;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-form .btn-primary {
        width: 100%;
        padding: 12px 25px;
    }

    .contact-item {
        padding: 20px 15px;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    .social-connect {
        padding: 20px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link i {
        font-size: 1rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-section .section-title h2 {
        font-size: 1.8rem;
    }

    .faq-section .section-title p {
        font-size: 1rem;
    }
}

" cy=" 10" r=" 1" fill=" rgba(255, 255, 255, 0.1)"/></pattern></defs><rect width=" 100" height=" 100" fill=" url(%23dots)"/></svg>');

}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Company Overview */
.company-overview {
    padding: 100px 0;
    background: #fff;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #00a0e6;
    margin-bottom: 25px;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #00a0e6;
}

.highlight-box h5 {
    color: #00a0e6;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 20px;
}

.product-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    break-inside: avoid;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #00a0e6;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.info-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* New Products Banner */
.new-products-banner {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #ffc107;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.new-products-banner h3 {
    color: #222;
    font-weight: 700;
    margin-bottom: 15px;
}

.new-products-banner p {
    color: #555;
    font-size: 1.05rem;
}

.welding-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.welding-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

/* Commitment Section */
.commitment-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.commitment-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #00a0e6;
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 160, 230, 0.3);
}

.commitment-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.commitment-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .product-list {
        column-count: 1;
    }

    .new-products-banner {
        padding: 25px;
    }

    .commitment-section {
        padding: 25px;
    }
}

/* Mission Vision Values */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mvv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #00a0e6;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.mvv-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.mvv-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: white;
}

.features-list {
    margin-top: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-content p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 0;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #00a0e6;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00a0e6;
    margin-bottom: 10px;
}

.stat-item .stat-label {
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-image {
    height: 400px;
    overflow: hidden;
    background-color: #f9f9f9;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.5s ease;
    display: block;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.team-position {
    color: #00a0e6;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.team-description {
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #00a0e6;
    box-shadow: 0 0 0 0.2rem rgba(0, 160, 230, 0.25);
}

.contact-form .form-control.is-invalid {
    border-color: #e74c3c;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
}

.contact-info {
    background: linear-gradient(135deg, #2c3e50 0%, #00a0e6 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-details p {
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.social-connect {
    margin-top: 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-connect h4 {
    color: white;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    position: relative;
}

.map-wrapper {
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    z-index: 10;
}

.map-info h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.map-info p {
    color: #6c757d;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: white;
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: #00a0e6;
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 25px;
    background: white;
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 0;
}

.cta-buttons .btn {
    margin: 5px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .page-banner {
        padding: 100px 0 50px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .company-overview,
    .mission-vision,
    .why-choose-us,
    .team-section,
    .contact-section,
    .faq-section {
        padding: 80px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-banner {
        padding: 80px 0 40px;
        margin-top: 0;
    }

    .page-title {
        font-size: 2rem;
    }

    .company-overview,
    .mission-vision,
    .why-choose-us,
    .team-section,
    .contact-section,
    .faq-section {
        padding: 60px 0;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 30px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .map-overlay {
        position: static;
        margin: 20px;
        max-width: none;
    }

    .social-links {
        justify-content: center;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 575.98px) {
    .page-banner {
        margin-top: 0;
        padding: 60px 0 30px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .experience-badge {
        top: 15px;
        right: 15px;
        padding: 15px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 20px;
    }
}

/* Contact Page Styles */
.page-banner {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #00a0e6 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-banner .breadcrumb-item a:hover {
    color: white;
}

.page-banner .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 160, 230, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(231, 76, 60, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 160, 230, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00a0e6 0%, #f39c12 50%, #e74c3c 100%);
    border-radius: 20px 20px 0 0;
}

.contact-form-wrapper .section-title h2 {
    color: #1a252f;
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-wrapper .section-title p {
    color: #5a6c7d;
    font-size: 1.1rem;
    margin-bottom: 35px;
    font-weight: 500;
    line-height: 1.6;
}

.contact-form .form-label {
    font-weight: 600;
    color: #1a252f;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fafbfc;
    color: #2c3e50;
    font-weight: 500;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #00a0e6;
    box-shadow: 0 0 0 0.25rem rgba(0, 160, 230, 0.12);
    background-color: white;
    outline: none;
    transform: translateY(-1px);
}

.contact-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300a0e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
    padding-right: 45px;
    cursor: pointer;
}

.contact-form .form-control::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.15);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-check {
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-form .form-check:hover {
    background: #f1f3f4;
    border-color: #00a0e6;
}

.contact-form .form-check-input {
    margin-top: 0.3rem;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #00a0e6;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-form .form-check-input:checked {
    background-color: #00a0e6;
    border-color: #00a0e6;
    box-shadow: 0 0 0 0.2rem rgba(0, 160, 230, 0.15);
}

.contact-form .form-check-input:focus {
    border-color: #00a0e6;
    box-shadow: 0 0 0 0.2rem rgba(0, 160, 230, 0.15);
}

.contact-form .form-check-label {
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    margin-left: 10px;
}

.contact-form .form-check-label a {
    color: #00a0e6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-form .form-check-label a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border: none;
    padding: 16px 35px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 160, 230, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.contact-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-form .btn-primary:hover::before {
    left: 100%;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.35);
}

.contact-form .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

/* Contact Info */
.contact-info {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.contact-info .section-title h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info .section-title p {
    color: #f9fcff;
    font-size: 1.1rem;
    margin-bottom: 35px;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 28px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #00a0e6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 160, 230, 0.02) 0%, rgba(231, 76, 60, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-left-color: #e74c3c;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 22px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 160, 230, 0.3);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover .contact-icon::before {
    opacity: 1;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.contact-icon i {
    font-size: 1.6rem;
    color: white;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon i {
    transform: scale(1.1);
}

.contact-details h4 {
    color: #1a252f;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    color: #5a6c7d;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-details strong {
    color: #1a252f;
    font-weight: 700;
}

/* Social Connect */
.social-connect {
    margin-top: 0;
    padding: 30px;
    background: linear-gradient(135deg, white 0%, #fafbfc 100%);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 1px solid rgba(0, 160, 230, 0.08);
    position: relative;
    overflow: hidden;
}

.social-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00a0e6 0%, #f39c12 50%, #e74c3c 100%);
    border-radius: 18px 18px 0 0;
}

.social-connect h4 {
    color: #1a252f;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.social-link {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 18px rgba(0, 160, 230, 0.25);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.35);
    color: white;
}

.social-link i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Alert Styling */
.alert {
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.alert .btn-close {
    opacity: 0.7;
}

.alert .btn-close:hover {
    opacity: 1;
}

.invalid-feedback {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0;
    font-weight: 500;
}

/* Map Section */
.map-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 0;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(0, 160, 230, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(30%) brightness(0.95);
    transition: all 0.4s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.02);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f1f3f4 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 160, 230, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(231, 76, 60, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section .section-title h2 {
    color: #1a252f;
    font-size: 2.8rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-section .section-title p {
    color: #5a6c7d;
    font-size: 1.3rem;
    margin-bottom: 55px;
    font-weight: 500;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 160, 230, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    border-radius: 16px !important;
}

.accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-weight: 700;
    color: #1a252f;
    font-size: 1.15rem;
    border-radius: 16px !important;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 160, 230, 0.1), transparent);
    transition: left 0.5s;
}

.accordion-button:hover::before {
    left: 100%;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 160, 230, 0.3);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    padding: 30px;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 500;
    border-top: 2px solid rgba(0, 160, 230, 0.1);
}

/* Responsive Design for Contact Page */
@media (max-width: 991.98px) {
    .page-banner {
        padding: 100px 0 50px;
        margin-top: 0;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 30px;
        margin-bottom: 40px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .contact-icon i {
        font-size: 1.3rem;
    }

    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .page-banner {
        padding: 90px 0 40px;
        margin-top: 0;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link i {
        font-size: 1.1rem;
    }

    .accordion-button {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 20px;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-section .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .page-banner {
        padding: 80px 0 30px;
        margin-top: 0;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-form .btn-primary {
        width: 100%;
        padding: 12px 25px;
    }

    .contact-item {
        padding: 20px 15px;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    .social-connect {
        padding: 20px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link i {
        font-size: 1rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-section .section-title h2 {
        font-size: 1.8rem;
    }

    .faq-section .section-title p {
        font-size: 1rem;
    }
}

/* Social Media Icons - Contact Page */
.social-connect {
    margin-top: 0;
    padding: 30px;
    background: linear-gradient(135deg, white 0%, #fafbfc 100%);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    text-align: center;
    border: 1px solid rgba(0, 160, 230, 0.08);
    position: relative;
    overflow: hidden;
}

.social-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00a0e6 0%, #f39c12 50%, #e74c3c 100%);
    border-radius: 18px 18px 0 0;
}

.social-connect h4 {
    color: #1a252f !important;
    font-size: 1.4rem !important;
    margin-bottom: 25px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-family: 'Oswald', sans-serif !important;
}

.social-links {
    display: flex !important;
    justify-content: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
}

.social-link {
    width: 55px !important;
    height: 55px !important;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 6px 18px rgba(0, 160, 230, 0.25) !important;
    position: relative !important;
    overflow: hidden !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    transform: translateY(-5px) scale(1.15) !important;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.35) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.social-link i {
    font-size: 1.3rem !important;
    transition: transform 0.3s ease !important;
    color: white !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    display: block !important;
}

.social-link:hover i {
    transform: scale(1.2) !important;
    color: white !important;
}

/* Specific social media hover colors */
.social-link:nth-child(1):hover {
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%) !important;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.35) !important;
}

.social-link:nth-child(2):hover {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%) !important;
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.35) !important;
}

.social-link:nth-child(3):hover {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%) !important;
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.35) !important;
}

.social-link:nth-child(4):hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%) !important;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.35) !important;
}

.social-link:nth-child(5):hover {
    background: linear-gradient(135deg, #e4405f 0%, #d62976 100%) !important;
    box-shadow: 0 10px 25px rgba(228, 64, 95, 0.35) !important;
}

/* Ensure Font Awesome icons are loaded and visible */
.fab,
.fas,
.far,
.fal,
.fat,
.fad {
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free", "FontAwesome" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    speak: none !important;
    display: inline-block !important;
    text-decoration: inherit !important;
    width: auto !important;
    height: auto !important;
    text-align: center !important;
    vertical-align: baseline !important;
}

/* Specific Font Awesome brand icons */
.fa-facebook-f:before {
    content: "\f39e" !important;
}

.fa-twitter:before {
    content: "\f099" !important;
}

.fa-linkedin-in:before {
    content: "\f0e1" !important;
}

.fa-youtube:before {
    content: "\f167" !important;
}

.fa-instagram:before {
    content: "\f16d" !important;
}

.fa-map-marker-alt:before {
    content: "\f3c5" !important;
}

.fa-phone:before {
    content: "\f095" !important;
}

.fa-envelope:before {
    content: "\f0e0" !important;
}

.fa-clock:before {
    content: "\f017" !important;
}

/* Force icon visibility */
.social-link i,
.contact-icon i {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    font-size: inherit !important;
    color: inherit !important;
    text-shadow: none !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    font-variant: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    text-indent: 0 !important;
    text-align: center !important;
    vertical-align: baseline !important;
    white-space: nowrap !important;
}

/* Screen reader only text */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Fallback for missing icons - show text */
.social-link i:empty::after {
    content: attr(class);
    font-family: Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Alternative fallback with Unicode symbols */
.social-link:nth-child(1) i:empty::after {
    content: "f";
}

.social-link:nth-child(2) i:empty::after {
    content: "t";
}

.social-link:nth-child(3) i:empty::after {
    content: "in";
}

.social-link:nth-child(4) i:empty::after {
    content: "▶";
}

.social-link:nth-child(5) i:empty::after {
    content: "📷";
}

/* Contact Items and Icons - Perfect Centering */
.contact-item {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 25px !important;
    padding: 28px !important;
    background: white !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
    border-left: 5px solid #00a0e6 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 160, 230, 0.02) 0%, rgba(231, 76, 60, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
    border-left-color: #e74c3c !important;
}

.contact-icon {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    min-height: 70px !important;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 22px !important;
    flex-shrink: 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    z-index: 1 !important;
    box-shadow: 0 4px 15px rgba(0, 160, 230, 0.3) !important;
    text-align: center !important;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover .contact-icon::before {
    opacity: 1;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    transform: scale(1.15) rotate(5deg) !important;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4) !important;
}

.contact-icon i {
    font-size: 1.6rem !important;
    color: white !important;
    transition: transform 0.3s ease !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    vertical-align: middle !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

.contact-item:hover .contact-icon i {
    transform: scale(1.1) !important;
    color: white !important;
}

.contact-details {
    flex: 1 !important;
    padding-left: 0 !important;
}

.contact-details h4 {
    color: #1a252f !important;
    font-size: 1.3rem !important;
    margin-bottom: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    line-height: 1.3 !important;
}

.contact-details p {
    color: #5a6c7d !important;
    margin-bottom: 0 !important;
    line-height: 1.7 !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
}

.contact-details strong {
    color: #1a252f !important;
    font-weight: 700 !important;
}

/* Specific icon adjustments for perfect centering */
.contact-icon .fa-map-marker-alt {
    position: relative !important;
    left: 1px !important;
    /* Slight adjustment for visual centering */
    font-size: 1.7rem !important;
}

.contact-icon .fa-phone {
    position: relative !important;
    transform: rotate(0deg) !important;
    font-size: 1.6rem !important;
}

.contact-icon .fa-envelope {
    position: relative !important;
    font-size: 1.5rem !important;
}

.contact-icon .fa-clock {
    position: relative !important;
    font-size: 1.6rem !important;
}

/* Force icon display and centering */
.contact-icon i::before {
    display: inline-block !important;
    text-align: center !important;
    vertical-align: middle !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
}

/* Perfect centering using multiple methods */
.contact-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.contact-icon i {
    display: inline-block !important;
    text-align: center !important;
    vertical-align: middle !important;
    line-height: 1 !important;
    margin: 0 auto !important;
    position: relative !important;
}

/* CSS Grid fallback for perfect centering */
@supports (display: grid) {
    .contact-icon {
        display: grid !important;
        place-items: center !important;
        place-content: center !important;
    }
}

/* Flexbox centering as primary method */
.contact-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
}

.contact-icon i {
    display: block !important;
    text-align: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure icons are visible with fallback */
.contact-icon .fas,
.contact-icon .far,
.contact-icon .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", FontAwesome !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Responsive Social Media */
@media (max-width: 767.98px) {
    .social-links {
        gap: 12px !important;
    }

    .social-link {
        width: 45px !important;
        height: 45px !important;
    }

    .social-link i {
        font-size: 1.1rem !important;
    }

    .contact-icon {
        width: 50px !important;
        height: 50px !important;
        margin-right: 15px !important;
    }

    .contact-icon i {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 575.98px) {
    .social-connect {
        padding: 20px !important;
    }

    .social-link {
        width: 40px !important;
        height: 40px !important;
    }

    .social-link i {
        font-size: 1rem !important;
    }
}

/* Products Page Styles */

/* Products Hero Section */
.products-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #00a0e6 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.products-hero .container {
    position: relative;
    z-index: 1;
}

.products-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.products-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 0;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 5px;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(243, 156, 18, 0.95);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Product Categories Section */
.product-categories {
    padding: 60px 0;
    background: #fff;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00a0e6, #f39c12);
    margin: 0 auto;
    border-radius: 2px;
}

.product-category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.category-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.product-category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 160, 230, 0.9), rgba(44, 62, 80, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-category-card:hover .category-overlay {
    opacity: 1;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.category-content {
    padding: 30px;
}

.category-content h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.category-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.category-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #495057;
}

.category-features i {
    color: #00a0e6;
    margin-right: 10px;
    font-size: 0.8rem;
}

.btn-category {
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-category:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.category-badge.new {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

/* Why Choose Products Section */
.why-choose-products {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-content h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-choose-content .lead {
    color: #6c757d;
    margin-bottom: 40px;
}

.feature-list {
    margin-top: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-content p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.5;
}

.why-choose-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.why-choose-image img {
    width: 100%;
    height: auto;
}

.quality-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 15px;
}

.quality-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

/* Custom Solutions Section */
.custom-solutions {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #00a0e6 100%);
    color: white;
    text-align: center;
}

.custom-solutions h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.custom-solutions .lead {
    margin-bottom: 50px;
    opacity: 0.95;
}

.custom-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.custom-feature {
    text-align: center;
}

.custom-feature i {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 20px;
}

.custom-feature h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.custom-feature p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.custom-cta {
    margin-top: 0;
}

/* Technical Support Section */
.technical-support {
    padding: 100px 0;
    background: white;
}

.support-content h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.support-content p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.support-services {
    margin-top: 0;
}

.support-service {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.support-service:hover {
    background: #e9ecef;
    transform: translateX(10px);
}

.support-service i {
    font-size: 1.5rem;
    color: #00a0e6;
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

.support-service h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.support-service p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.support-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.support-contact h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 1.2rem;
    color: #00a0e6;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.contact-item div strong {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item div span {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .products-hero {
        padding: 100px 0 60px;
    }

    .products-hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stat .stat-number {
        font-size: 2rem;
    }

    .product-categories,
    .why-choose-products,
    .custom-solutions,
    .technical-support {
        padding: 80px 0;
    }

    .custom-features {
        gap: 40px;
    }
}

@media (max-width: 767.98px) {
    .products-hero {
        padding: 80px 0 40px;
        margin-top: 0;
    }

    .products-hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .product-categories,
    .why-choose-products,
    .custom-solutions,
    .technical-support {
        padding: 60px 0;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .custom-features {
        flex-direction: column;
        gap: 30px;
    }

    .custom-cta .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .support-contact {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .products-hero {
        margin-top: 0;
        padding: 60px 0 30px;
    }

    .products-hero-title {
        font-size: 1.8rem;
    }

    .category-content {
        padding: 25px;
    }

    .support-contact {
        padding: 20px;
    }

    .hero-badge {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Cat
egory-Specific Products Page Styles */

/* Category Header Section */
.category-header {
    background: #f8f9fa;
    padding: 40px 0 30px;
    margin-top: 0;
    border-bottom: 1px solid #e9ecef;
}

.category-title-section {
    margin-top: 0;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.category-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Products Grid Section */
.products-grid {
    padding: 60px 0;
    background: #fff;
    margin-top: 0;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 160, 230, 0.9), rgba(44, 62, 80, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-buttons {
    display: flex;
    gap: 15px;
}

.btn-overlay {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-overlay:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    animation: pulse 2s infinite;
}

.product-content {
    padding: 30px;
}

.product-title {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-features {
    margin-bottom: 25px;
}

.product-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #495057;
}

.product-features .feature-item i {
    color: #00a0e6;
    margin-right: 10px;
    font-size: 0.8rem;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.product-actions .btn-primary {
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border: none;
}

.product-actions .btn-primary:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: translateY(-2px);
}

.product-actions .btn-outline-primary {
    border: 2px solid #00a0e6;
    color: #00a0e6;
    background: transparent;
}

.product-actions .btn-outline-primary:hover {
    background: #00a0e6;
    color: white;
    border-color: #00a0e6;
}

/* No Products State */
.no-products {
    text-align: center;
    padding: 80px 0;
}

.no-products-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-products-content i {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.no-products-content h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2rem;
}

.no-products-content p {
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Category Features Section */
.category-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-content h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.features-content .lead {
    color: #6c757d;
    margin-bottom: 40px;
}

.features-content .feature-list {
    margin-top: 0;
}

.features-content .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.features-content .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.features-content .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.features-content .feature-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.features-content .feature-content p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.5;
}

.features-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.features-image img {
    width: 100%;
    height: auto;
}

.quality-certifications {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 15px;
}

.certification {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

/* Technical Specs Section */
.technical-specs {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #00a0e6 100%);
    color: white;
    text-align: center;
}

.technical-specs h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.technical-specs .lead {
    margin-bottom: 50px;
    opacity: 0.95;
}

.spec-downloads {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 0;
}

.download-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    max-width: 250px;
}

.download-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.download-icon {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 20px;
}

.download-content h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.download-content p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.btn-download {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Related Categories Section */
.related-categories {
    padding: 100px 0;
    background: #fff;
}

.related-category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.related-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.related-category-card .category-image {
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.related-category-card .category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.related-category-card .category-content {
    padding: 20px;
    text-align: center;
}

.related-category-card .category-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.related-category-card .category-content p {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Simple CTA Section */
.simple-cta {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.simple-cta h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.simple-cta p {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.simple-cta .btn {
    padding: 12px 30px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .category-header {
        padding: 30px 0 25px;
    }

    .category-title {
        font-size: 2rem;
    }

    .products-grid,
    .simple-cta {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .category-header {
        padding: 25px 0 20px;
        margin-top: 0;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .products-grid,
    .simple-cta {
        padding: 50px 0;
    }

    .product-actions {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .category-header {
        margin-top: 0;
        padding: 20px 0 15px;
    }

    .category-title {
        font-size: 1.6rem;
    }

    .product-content {
        padding: 25px;
    }

    .products-grid,
    .simple-cta {
        padding: 40px 0;
    }
}

/ * Products CTA Section */ .products-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #00a0e6 100%);
    color: white;
    text-align: center;
}

.products-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.products-cta .lead {
    margin-bottom: 40px;
    opacity: 0.95;
}

.products-cta .cta-buttons {
    margin-top: 0;
}

.products-cta .btn {
    margin: 5px;
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Responsive adjustments for products grid without header */
@media (max-width: 767.98px) {
    .products-grid {
        margin-top: 0;
        padding: 60px 0;
    }

    .products-cta {
        padding: 80px 0;
    }

    .products-cta .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 575.98px) {
    .products-grid {
        margin-top: 0;
        padding: 50px 0;
    }

    .products-cta {
        padding: 60px 0;
    }

    .products-cta h2 {
        font-size: 2rem;
    }
}

/* Foo
ter Styles */
.footer {
    background-color: #1a252f;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00a0e6 0%, #f39c12 50%, #e74c3c 100%);
}

.footer-logo img {
    max-height: 150px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 160, 230, 0.5));
}

.footer p {
    color: #adb5bd;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-links h5 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00a0e6, #e74c3c);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: #adb5bd;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #00a0e6;
    text-shadow: 0 0 5px rgba(0, 160, 230, 0.3);
}

.footer-links a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #00a0e6;
    font-size: 0.9rem;
}

.footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 0;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 160, 230, 0.1), rgba(231, 76, 60, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #adb5bd;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.footer .social-links a:hover::before {
    left: 100%;
}

.footer .social-links a:hover {
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    border-color: #00a0e6;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 160, 230, 0.3);
}

.footer .social-links a:nth-child(2):hover {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    border-color: #1da1f2;
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.3);
}

.footer .social-links a:nth-child(3):hover {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    border-color: #0077b5;
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

.footer .social-links a:nth-child(4):hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-color: #ff0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.footer .social-links a i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer .social-links a:hover i {
    transform: scale(1.2);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 0;
    font-size: 0.95rem;
    color: #adb5bd;
}

.copyright a {
    color: #00a0e6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.copyright a:hover {
    color: #e74c3c;
    text-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 6px 20px rgba(0, 160, 230, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.back-to-top i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 767.98px) {
    .footer {
        padding: 50px 0 20px;
    }

    .footer-links h5 {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer .social-links {
        justify-content: center;
        margin-top: 0;
    }

    .footer .social-links a {
        width: 40px;
        height: 40px;
    }

    .footer .social-links a i {
        font-size: 1rem;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top i {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 40px 0 15px;
    }

    .copyright {
        text-align: center;
        margin-top: 0;
        padding-top: 20px;
    }

    .copyright .row>div {
        text-align: center !important;
        margin-bottom: 15px;
    }
}

/* CONTACT ICONS - PERFECT CENTERING FIX */
.contact-icon {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    min-height: 70px !important;
    background: linear-gradient(135deg, #00a0e6 0%, #0077b3 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 22px !important;
    flex-shrink: 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    z-index: 1 !important;
    box-shadow: 0 4px 15px rgba(0, 160, 230, 0.3) !important;
    text-align: center !important;
}

.contact-icon i {
    font-size: 1.6rem !important;
    color: white !important;
    transition: transform 0.3s ease !important;
    display: block !important;
    text-align: center !important;
    vertical-align: middle !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free", "FontAwesome" !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
}

.contact-item:hover .contact-icon i {
    transform: translate(-50%, -50%) scale(1.1) !important;
    color: white !important;
}

.contact-icon::before {
    content: '' !important;
    position: absolute !important;
    top: -3px !important;
    left: -3px !important;
    right: -3px !important;
    bottom: -3px !important;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    border-radius: 50% !important;
    z-index: -1 !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.contact-item:hover .contact-icon::before {
    opacity: 1 !important;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    transform: scale(1.15) rotate(5deg) !important;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4) !important;
}

/* Force Font Awesome icons to display */
.contact-icon .fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Specific icon centering adjustments */
.contact-icon .fa-map-marker-alt {
    font-size: 1.7rem !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.contact-icon .fa-phone {
    font-size: 1.6rem !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.contact-icon .fa-envelope {
    font-size: 1.5rem !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.contact-icon .fa-clock {
    font-size: 1.6rem !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* Hover state adjustments */
.contact-item:hover .contact-icon .fa-map-marker-alt {
    transform: translate(-50%, -50%) scale(1.1) !important;
}

.contact-item:hover .contact-icon .fa-phone {
    transform: translate(-50%, -50%) scale(1.1) !important;
}

.contact-item:hover .contact-icon .fa-envelope {
    transform: translate(-50%, -50%) scale(1.1) !important;
}

.contact-item:hover .contact-icon .fa-clock {
    transform: translate(-50%, -50%) scale(1.1) !important;
}

/* Ensure icons are visible */
.contact-icon i::before {
    display: inline-block !important;
    text-align: center !important;
    vertical-align: middle !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 
===== BROCHURE DOWNLOAD MODAL STYLES ===== */

/* Brochure Download Modal Styles */
.brochure-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.brochure-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

.brochure-modal-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
}

.brochure-modal-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 40px 30px 30px;
}

.brochure-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.brochure-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.modal-header p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Form Styles */
.brochure-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00a0e6;
    box-shadow: 0 0 0 3px rgba(0, 160, 230, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    gap: 10px;
}

.phone-input-group select {
    flex: 0 0 120px;
    font-size: 13px;
}

.phone-input-group input {
    flex: 1;
}

/* Country Select */
.country-select-wrapper {
    position: relative;
}

.country-select-wrapper input {
    margin-bottom: 5px;
    padding-right: 40px;
}

.country-select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 12px;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.country-select-wrapper.open::after {
    transform: translateY(-50%) rotate(180deg);
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #e1e5e9;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.country-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.country-item:last-child {
    border-bottom: none;
}

.country-item:hover,
.country-item.selected {
    background: #f8f9fa;
    color: #00a0e6;
}

.country-item.selected {
    background: #e3f2fd;
    border-left: 3px solid #00a0e6;
}

.country-item.no-results {
    color: #666;
    font-style: italic;
    cursor: default;
    justify-content: center;
}

.country-item.no-results:hover {
    background: transparent;
    color: #666;
}

.country-flag {
    font-size: 18px;
    min-width: 24px;
    text-align: center;
}

.country-name {
    flex: 1;
    font-weight: 500;
}

.country-code {
    color: #666;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    min-width: 50px;
    text-align: center;
}

.country-item:hover .country-code,
.country-item.selected .country-code {
    background: #00a0e6;
    color: white;
}

/* Error Messages */
.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 0;
    display: none;
}

.error-message.success {
    color: #28a745;
}

/* OTP Form */
.otp-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.otp-input-group {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.otp-digit {
    width: 50px !important;
    height: 50px !important;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #e1e5e9 !important;
    border-radius: 8px !important;
    padding: 0 !important;
    transition: all 0.2s ease;
}

.otp-digit:focus {
    border-color: #00a0e6 !important;
    box-shadow: 0 0 0 3px rgba(0, 160, 230, 0.1) !important;
}

.otp-digit.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.otp-resend {
    text-align: center;
}

.otp-resend p {
    margin: 0 0 5px 0;
    color: #666;
    font-size: 14px;
}

/* Loading State */
.loading-spinner {
    font-size: 40px;
    color: #00a0e6;
    margin-bottom: 20px;
}

.loading-spinner i {
    animation: spin 1s linear infinite;
}

/* Success State */
.success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

/* Error State */
.error-icon {
    font-size: 60px;
    color: #dc3545;
    margin-bottom: 20px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .brochure-modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .brochure-modal-container {
        max-height: calc(100vh - 40px);
        width: 100%;
        max-width: none;
    }

    .brochure-modal-content {
        padding: 25px 20px 20px;
        border-radius: 12px 12px 0 0;
        min-height: auto;
    }

    .modal-header h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .modal-header p {
        font-size: 14px;
        line-height: 1.4;
    }

    .brochure-modal-close {
        width: 44px;
        height: 44px;
        top: 12px;
        right: 12px;
        font-size: 18px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.1);
    }

    .brochure-modal-close:hover,
    .brochure-modal-close:focus {
        background: rgba(0, 0, 0, 0.2);
        transform: scale(1.1);
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select {
        font-size: 16px;
        min-height: 48px;
        padding: 12px 16px;
        border-radius: 8px;
        border-width: 2px;
    }

    .otp-digit {
        width: 44px !important;
        height: 44px !important;
        font-size: 20px;
        font-weight: 700;
        border-radius: 8px !important;
        border-width: 2px !important;
        text-align: center;
    }

    .otp-input-group {
        gap: 8px;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .phone-input-group {
        flex-direction: column;
        gap: 15px;
    }

    .phone-input-group select {
        flex: none;
        width: 100%;
        font-size: 16px;
        min-height: 48px;
    }

    .phone-input-group input {
        font-size: 16px;
        min-height: 48px;
        width: 100%;
    }

    .country-dropdown {
        max-height: 250px;
        font-size: 16px;
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .country-item {
        padding: 16px;
        min-height: 56px;
        gap: 12px;
        border-bottom: 1px solid #f0f0f0;
    }

    .country-item:active {
        background: #e3f2fd;
        transform: scale(0.98);
    }

    .country-flag {
        font-size: 22px;
        min-width: 32px;
    }

    .country-name {
        font-size: 16px;
        font-weight: 500;
    }

    .country-code {
        font-size: 13px;
        padding: 4px 8px;
        border-radius: 4px;
    }

    #countrySearch {
        font-size: 16px;
        min-height: 48px;
        padding: 12px 16px;
        border-radius: 8px 8px 0 0;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        font-size: 16px;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
    }

    .btn-link {
        min-height: 44px;
        font-size: 16px;
        padding: 8px;
    }

    .error-actions {
        flex-direction: column;
        gap: 12px;
    }

    .error-actions .btn-primary,
    .error-actions .btn-secondary {
        width: 100%;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .brochure-modal {
        padding: 5px;
        align-items: flex-start;
        padding-top: 10px;
    }

    .brochure-modal-container {
        max-height: calc(100vh - 20px);
    }

    .brochure-modal-content {
        padding: 20px 15px 15px;
        border-radius: 12px 12px 0 0;
    }

    .modal-header {
        margin-bottom: 20px;
    }

    .modal-header h3 {
        font-size: 18px;
        line-height: 1.2;
    }

    .modal-header p {
        font-size: 13px;
    }

    .otp-digit {
        width: 38px !important;
        height: 38px !important;
        font-size: 18px;
        font-weight: 700;
    }

    .otp-input-group {
        gap: 6px;
        margin: 0 auto;
        max-width: 280px;
    }

    .country-dropdown {
        max-height: 200px;
        font-size: 15px;
    }

    .country-item {
        padding: 14px 12px;
        min-height: 52px;
        gap: 10px;
    }

    .country-flag {
        font-size: 18px;
        min-width: 26px;
    }

    .country-name {
        font-size: 15px;
    }

    .country-code {
        font-size: 12px;
        padding: 3px 6px;
        min-width: 42px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group input,
    .form-group select {
        font-size: 16px;
        min-height: 46px;
        padding: 11px 14px;
    }

    .phone-input-group {
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 46px;
        font-size: 15px;
        padding: 11px 20px;
    }
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus indicators */
.country-item:focus {
    outline: 2px solid #00a0e6;
    outline-offset: -2px;
    background: #e3f2fd;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .country-dropdown {
        border-width: 3px;
    }

    .country-item.selected {
        border-left-width: 5px;
        background: #000;
        color: #fff;
    }

    .country-code {
        border: 1px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .brochure-modal-overlay,
    .brochure-modal-container {
        animation: none;
    }

    .loading-spinner i {
        animation: none;
    }

    * {
        transition: none !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .brochure-modal-content {
        background: #2d3748;
        color: #e2e8f0;
    }

    .modal-header h3 {
        color: #e2e8f0;
    }

    .modal-header p {
        color: #a0aec0;
    }

    .form-group label {
        color: #e2e8f0;
    }

    .form-group input,
    .form-group select {
        background: #4a5568;
        border-color: #4a5568;
        color: #e2e8f0;
    }

    .form-group input:focus,
    .form-group select:focus {
        border-color: #63b3ed;
        box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.1);
    }

    .country-dropdown {
        background: #4a5568;
        border-color: #4a5568;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .country-item {
        border-bottom-color: #2d3748;
        color: #e2e8f0;
    }

    .country-item:hover,
    .country-item.selected {
        background: #2d3748;
        color: #63b3ed;
    }

    .country-item.selected {
        background: #1a202c;
        border-left-color: #63b3ed;
    }

    .country-code {
        background: #2d3748;
        color: #a0aec0;
    }

    .country-item:hover .country-code,
    .country-item.selected .country-code {
        background: #63b3ed;
        color: #1a202c;
    }

    .brochure-modal-close:hover {
        background: #4a5568;
        color: #e2e8f0;
    }
}

/* ===== END BROCHURE DOWNLOAD MODAL STYLES ===== */


/* ========================================
   COMPREHENSIVE RESPONSIVE STYLES
   ======================================== */

/* Tablet and Below (991px and below) */
@media (max-width: 991.98px) {
    /* Header Logo */
    .navbar-brand img {
        height: 55px !important;
    }
    
    .navbar {
        padding: 8px 0 !important;
    }
    
    /* Navigation */
    .navbar-collapse {
        background: white;
        padding: 20px;
        margin-top: 0;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-link {
        padding: 10px 15px !important;
        margin: 5px 0 !important;
    }
    
    /* Hero Section */
    .hero-slider {
        min-height: 500px !important;
        height: auto !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-content p {
        font-size: 0.95rem !important;
    }
    
    /* Buttons */
    .btn {
        padding: 8px 20px !important;
        font-size: 0.9rem !important;
    }
    
    /* Product Cards */
    .product-slider-card,
    .product-card {
        margin-bottom: 20px;
    }
    
    /* Client Logos */
    .client-logo {
        height: 100px !important;
        padding: 15px !important;
    }
    
    .client-logo img {
        max-height: 70px !important;
    }
    
    /* Stats Section */
    .stat-box {
        padding: 20px 10px !important;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px !important;
    }
    
    .footer-links {
        margin-bottom: 30px;
    }
}

/* Mobile (767px and below) */
@media (max-width: 767.98px) {
    /* Header Logo */
    .navbar-brand img {
        height: 50px !important;
    }
    
    .navbar {
        padding: 10px 0 !important;
    }
    
    /* Hero Section */
    .hero-slider {
        min-height: 400px !important;
    }
    
    .hero-content h1 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-content p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-badge {
        font-size: 0.85rem !important;
        padding: 4px 12px !important;
    }
    
    .d-flex.gap-3 {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .d-flex.gap-3 .btn {
        width: 100% !important;
        text-align: center !important;
    }
    
    /* Section Titles */
    .section-title h2 {
        font-size: 1.75rem !important;
    }
    
    .section-title p {
        font-size: 0.9rem !important;
    }
    
    /* About Section */
    .about-img {
        margin-bottom: 30px;
    }
    
    .feature-box {
        margin-bottom: 20px;
    }
    
    /* Product Details Page */
    .main-product-image {
        margin-bottom: 20px !important;
    }
    
    .product-thumbnails .col-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
    
    .thumbnail-image {
        height: 60px !important;
        object-fit: cover !important;
    }
    
    /* Specifications */
    .specifications-list {
        font-size: 0.9rem !important;
    }
    
    /* Stats */
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 1rem !important;
    }
    
    /* Team Cards */
    .team-card {
        margin-bottom: 30px;
    }
    
    .team-image {
        height: 350px;
    }
    
    /* CTA Section */
    .cta-section h2 {
        font-size: 1.75rem !important;
    }
    
    .cta-section p {
        font-size: 0.95rem !important;
    }
    
    /* Tables */
    table {
        font-size: 0.85rem !important;
    }
    
    /* Operation Cards (Iron Worker) */
    .operation-card {
        padding: 10px !important;
        margin-bottom: 10px;
    }
    
    .operation-card h6 {
        font-size: 0.8rem !important;
    }
    
    .operation-card i {
        font-size: 1.5rem !important;
    }
}

/* Small Mobile (575px and below) */
@media (max-width: 575.98px) {
    /* Header Logo */
    .navbar-brand img {
        height: 45px !important;
    }
    
    .navbar {
        padding: 8px 0 !important;
    }
    
    /* Hero Section */
    .hero-slider {
        min-height: 350px !important;
    }
    
    .hero-content {
        padding: 20px 0 !important;
    }
    
    .hero-content h1 {
        font-size: 1.5rem !important;
    }
    
    .hero-content p {
        font-size: 0.85rem !important;
    }
    
    /* Buttons */
    .btn {
        padding: 8px 15px !important;
        font-size: 0.85rem !important;
    }
    
    /* Section Padding */
    .about-section,
    .products-slider-section,
    .stats-section,
    .clients-section,
    .cta-section,
    .team-section,
    .why-choose-us,
    .mission-vision {
        padding: 40px 0 !important;
    }
    
    /* Section Titles */
    .section-title {
        margin-bottom: 2rem !important;
    }
    
    .section-title h2 {
        font-size: 1.5rem !important;
    }
    
    /* Product Cards */
    .product-slider-card,
    .product-card {
        margin: 10px 0 !important;
    }
    
    .product-slider-img {
        height: 180px !important;
    }
    
    /* Client Logos */
    .client-logo {
        height: 80px !important;
        padding: 10px !important;
    }
    
    .client-logo img {
        max-height: 50px !important;
    }
    
    /* Stats */
    .stat-box {
        padding: 15px 5px !important;
    }
    
    .stat-number {
        font-size: 1.75rem !important;
    }
    
    .stat-label {
        font-size: 0.9rem !important;
    }
    
    /* Feature Lists */
    .feature-list li {
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
    }
    
    /* Product Thumbnails */
    .product-thumbnails .col-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    /* Specifications */
    .capacity-section {
        font-size: 0.85rem !important;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px !important;
    }
    
    .footer-logo img {
        max-height: 60px !important;
    }
    
    .social-links a {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
    
    /* Hot Deals Badge */
    .hot-deals-link {
        padding: 6px 15px !important;
        font-size: 0.85rem !important;
    }
    
    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.8rem !important;
        padding: 8px 0 !important;
    }
    
    /* Page Banner */
    .page-banner {
        padding: 20px 0 !important;
    }
    
    .page-title {
        font-size: 1.5rem !important;
    }
    
    .page-subtitle {
        font-size: 0.9rem !important;
    }
    
    /* MVV Cards */
    .mvv-card {
        margin-bottom: 20px;
    }
    
    /* Feature Items */
    .feature-item {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .feature-icon {
        margin-bottom: 15px !important;
    }
    
    /* Image Viewer Modal */
    .image-viewer-content {
        max-width: 95% !important;
        max-height: 80vh !important;
    }
    
    .image-viewer-close {
        top: 10px !important;
        right: 15px !important;
        font-size: 30px !important;
    }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.25rem !important;
    }
    
    .section-title h2 {
        font-size: 1.25rem !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .navbar-brand img {
        max-height: 80px !important;
    }
}

/* Landscape Mobile Fix */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        min-height: 100vh !important;
    }
    
    .hero-content {
        padding: 10px 0 !important;
    }
    
    .hero-content h1 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }
    
    .hero-content p {
        margin-bottom: 10px !important;
    }
}

/* Fix for overflow issues */
@media (max-width: 991.98px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .row {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }
    
    .row > * {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}






/* ===== MOBILE TOUCH & SWIPE IMPROVEMENTS ===== */

/* Improve touch targets for mobile */
@media (max-width: 767.98px) {
    /* Larger touch targets for dots */
    .hero-slider-dot,
    .swiper-pagination-bullet {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-slider-dot::before {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: inherit;
    }

    /* Better button spacing on mobile */
    .hero-content .btn {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Prevent text selection during swipe */
    .hero-slider,
    .swiper {
        -webkit-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
    }

    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .product-slider-card:hover,
    .client-logo:hover,
    .feature-box:hover {
        transform: none;
    }

    .product-slider-card:active {
        transform: scale(0.98);
    }
}

/* Optimize animations for mobile performance */
@media (max-width: 767.98px) {
    * {
        -webkit-tap-highlight-color: rgba(0, 160, 230, 0.2);
    }

    /* Reduce animation complexity on mobile */
    .hero-slide {
        background-attachment: scroll !important;
    }

    /* Faster transitions on mobile */
    .hero-slider-dot,
    .swiper-pagination-bullet,
    .btn {
        transition-duration: 0.2s;
    }
}

/* Loading state for sliders */
.swiper:not(.swiper-initialized) {
    opacity: 0;
}

.swiper.swiper-initialized {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Accessibility improvements */
.hero-slider-dot:focus-visible,
.swiper-button-next:focus-visible,
.swiper-button-prev:focus-visible {
    outline: 3px solid #00a0e6;
    outline-offset: 3px;
}

/* Prevent layout shift during slider initialization */
.hero-slider {
    min-height: 450px;
}

.products-slider.swiper {
    min-height: 300px;
}

.clients-slider.swiper {
    min-height: 150px;
}

/* Smooth gradient overlays for better text readability */
.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Optimize for very small screens (< 360px) */
@media (max-width: 359.98px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .product-slider-img {
        height: 160px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-slider-controls {
        bottom: 15px;
    }
}

/* High DPI screens optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-slide-1,
    .hero-slide-2,
    .hero-slide-3 {
        background-size: cover;
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-slide {
        transition: opacity 0.3s ease-in-out;
    }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles here if needed */
}

/* Print styles */
@media print {
    .hero-slider-controls,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination,
    .back-to-top,
    .sticky-social {
        display: none !important;
    }

    .hero-slider {
        height: auto;
        min-height: auto;
    }

    .hero-slide {
        position: relative;
        page-break-inside: avoid;
    }
}
