.hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #f8faff 0%, #f1f4f9 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: linear-gradient(45deg, #4299e1, #667eea);
            border-radius: 50%;
            opacity: 0.1;
        }

        .hero-carousel .owl-stage-outer {
            padding: 60px 0;
        }
@media (max-width:991px){
    .hero-carousel .owl-stage-outer{
        padding: 30px 0;
    }
}
        .hero-slide {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .slide-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 60px;
            gap: 40px;
        }

        .slide-text {
            padding-right: 40px;
        }

        .slide-subtitle {
            font-size: 1.1rem;
            color: #4299e1;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards;
        }

        .slide-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease 0.2s forwards;
        }

        .slide-description {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease 0.4s forwards;
        }

        .slide-buttons {
            display: flex;
            gap: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease 0.6s forwards;
        }

        .primary-btn {
            padding: 15px 35px;
            background: linear-gradient(45deg, #4299e1, #667eea);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-wrap-mode: nowrap;
        }

        .secondary-btn {
            padding: 15px 35px;
            background: white;
            color: #4299e1;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid #4299e1;
            text-wrap-mode: nowrap;
        }

        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(66, 153, 225, 0.2);
            color: white;
        }

        .secondary-btn:hover {
            background: #4299e1;
            color: white;
            transform: translateY(-3px);
        }

        .slide-image {
            position: relative;
        }

        .slide-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            opacity: 0;
            transform: translateX(20px);
            animation: fadeInRight 0.5s ease 0.4s forwards;
        }

        .owl-dots {
            margin-top: 30px !important;
        }

        .owl-dot span {
            width: 12px !important;
            height: 12px !important;
            background: #4299e1 !important;
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .owl-dot.active span {
            opacity: 1;
            transform: scale(1.2);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 991px) {
            .slide-content {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 30px 15px;
            }

            .slide-text {
                padding-right: 0;
                order: 1;
            }

            .slide-image {
                order: 2;
            }

            .slide-buttons {
                justify-content: center;
            }

            .slide-title {
                font-size: 2.5rem;
            }
        }
        @media (max-width:991px){
             .owl-carousel .owl-item .slide-image img{
                display: inline;
                width: 70%;
            }
        }
        @media (max-width:767px){
            .slide-title{
                font-size: 30px;
                margin-bottom: 15px;
            }
            .slide-description{
                font-size: 15px;
            }
        }
        @media (max-width:543px){
            .slide-title{
                font-size: 26px;
                margin-bottom: 15px;
            }
            .owl-carousel .owl-item .slide-image img{
                display: inline;
                width: 60%;
            }
            .secondary-btn{
                padding: 15px 17px;
            }
            .primary-btn{
                padding: 15px 20px;
            }
            .slide-buttons{
                gap: 7px;
            }
        }
        @media (max-width:435px){
            .slide-title{
                font-size: 23px;
                margin-bottom: 15px;
            }
            .owl-carousel .owl-item .slide-image img{
                display: inline;
                width: 55%;
            }
            .slide-subtitle{
                font-size: 15px;
                margin-bottom: 10px;
            }
        }
        @media (max-width:375px){
            .primary-btn{
                padding: 15px 12px;
            }
            .slide-title{
                font-size: 18px;
                margin-bottom: 10px;
            }
        }
        