/* ========================================
   DCC INFRA - PROFESSIONAL WEBSITE STYLES
   ======================================== */

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #eeeeee;
}

img {
    max-width: 100%;
    height: auto;
}

img.wp-smiley, img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

h1 { font-size: 3rem; font-weight: 600; }
h2 { font-size: 2.4rem; color: #ebebeb; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

a {
    color: #2E8B8B;
    text-decoration: none;
}

a:hover {
    color: #4A9B9B;
}

/* Layout Structure */
.l-canvas {
    overflow: hidden;
}

.l-canvas.type_wide {
    width: 100%;
}

.l-section {
    padding: 60px 0;
    position: relative;
}

.l-section.height_auto { padding: 40px 0; }
.l-section.height_small { padding: 30px 0; }
.l-section.height_medium { padding: 60px 0; }

.l-section-h {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.l-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f2f2f2;
}

/* Grid System */
.g-cols {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.vc_column_container {
    padding: 15px;
}

.vc_col-sm-12 { flex: 0 0 100%; }
.vc_col-sm-6 { flex: 0 0 50%; }
.vc_col-sm-4 { flex: 0 0 33.333%; }
.vc_col-sm-8 { flex: 0 0 66.666%; }

@media (max-width: 768px) {
    .vc_col-sm-6,
    .vc_col-sm-4,
    .vc_col-sm-8 {
        flex: 0 0 100%;
    }
}

/* Header Styles */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.l-subheader {
    background: #fff;
    width: 100%;
}

.l-subheader.at_top {
    background: #333;
    line-height: 36px;
    height: 36px;
    color: #ffffff;
    font-size: 14px;
}

.l-subheader.at_middle {
    background: #ffffff;
    line-height: 70px;
    height: 70px;
    color: #000000;
}

.l-subheader-h {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
}

.l-subheader-cell {
    display: flex;
    align-items: center;
    height: 100%;
}

.l-subheader-cell.at_left { 
    justify-content: flex-start; 
    gap: 15px;
}
.l-subheader-cell.at_center { 
    justify-content: center; 
    flex: 1; 
}
.l-subheader-cell.at_right { 
    justify-content: flex-end; 
}

/* Header Elements */
.w-text {
    margin-right: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.w-text.ush_text_2,
.w-text.ush_text_3 {
    color: #fff;
}

.w-text-h {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.w-text i {
    margin-right: 8px;
    color: #2E8B8B;
    font-size: 16px;
}

.w-text-value {
    color: inherit;
}

/* Dropdown */
.w-dropdown {
    position: relative;
}

.w-dropdown-current {
    cursor: pointer;
}

.w-dropdown-item {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.w-dropdown-item i {
    margin-right: 8px;
}

/* Enhanced Logo */
.w-image.ush_image_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
    padding: 5px;
}

.w-image.ush_image_1 img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: all 0.3s ease;
}

.w-image.ush_image_1:hover img {
    transform: scale(1.05);
}

/* Navigation */
.w-nav {
    display: flex;
    align-items: center;
}

.w-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.w-nav-item {
    position: relative;
}

.w-nav-anchor {
    display: block;
    padding: 0 20px;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.w-nav-anchor:hover,
.w-nav-item.current_page_item .w-nav-anchor {
    color: #2E8B8B;
}

.w-nav-list.level_2 {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    display: none;
    flex-direction: column;
}

.w-nav-item.togglable:hover .w-nav-list.level_2 {
    display: flex;
}

.w-nav-list.level_2 .w-nav-anchor {
    padding: 12px 20px;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.w-nav-control {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 10px;
}

.w-nav-icon {
    position: relative;
    width: 24px;
    height: 18px;
}

.w-nav-icon i,
.w-nav-icon i:before,
.w-nav-icon i:after {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s;
}

.w-nav-icon i {
    position: relative;
    top: 8px;
}

.w-nav-icon i:before,
.w-nav-icon i:after {
    content: '';
    position: absolute;
    left: 0;
}

.w-nav-icon i:before {
    top: -8px;
}

.w-nav-icon i:after {
    top: 8px;
}

/* Social Icons */
.w-socials {
    display: flex;
    align-items: center;
}

.w-socials-list {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.w-socials-item {
    position: relative;
}

.w-socials-item-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: transparent;
    color: #fff;
    border: 1px solid #555;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 14px;
}

.w-socials-item-link:hover {
    background: #2E8B8B;
    border-color: #2E8B8B;
    color: #fff;
}

.w-socials-item-link:before {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
}

.w-socials-item.facebook .w-socials-item-link:before {
    content: "\f39e"; /* Facebook f icon */
}

.w-socials-item.twitter .w-socials-item-link:before {
    content: "\f099"; /* Twitter icon */
}

.w-socials-item.vk .w-socials-item-link:before {
    content: "\f189"; /* VK icon */
}

.w-socials-item.youtube .w-socials-item-link:before {
    content: "\f167"; /* YouTube icon */
}

.w-socials-item.behance .w-socials-item-link:before {
    content: "\f1b4"; /* Behance icon */
}

.w-socials-item.houzz .w-socials-item-link:before {
    content: "\f27c"; /* Houzz icon */
}

.w-socials-item.instagram .w-socials-item-link:before {
    content: "\f16d"; /* Instagram icon */
}

.w-socials-item.linkedin .w-socials-item-link:before {
    content: "\f08c"; /* LinkedIn icon */
}

.w-socials-item-popup {
    display: none;
}

/* Main Content */
.l-main {
    margin-top: 106px; /* Header height */
    background: #fff;
}

/* Buttons */
.w-btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.us-btn-style_1 {
    background: #2E8B8B;
    color: #ffffff !important;
}

.us-btn-style_1:hover {
    background: #1F5F5F;
    color: #ffffff !important;
}

.us-btn-style_4 {
    background: #ffffff;
    color: #333333 !important;
    border: 3px solid transparent;
    font-weight: 700;
    text-transform: uppercase;
}

.us-btn-style_4:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff !important;
}

/* Spacers */
.w-separator {
    height: 20px;
}

.w-separator.size_small { height: 20px; }
.w-separator.size_medium { height: 40px; }

.ult-spacer {
    display: block;
    clear: both;
}

.spacer-68b545a3b4d65 { 
    height: 70px; 
}

@media (max-width: 1199px) { .spacer-68b545a3b4d65 { height: 50px; } }
@media (max-width: 991px) { .spacer-68b545a3b4d65 { height: 50px; } }
@media (max-width: 767px) { .spacer-68b545a3b4d65 { height: 50px; } }
@media (max-width: 479px) { .spacer-68b545a3b4d65 { height: 50px; } }

/* Revolution Slider Placeholder */
.wpb_revslider_element {
    margin: 0 auto;
    position: relative;
}

rs-fullwidth-wrap {
    display: block;
    width: 100% !important;
    height: 505px;
    background: linear-gradient(135deg, #2E8B8B, #1F5F5F);
    color: #fff;
    position: relative;
}

rs-module-wrap {
    display: block;
    width: 100%;
    height: 100%;
}

/* Hero Carousel Section */

.herodynamic{
    margin-top: -40px;
}
.hero-carousel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.hero-nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fff;
    transform: scale(1.3);
}

/* Remove extra spacing */
.ult-spacer {
    display: none !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 0, 128, 0.4);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: particles 20s ease-in-out infinite;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes particles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 3;
    min-height: 100vh;
}

.hero-text {
    flex: 1;
    max-width: 50%;
    padding-right: 60px;
    padding-left: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-btn {
    display: inline-block;
    background: white;
    color: #333;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-images {
    flex: 1;
    position: relative;
    height: 500px;
    max-width: 50%;
    padding-right: 20px;
}

.product-image {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-1 {
    width: 300px;
    height: 200px;
    top: 30px;
    left: 10px;
    z-index: 2;
    transform: rotate(-5deg);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.image-2 {
    width: 350px;
    height: 230px;
    top: 70px;
    right: 5px;
    z-index: 1;
    transform: rotate(3deg);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 20px;
    animation: slideInDown 1s ease-out;
}

.badge-text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
    animation: slideInLeft 1s ease-out;
}

.title-line {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: #E8F4F4;
    margin-bottom: 10px;
}

.title-highlight {
    display: block;
    background: linear-gradient(45deg, #fff, #E8F4F4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    font-weight: 800;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    animation: slideInUp 1s ease-out 0.5s both;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #E8F4F4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 18px;
}

/* Enhanced Image Container */
.image-container {
    position: relative;
    text-align: center;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Floating elements removed for cleaner design */

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    flex: 1;
    color: #fff;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #E8F4F4;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #F0F8F8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: #fff;
    color: #2E8B8B;
    border-color: #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #2E8B8B;
    transform: translateY(-2px);
}

.hero-image {
    flex: 0 0 300px;
    text-align: center;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Enhanced Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.welcome-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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%232E8B8B" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.welcome-section .l-section-h {
    position: relative;
    z-index: 2;
}

.welcome-content {
    padding: 20px 0;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2E8B8B, #1F5F5F);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(46, 139, 139, 0.3);
}

.badge-icon {
    font-size: 18px;
}

.welcome-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.welcome-subtitle {
    color: #2E8B8B;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.welcome-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.welcome-features {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #2E8B8B;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 139, 139, 0.3);
}

.feature-icon {
    font-size: 18px;
}

/* Welcome Image Container */
.welcome-image-container {
    position: relative;
    text-align: center;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.welcome-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    background: transparent;
    border-radius: 20px;
    object-fit: contain;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(46, 139, 139, 0.9));
    color: #fff;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.overlay-content p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Floating badges removed for cleaner design */

/* Welcome About Modal Styling */
.welcome-about-content {
    padding: 20px 0;
}

.welcome-about-story h3 {
    color: #2C5F5F;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
    border-bottom: 2px solid #4A90E2;
    padding-bottom: 8px;
}

.welcome-about-story h3:first-child {
    margin-top: 0;
}

.welcome-about-story p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.welcome-about-story ul {
    margin: 15px 0;
    padding-left: 0;
}

.welcome-about-story li {
    color: #555;
    margin: 8px 0;
    padding-left: 5px;
    font-size: 1rem;
    line-height: 1.6;
}

.welcome-about-story li:before {
    content: '';
    margin-right: 8px;
}

/* Welcome Read More Button */
.welcome-read-more-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.welcome-read-more-btn:hover {
    background: linear-gradient(135deg, #357ABD, #2C5F5F);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
    color: #fff;
}

.welcome-read-more-btn .w-btn-label {
    color: #fff;
    font-weight: 600;
}

/* Text Content */
.wpb_text_column h3 {
    color: #333;
    margin-bottom: 20px;
}

.wpb_text_column h6 {
    color: #000;
    margin-bottom: 15px;
}

.wpb_text_column p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* State Headings */
.state-heading {
    color: #2E8B8B !important;
    font-weight: 600;
}

/* Images */
.w-image {
    text-align: center;
}

.w-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Enhanced Products Section */
.products-section {
    padding: 80px 0;
    position: relative;
}

.products-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="50" cy="50" r="1" fill="%23ddd" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.products-section .l-section-h {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #2E8B8B;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Products Carousel */
.products-carousel {
    margin-top: 50px;
    position: relative;
    
}

.carousel-container {
    display: flex;
    gap: 30px;
    margin-left: 200px;
    /* overflow-x: auto; */
    scroll-behavior: smooth;
    /* padding: 20px 0; */
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    justify-content: center;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Enhanced Product Cards */
.product-card {
    background: #fff;
    width: 25%;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    min-width: 300px;
    flex-shrink: 0;
}

.product-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(46, 139, 139, 0.2);
    border: 2px solid #2E8B8B;
}

.card-header {
    background: linear-gradient(135deg, #2E8B8B, #1F5F5F);
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 200px;
}

.card-header .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    background: #f0f0f0;
}

.card-header .product-image:not([src]),
.card-header .product-image[src=""] {
    background: linear-gradient(135deg, #2E8B8B, #1F5F5F);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.card-header .product-image:not([src])::before,
.card-header .product-image[src=""]::before {
    content: "Image Loading...";
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 20px 0 15px 0;
    padding: 0 20px;
}

.product-card p {
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    padding: 0 20px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 20px 0;
    padding: 0 20px;
}

.feature-tag {
    background: #f8f9fa;
    color: #2E8B8B;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

.card-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.learn-more-btn {
    color: #2E8B8B;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more-btn:hover {
    color: #1F5F5F;
    transform: translateX(5px);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    background: #2E8B8B;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #1F5F5F;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2E8B8B;
    transform: scale(1.2);
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%); }
    50% { transform: translateX(100%) translateY(100%); }
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2E8B8B, #1F5F5F);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.product-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.g-preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.g-preloader > div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2E8B8B;
    opacity: 0.6;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Application Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.area-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2E8B8B, #1F5F5F);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.area-card.featured-area {
    background: linear-gradient(135deg, #2E8B8B, #1F5F5F);
    color: #fff;
    transform: scale(1.05);
}

.area-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.area-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.area-card.featured-area h4 {
    color: #fff;
}

.area-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.area-card.featured-area p {
    color: #E8F4F4;
}

.more-tag {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    display: inline-block;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-card.active {
    display: block;
}

.quote-icon {
    font-size: 4rem;
    color: #2E8B8B;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-info h4 {
    color: #2E8B8B;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.author-info span {
    color: #666;
    font-size: 14px;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    background: #2E8B8B;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: #1F5F5F;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.testimonial-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #2E8B8B;
    transform: scale(1.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Clients Section */
.clients-section {
    background: #fff;
    padding: 80px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: #2E8B8B;
    box-shadow: 0 10px 25px rgba(46, 139, 139, 0.1);
}

.client-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E8B8B;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #2E8B8B, #1F5F5F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.client-card h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.client-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2E8B8B 0%, #1F5F5F 100%);
    color: #fff;
    padding: 80px 0;
}

.contact-section .section-title {
    color: #fff;
}

.contact-section .section-subtitle {
    color: #E8F4F4;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.info-card h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-card p {
    color: #E8F4F4;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 40px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255,255,255,0.2);
}

.submit-btn {
    background: #fff;
    color: #2E8B8B;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About Us Section */
.about-us-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2E8B8B, #1F5F5F);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(46, 139, 139, 0.3);
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.about-read-more-btn {
    background: linear-gradient(135deg, #2E8B8B, #1F5F5F);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.about-read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 139, 139, 0.3);
}

/* Contact Cards Horizontal */
.contact-cards-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    color: #fff;
}

.contact-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: #4A90E2;
    text-align: center;
}

.card-icon i {
    font-size: 3rem;
    color: #4A90E2;
}

.contact-card h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-card p {
    color: #E8F4F4;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.contact-link:hover {
    color: #E8F4F4;
    transform: translateX(5px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #aaa;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #fff;
    background: #ff4757;
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, #2E8B8B, #1F5F5F);
    color: #fff;
    padding: 30px;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.modal-body {
    padding: 40px;
}

.about-modal-content h3 {
    color: #2E8B8B;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-modal-content h3:first-child {
    margin-top: 0;
}

.about-modal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-modal-content ul {
    list-style: none;
    padding: 0;
}

.about-modal-content li {
    padding: 8px 0;
    color: #555;
    font-size: 16px;
}

/* Product Modal Content */
.product-modal-content {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 40px;
    align-items: start;
}

.product-modal-image {
    text-align: center;
}

.product-modal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-modal-details h3 {
    color: #2E8B8B;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-modal-details p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-features-list li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.product-features-list li:last-child {
    border-bottom: none;
}

.product-specifications {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.product-specifications h4 {
    color: #2E8B8B;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Enhanced Social Links */
.social-link.whatsapp {
    background: #25D366;
    color: #fff;
}

.social-link.twitter {
    background: #1DA1F2;
    color: #fff;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-link.linkedin {
    background: #0077B5;
    color: #fff;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Back to Top Button */
.w-toplink {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #4A90E2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.w-toplink:hover {
    background: #357ABD;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    color: #fff;
}

.w-toplink i {
    font-size: 18px;
}

/* Remove Quick Inquiry Tab */
.quick-inquiry-tab {
    display: none;
}

/* Client Grid */
#us_grid_2 .w-grid-item {
    flex: 0 0 calc(20% - 15px);
    padding: 20px;
    background: #fff;
    border: 1px solid #dadada;
    border-radius: 10px;
    text-align: center;
}

#us_grid_2 .w-grid-item img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

/* Footer */
.l-footer {
    margin-top: 0px;
}

/* Footer Banner Section */
.footer-banner {
    background: #2E8B8B;
    padding: 30px 0;
}

.footer-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.banner-text h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.banner-text p {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #333;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.download-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.download-btn i {
    font-size: 18px;
}

/* Main Footer Section */
.footer-main {
    background: #2d2d2e;
    color: #fff;
    padding: 40px 0;
    position: relative;
}

.footer-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.footer-column h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.footer-column hr {
    border: none;
    height: 2px;
    background: #2E8B8B;
    margin: 0 0 20px 0;
    width: 50px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-menu a:before {
    content: ">";
    color: #666;
    margin-right: 8px;
    font-size: 12px;
}

.footer-menu a:hover {
    color: #2E8B8B;
}

.footer-address {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-address strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
}

.contact-item i {
    color: #666;
    width: 16px;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #2E8B8B;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link.facebook {
    background: #3b5998;
    color: #fff;
}

.social-link.linkedin {
    background: #0077b5;
    color: #fff;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Quick Inquiry Tab */
.quick-inquiry-tab {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: #2E8B8B;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-inquiry-tab:hover {
    background: #1F5F5F;
}

.quick-inquiry-tab span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Bottom Section */
.footer-bottom {
    background: #1a1a1a;
    color: #fff;
    padding: 20px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-info p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

.copyright-info p:first-child {
    margin-bottom: 5px;
}

.webmaster-info p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

.webmaster-info a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.webmaster-info a:hover {
    color: #2E8B8B;
}

/* WhatsApp Chat Icon */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-link i {
    font-size: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

.whatsapp-link:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* Back to top */
.w-toplink {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2E8B8B;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    z-index: 1000;
}

.w-toplink:hover {
    background: #1F5F5F;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .w-nav-control { display: block; }
    .w-nav-list.level_1 { display: none; }
    
    .w-grid-item {
        flex: 0 0 calc(33.333% - 15px);
    }
    
    #us_grid_2 .w-grid-item {
        flex: 0 0 calc(25% - 15px);
    }
    
    /* Mobile Navigation */
    .w-nav-list.level_1 {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        flex-direction: column;
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    
    .w-nav-list.level_1.show {
        max-height: 500px;
        display: flex;
    }
    
    .w-nav-list.level_1 .w-nav-anchor {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }
}

@media (max-width: 768px) {

    .l-main { margin-top: 86px; }
    
    .l-subheader.at_top {
        display: none; /* Hide top bar on mobile */
    }
    
    .l-subheader.at_middle { 
        line-height: 50px; 
        height: 50px; 
    }
    
    .w-text { 
        font-size: 12px; 
        margin-right: 10px; 
    }
    
    .w-image.ush_image_1 img { 
        height: 30px; 
    }
    
    .w-actionbox {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    .w-grid-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    #us_grid_2 .w-grid-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.8rem; }
    
    /* Hero Section Mobile */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 20px 30px;
    }
    
    .hero-text {
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-images {
        max-width: 100%;
        height: 300px;
        padding-right: 0;
    }
    
    .image-1 {
        width: 200px;
        height: 130px;
        top: 20px;
        left: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .image-2 {
        width: 220px;
        height: 150px;
        top: 50px;
        right: 10px;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .hero-nav {
        padding: 0 20px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        flex: none;
    }
    
    /* Products Grid Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        padding: 30px 20px;
    }
    
    /* WhatsApp Mobile */
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-link i {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    /* Back to top mobile */
    .w-toplink {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Footer mobile adjustments */
    .footer-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quick-inquiry-tab {
        position: static;
        width: 100%;
        height: 50px;
        writing-mode: horizontal-tb;
        text-orientation: initial;
        margin-top: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .carousel-container {
        margin-left: 400px;
    }
}

@media (max-width: 480px) {
    .hero-carousel{
        min-height: 50vh;
    }
    .herodynamic{
        margin-top: 0px;
    }
    .l-main { margin-top: 50px; }
    .carousel-container {
        margin-left: 500px;
    }
    .w-grid-item,
    #us_grid_2 .w-grid-item {
        flex: 0 0 100%;
    }
    
    .l-subheader-cell.at_left {
        gap: 10px;
    }
    
    .w-text {
        margin-right: 0;
        margin-bottom: 0;
        font-size: 11px;
    }
    
    .w-socials-list {
        gap: 5px;
    }
    
    .w-socials-item-link {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    /* Very small screen footer */
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .banner-text h3 {
        font-size: 24px;
    }
    
    .download-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
.w-25{
    width: 25%;
}

