
        
        .container {
            width: 100%;
        }
        
     
        
        .carousel-container {
            width: 100%;
            position: relative;
            overflow: hidden;
            background-color: #f8cd02;
            height: 772px;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }
        
        .carousel-slide.active {
            opacity: 1;
            z-index: 2;
        }
        
        .carousel-slide img {
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            color: white;
            padding: 40px 30px 30px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.3s;
        }
        
        .carousel-slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
        }
        
		.flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
	color:#000;
    padding: 15px;
    width: 800px;margin: 15% auto;
    font-size: 100px;
    font-weight: bold;
}
.right-image {
    width: 100px;
    object-fit: cover;
}        .slide-content h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.4s;
        }
        
        .carousel-slide.active .slide-content h3 {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-content p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.5s;
        }
        
        .carousel-slide.active .slide-content p {
            opacity: 1;
            transform: translateY(0);
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.9);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            opacity: 0.8;
        }
        
        .carousel-btn:hover {
            background-color: white;
            transform: translateY(-50%) scale(1.15);
            opacity: 1;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
        }
        
        .carousel-btn.prev {
            left: 25px;
        }
        
        .carousel-btn.next {
            right: 25px;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 25px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
            z-index: 10;
        }
        
        .indicator {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .indicator::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #6a11cb, #2575fc);
            border-radius: 50%;
            transform: scale(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .indicator.active::after {
            transform: scale(1);
        }
        
        .indicator.active {
            border-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
            box-shadow: 0 0 15px rgba(106, 17, 203, 0.5);
        }
        
        .indicator:hover {
            transform: scale(1.1);
            background-color: rgba(255, 255, 255, 0.7);
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-top: 40px;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 16px;
            padding: 25px;
            width: 250px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .feature-card:nth-child(1) {
            transition-delay: 0.1s;
        }
        
        .feature-card:nth-child(2) {
            transition-delay: 0.2s;
        }
        
        .feature-card:nth-child(3) {
            transition-delay: 0.3s;
        }
        
        .feature-card i {
            font-size: 2.8rem;
            background: linear-gradient(45deg, #6a11cb, #2575fc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
            color: #333;
            font-size: 1.4rem;
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
        }
        
        .instructions {
            background-color: white;
            border-radius: 16px;
            padding: 30px;
            margin-top: 40px;
            max-width: 800px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.5s;
        }
        
        .instructions.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .instructions h3 {
            margin-bottom: 20px;
            color: #333;
            text-align: center;
            font-size: 1.6rem;
        }
        
        .instructions ul {
            padding-left: 25px;
            line-height: 1.7;
        }
        
        .instructions li {
            margin-bottom: 12px;
            color: #555;
            font-size: 1.05rem;
            padding-left: 10px;
        }
        
        .instructions li strong {
            color: #6a11cb;
        }
        
        .gradient-effect {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 3;
            pointer-events: none;
            opacity: 0;
            transition: opacity 1s ease;
            background: #f8cd02;
        }
        
        .gradient-effect.active {
            opacity: 1;
            animation: gradientPulse 1.5s ease;
        }
        
        @keyframes gradientPulse {
            0% { opacity: 0; }
            50% { opacity: 0.3; }
            100% { opacity: 0; }
        }
        
     
        /* ÏìÓ¦Ê½Éè¼Æ */
        @media (max-width: 768px) {
            .carousel-container {
                height: 400px;
            }
            
            .carousel-btn {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .slide-content {
                padding: 30px 20px 20px;
            }
            
            .slide-content h3 {
                font-size: 1.5rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .indicator {
                width: 14px;
                height: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .carousel-container {
                height: 350px;
            }
            
            .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .carousel-btn.prev {
                left: 15px;
            }
            
            .carousel-btn.next {
                right: 15px;
            }
            
            .slide-content {
                padding: 25px 15px 15px;
            }
            
            .slide-content h3 {
                font-size: 1.3rem;
            }
            
            .slide-content p {
                font-size: 0.9rem;
            }
            
            .feature-card {
                width: 100%;
            }
            
            .instructions {
                padding: 25px 20px;
            }
        }



 #fluentform_8{background-color: #f8cd02; padding: 50px;font-family: Poppins;}
.fluentform_8 .ff-btn-submit:not(.ff_btn_no_style){    background-color: #53444a!important; width: 100%;}
.ff-default .ff-el-input--label label{font-weight: 400!important;font-size: 14px;}
.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label>span:hover{color: #000!important;font-weight: 400;}
.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff_item_selected label>span{    background-color: #e7bf0a!important;
    border-color: #e7bf0a!important;
    box-shadow: -1px 0 0 0 #e7bf0a!important;
    color: #000!important;
    font-size: 14px;
    font-weight: 400!important;}
    .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label>span{border:0px;}
    .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check{    margin: 0 5px 10px;}
    .fluentform .ff-el-group{font-weight: 400;
    font-size: 16px;}               
	.fluentform .ff-el-form-control{font-weight: 400!important;    font-size: 12px!important; border:0px!important;}
	.fluentform .ff-el-input--label label{ color:#000;}
	
	
	/* CSS Document */

.spin {
  animation: spin 5s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pulse {
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
     
.anniu{width: 100%;
    color: #fff;
    background-color: #53444a!important;}     