 .slider-container {
            position: relative;
            width: 100%;
            max-width: 1920px;
            /* height: 700px; */
            height: 100%;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 0;
            /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2); */
        }

        .slider {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .slide {
            position: relative;
            width: 25%;
            height: 100%;
            overflow: hidden;
        }

        .slide-content {
            position: absolute;
            top: 25%;
            left: 0;
            width: 100%;
            padding: 50px;
            color: white;
            text-align: center;
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.6s ease 0.3s;
        }

        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        .slide-content h1{
            font-size: 62px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .slide-content p{
            width: 50%;
            margin: auto;
            font-size: 18px;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .slide:hover img {
            transform: scale(1.05);
        }

        .navigation {
            position: absolute;
            bottom: 30px;
            left: 45%;
            transform: translatey(-50%);
            display: flex;
            z-index: 10;
            justify-content: center;
        }

        .dot {
            width: 15px;
            height: 15px;
            margin: 0 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
        }

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .arrow:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .arrow.prev {
            left: 30px;
        }

        .arrow.next {
            right: 30px;
        }

        .arrow i {
            font-size: 24px;
            color: white;
        }

        .btn {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 30px;
            background: #ff5e62;
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            text-shadow: none;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: #ff3a3f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .Ananta-group{
            text-align: center;
            
        }
        .Ananta-group p{
                line-height: 30px;
        }
        .inside-one{
            position: relative;
        }
        .verticle_-line{
            width: 1px;
            height: 100%;
            background-image: url("./images/Line 309.png");
            /* background: #ffffff; */
            opacity: 0.5;
            position: absolute;
            top: 0;
            right: 18px;
        }
           

        @media (max-width: 768px) {
            .slider-container {
                height: 400px;
            }
            
            .slide-content {
                padding: 30px;
            }

            .slider-container h1{
                font-size: 32px;
            }

            .slide-content p {
                width: 100%;
                margin: auto;
                font-size: 16px;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            p {
                font-size: 1rem;
                max-width: 100%;
            }
            
            .arrow {
                width: 40px;
                height: 40px;
            }

            .navigation {
                    left: 40% !important;
                }
        }

         @media (max-width: 500px) {

            .brand-logo{
                width: 200px;
                height: 50px;
            }

            .navigation {
                left: 34% !important;
            }

            .slide-content p {
                width: 100%;
                font-size: 15px;
            }
            .arrow.prev,.arrow.next{
                display: none;
            }

            .slide-content {
                padding: 20px;
            }

            .slider-container h1{
                font-size: 28px;
            }
            #about{
                padding-top: 5rem ;
                padding-bottom: 3rem;
            }
            #services{
                padding-top: 0 ;
                padding-bottom: 5rem;
            }
            #brands-slid{
                padding-bottom: 2rem;
            }
            .verticle_-line{
                display: none;
            }
            .ananta-associates{
                width: 75%;
            }
            .fr-small{
                font-size: 1.5rem !important;
            }
            .works p{
                font-size: 14px;
            }
            .fs-al{
                border: none;
            }
            .fs-al::before {
                display: none;
            }
            .title010{
                border-bottom: 4px solid #ff772f;
                width: 246px;
            }
             .title012{
                border-bottom: 4px solid #ff772f;
                width: 318px;
            }

         }

          @media (max-width: 769px) {
                .navigation {
                    display: none;
                }

                .brand-logo{
                    width: 200px;
                    height: 50px;
                }

                header nav a{
                    font-size: 14px;
                }

                 #about{
                    padding-top: 5rem ;
                    padding-bottom: 3rem;
                }
                #services{
                    padding-top: 0 ;
                    padding-bottom: 5rem;
                }
                #brands-slid{
                    padding-bottom: 2rem;
                }
                .verticle_-line{
                    display: none;
                }
                
                .fr-small{
                    font-size: 1.5rem !important;
                }
                .works p{
                    font-size: 14px;
                }
                .fs-al{
                    border: none;
                }
                .fs-al::before {
                    display: none;
                }
        }