* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            /* background-color: #f8f9fa; */
            color: #2c3e50;
            line-height: 1.7;
        }
        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 20px;
            margin-top: 70px;
        }

        /* Section Styling */
        section {
            margin-bottom: 50px;
            padding: 20px 0;
        }

        /* Top Section - Text Left, Slider Right */
        .top-section {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
        }
        .text-content {
            flex: 1 1 40%;
            padding: 30px;
            /* background: #ffffff; */
            border-radius: 12px;
            /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
        }
        .slider-container {
            flex: 1 1 50%;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .text-content h1 {
            font-size: 2.4rem;
            margin-bottom: 15px;
            color: #1a1a1a;
            font-weight: 700;
            line-height: 1.3;
        }
        .text-content p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 25px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            background-color: transparent;
            color: #333;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-right: 12px;
            margin-bottom: 15px;
            cursor: pointer;
            border: 1px solid #333;
            font-size: 1rem;
        }
        .btn:hover {
            background-color: #333;
            color: #f8f9fa;
            transform: translateY(-2px);
            border-color: #007bff;
        }

      
        .btn i {
            margin: 8px;
        }


        .icon-btn {
            width: 48px;
            height: 48px;
            padding: 0;
            font-size: 1rem;
            border-radius: 50%;
            color: #333;
            border: 1px solid #333;
            box-shadow: 0px 1px 2px #333333be inset;
        }
        .icon-btn:hover {
            background-color: #333;
            color: white;
            border-color: #007bff;
        }

        .action-icons {
            display: flex;
            gap: 4px;
            margin-top: 10px;
        }

  .top-section .btn-1 i{
            margin: 12px;
        }


        /* Slider */
        .slider {
            position: relative;
            width: 100%;
            height: 420px;
            overflow: hidden;
        }
        .slides {
            display: flex;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .slide {
            min-width: 100%;
            height: 100%;
        }
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.4);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            font-size: 14px;
            transition: all 0.3s ease;
            backdrop-filter: blur(4px);
        }
        .slider-arrow:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: translateY(-50%) scale(1.1);
        }
        .prev { left: 20px; }
        .next { right: 20px; }

        /* Videos Section */
        .videos-section {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        .video-box {
            flex: 1 1 600px;
            max-width: 600px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        .video-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        }
        .video-box video {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Bottom Section */
        .bottom-section {
            display: flex;
            flex-wrap: wrap;
            /* background: white; */
            border-radius: 12px;
            overflow: hidden;
            /* box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1); */
        }
        .bottom-left, .bottom-right {
            flex: 1 1 50%;
            padding: 40px;
        }
        .bottom-left {
            display: flex;
            justify-content: center;
            align-items: center;
            border-right: 2px solid #000;
            /* background: #f8f9fa; */
        }
        .bottom-left img {
            max-width: 400px;
            width: 100%;
            height: auto;
            /* border-radius: 10px; */
            border-radius: 50%;
            border: 1px solid #3333336c;
            /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
        }
        .bottom-right h2 {
            font-size: 1.5rem;
            margin-bottom: 4px;
            color: #1a1a1a;
            font-weight: 600;
        }
        .bottom-right p {
            margin-bottom: 12px;
            color: #333;
            font-size: 1.05rem;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.92);
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(8px);
        }
        .modal-content {
            position: relative;
            max-width: 95%;
            max-height: 95%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }
        .modal-content video {
            width: 100%;
            height: auto;
            display: block;
        }
        .close {
            position: absolute;
            top: 20px;
            right: 25px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }
        .close:hover {
            background: rgba(220, 53, 69, 0.8);
            transform: scale(1);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .top-section {
                flex-direction: column;
            }
            .text-content, .slider-container {
                flex: 1 1 100%;
            }
            .slider {
                height: 300px;
            }
            .bottom-left, .bottom-right {
                flex: 1 1 100%;
            }
            .bottom-left {
                border-right: none;
                border-bottom: 2px solid #000;
                padding-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .text-content h1 {
                font-size: 2.2rem;
            }
            .slider {
                height: 250px;
            }
            .btn {
                padding: 10px 18px;
                font-size: 0.95rem;
            }
            .icon-btn {
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 15px;
            }
            .text-content, .bottom-left, .bottom-right {
                padding: 20px;
            }
            .slider {
                height: 200px;
            }
        }