/* CSS to replace the Dashicons icon with the custom SVG icon */
:root {
	--white-color: #FFFFFF;
	--yellow-color: #FFFFFF;
	--green-color: #FFFFFF;
	--green2-color: #FFFFFF;
	--purple-color: #FFFFFF;
  }

.dashicons-admin-comments:before {
    content: ""!important;
    display: inline-block;
    background: url('../../../assets/images/aiclogo.svg') no-repeat center center!important;
    background-size: contain;
    width: 20px; /* Adjust the width as needed */
    height: 20px; /* Adjust the height as needed */
    margin-right: 4px; /* Adjust the spacing as needed */
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: inherit;
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
    z-index: 1;
}

.swiper-pagination-bullet-active {
    background:var(--purple-color);
}

.hero-section {
    background-color: #3526C6; /* Dark background color */
    color: white;
    max-width: 1300px;
    margin:0 auto;
    overflow: hidden;
}

.hero-container {
    position: relative;
    display: flex;
    align-items: center;
}
.hero-content {
    position: absolute;
    z-index: 1;

    flex-direction: column;
    justify-content: center;
    color: white;
    width: 400px;
    height: auto;
    left: 5%;
    top: 15%;
    padding: 60px;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3526C6;
    opacity: 0.5;
    color: #fff !important;
    z-index: -1;
}

.hero-content .hero-title {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
}
.hero-content .hero-title .highlight {
    color: #FFC107; /* Highlight color */
}
.hero-content .hero-description {
    font-size: 14px;
    margin-bottom: 20px;
}
.hero-buttons {
    display: flex;
    align-items: center;
}
.hero-buttons .btn {
    padding: 10px 20px;
    margin-right: 15px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.hero-buttons .btn-primary {
    background-color: #13ACB7; /* Button color */
}
.hero-buttons .btn-primary:hover {
    background-color: #138496;
}
.hero-buttons .btn-secondary {
    background-color: transparent;
    border: 2px solid white;
}
.hero-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.hero-buttons .btn-secondary i {
    margin-right: 8px;
}
.hero-image {
    flex: 1;
    height: 100%;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-content .intro {
    color: var(--white-color); /* Intro text color */
    font-size: 16px;
    margin-bottom: 10px;
}

.hero-content .intro:before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    background-color: #A415A8;
    margin-right: 8px; /* Adjust as needed for spacing between the square and the text */
    /*vertical-align: middle; /* Align the square with the middle of the text */
}

.hero-buttons .btn-primary {
    background-color: #13ACB7; /* Button color */
    border-color: #13ACB7;
}

.hero-buttons .btn-secondary {
    background-color: #A415A8; /* Secondary button color */
    border-color: #A415A8;
    display: flex;
    align-items: center;
}

.hero-buttons .btn-secondary i {
    margin-right: 5px;
}

@media (max-width: 1200px) {
    .hero-content {
      top:0;
      left:0;
    }
    
}

@media (max-width: 1030px) {
    
    .hero-section {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-content {
        position:relative;
    }
    .hero-buttons .btn {
        margin-bottom: 10px;
    }

    .hero-image img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

}

@media (max-width: 780px) {

    .hero-image {
        display: none;
    }
    
    .hero-content .hero-title {
        font-size:30px;
    }
    
    .hero-content .intro {
        font-size:14px;
    }
    
    .hero-content .hero-description {
        font-size:12px;
    }
}



    .swiper-container {
        width: 100%;
        height: 100%;
    }

