
@media only screen and (max-width: 767px) {
    .header-style-1 .wt-topbar-right {
        display: flex;
    }
}

.hero-slider {
            height: 100vh;
            overflow: hidden;
        }
        
        .carousel-item {
            height: 100vh;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            width: 90%;
            max-width: 800px;
        }
        
        .carousel-caption h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1s ease-out;
        }
        
        .carousel-caption p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1s ease-out 0.3s both;
        }
        
        .btn-hero {
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .carousel-control-prev {
            left: 30px;
        }
        
        .carousel-control-next {
            right: 30px;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 30px;
            height: 30px;
        }
        
        .carousel-indicators {
            bottom: 30px;
        }
        
        .carousel-indicators [data-bs-target] {
            width: 60px;
            height: 6px;
            border-radius: 3px;
            margin: 0 5px;
            background: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }
        
        .carousel-indicators [data-bs-target].active {
            background: #fff;
            transform: scale(1.2);
        }
        
        .slide-1 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .slide-2 {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        
        .slide-3 {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        
        .slide-4 {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .carousel-caption h1 {
                font-size: 2.5rem;
            }
            
            .carousel-caption p {
                font-size: 1rem;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 60px;
                height: 60px;
            }
            
            .carousel-control-prev {
                left: 15px;
            }
            
            .carousel-control-next {
                right: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-caption h1 {
                font-size: 2rem;
            }
            
            .btn-hero {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }

        .logo-cs{
            width: 320px;
            padding: 20px 0 0 0;
            font-size: 20px;
            font-weight: 600;
            color: #027f66;
        }
        .lead-text{
            font-size: 1rem;
            color: #ff0000;
        }
        .product-title-cs{
            background: #1ABC9C;
            color: #ffffff;
        }
        .product-title-cs:hover{
            background: #008a6e;
        }
        .product-title-cs a{
           
            color: #ffffff;
        }
        .product-title-cs a:hover{
            color: #ffffff;
        }


        /* start why chose us section  */
          .why-choose-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding:0 0 80px 0;
        }
        
        .section-title {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #1ABC9C, #00a080);
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: #6c757d;
            font-size: 1rem;
            margin-bottom: 50px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .advantage-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg,  #1ABC9C, #00a080);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .advantage-card:hover::before {
            transform: scaleX(1);
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .advantage-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg,  #1ABC9C, #00a080);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
        }
        
        .advantage-title {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        
        .advantage-description {
            color: #6c757d;
            line-height: 1.7;
            font-size: 1rem;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 60px 0;
            margin-top: 80px;
        }
        
        .cta-title {
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-button {
            background: linear-gradient(45deg,  #1ABC9C, #00a080);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
            background: linear-gradient(45deg, #1ABC9C, #00a080);
        }
        
        .stats-row {
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin: 50px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #00a080;
            display: block;
            line-height: 1;
        }
        
        .stat-label {
            color: #6c757d;
            font-weight: 500;
            margin-top: 10px;
        }
        
        @media (max-width: 768px) {
            .why-choose-section {
                padding: 60px 0;
            }
            
            .advantage-card {
                margin-bottom: 30px;
                padding: 30px 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-section {
                padding: 40px 0;
                margin-top: 60px;
            }
        }

        /* Start contact us page styles  */
         .contact-section {
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
            padding: 10px 0 10px 0;
        }
        .contact-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        .contact-card:hover {
            transform: translateY(-5px);
        }
        .section-title {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(45deg, #1ABC9C, #00a080);
        }
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .contact-info-item:hover {
            background: #e3f2fd;
            transform: translateX(5px);
        }
        .contact-icon {
            background: linear-gradient(45deg, #1ABC9C, #00a080);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1rem;
        }
        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 15px;
            transition: border-color 0.3s ease;
        }
        .form-control:focus {
            border-color: #00a080;
            box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
        }
        .btn-custom {
            background: linear-gradient(45deg, #1ABC9C, #00a080);
            border: none;
            padding: 15px 40px;
            border-radius: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        .btn-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,123,255,0.3);
        }
        .product-highlight {
            background: linear-gradient(45deg,  #1ABC9C, #00a080);
            color: white;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.9rem;
            margin: 0 5px;
        }
        .intro-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #6c757d;
        }