

.wsSabitARA{padding:18px 18px;position:fixed;z-index:1009;bottom:75px;right:10px;background-color:#f33056;color:#fff;font-size:16px;font-weight:500;line-height:20px;
                 -webkit-border-radius: 16px;
                 -moz-border-radius: 16px;
                 border-radius: 16px;

                 -webkit-transition: all 0.1s ease;
                 -moz-transition: all 0.1s ease;
                 -o-transition: all 0.1s ease;
                 -ms-transition: all 0.1s ease;
                 transition: all 0.1s ease;
}
.wsSabitARA i{float:left;margin-right:10px;font-size:20px;}
            
      
        
        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .tagline {
            font-size: 1.2rem;
            font-weight: 300;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .content {
            padding: 40px;
        }
        
        .intro {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .intro p {
            font-size: 1.1rem;
            max-width: 900px;
            margin: 0 auto 20px;
        }
        
        .highlight {
            background: linear-gradient(120deg, #fceabb 0%, #f8b500 100%);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
            border-left: 5px solid #f8b500;
        }

	   .highlight {
            background: linear-gradient(120deg, #fceabb 0%, #f8b500 100%);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
            border-left: 5px solid #f8b500;
        }
        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }
        
        .feature-card {
            flex: 1;
            min-width: 300px;
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
		        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-card h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .process {
            margin: 50px 0;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .step {
            flex-basis: calc(25% - 20px);
            text-align: center;
            padding: 20px;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: #4a6491;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .why-us {
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            color: white;
            padding: 50px 40px;
            border-radius: 10px;
            margin: 50px 0;
        }
        
        .why-us h2 {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .values {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        
        .value {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 10px;
            flex: 1;
            min-width: 300px;
            text-align: center;
            backdrop-filter: blur(10px);
        }
        
        .value h3 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .cta {
            text-align: center;
            padding: 50px 20px;
            background: #f8f9fa;
            border-radius: 10px;
        }
        
        .cta h2 {
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .btn {
            display: inline-block;
            background: #4a6491;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 20px;
            transition: background 0.3s ease;
        }
        
        .btn:hover {
            background: #2c3e50;
        }
        
        footer {
            text-align: center;
            padding: 30px;
            background: #2c3e50;
            color: white;
        }
        
        @media (max-width: 768px) {
            .features, .process-steps, .values {
                flex-direction: column;
            }
            
            .step {
                flex-basis: 100%;
            }
            
            h1 {
                font-size: 2.2rem;
            }
        }

		        h2 {
            color: white;

        }
		            .gallery {
                grid-template-columns: 1fr;
            }
			        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            aspect-ratio: 4/3;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.05);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        .gallery-caption h3 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .gallery-caption p {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .lightbox.open {
            display: flex;
            opacity: 1;
        }
        
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            margin: 0 auto;
        }
        
        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2rem;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .lightbox-close:hover {
            color: #fdbb2d;
        }
        
        .lightbox-caption {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            padding: 10px;
            background: rgba(0, 0, 0, 0.7);
        }
        
        footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .gallery {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 15px;
            }
        }
		 .video-controls {
                flex-wrap: wrap;
            }
            
            .control-btn {
                flex: 1;
                justify-content: center;
            }
            
            .video-thumbnail {
                width: 120px;
            }
			        .video-container {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            margin-bottom: 20px;
            background: #000;
        }
        
        .video-player {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 10px;
        }
        
        .video-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }
        
        .control-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .control-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }
        
        .video-info {
            margin-top: 20px;
            text-align: center;
        }
        
        .video-info h2 {
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .video-info p {
            line-height: 1.6;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .video-list {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            overflow-x: auto;
            padding: 10px 5px;
            scrollbar-width: thin;
        }
        
        .video-thumbnail {
            flex: 0 0 auto;
            width: 150px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .video-thumbnail:hover {
            transform: scale(1.05);
        }
        
        .video-thumbnail img {
            width: 100%;
            height: 90px;
            object-fit: cover;
            display: block;
        }
        
        .video-thumbnail p {
            padding: 8px;
            background: rgba(0, 0, 0, 0.7);
            font-size: 0.8rem;
            text-align: center;
        }
        
        .video-thumbnail.active {
            outline: 3px solid #4facfe;
        }