@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}


.c-container{
    @apply mx-auto max-w-7xl px-5 sm:px-6 lg:px-14 2xl:container;
}

@theme{
  --color-primary: #8F297D;
  --color-secondary: #38052F;
  --color-grey:#727272;
  --color-white-smoke:#ECF0F1;
  --color-yellow:#F9B124;
}
.text-content {
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}
.carousel-container [data-carousel-item] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    transition: opacity 1000ms ease-in-out;
    pointer-events: none; 
}

.carousel-container [data-carousel-item].active {
    opacity: 1;
    z-index: 10;
    pointer-events: auto; 
}

.carousel-btn {
    z-index: 50 !important;
}
.active-dot {
    background-color: white !important;
    width: 35px !important; 
}
.dot-indicator { outline: none; border: none; }
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}
.list-style ul {
    list-style: none;
    padding-left: 0;
}

.list-style ul li {
    display: flex;
    align-items: flex-start; 
    gap: 10px;
    line-height: 2.5;
}

.list-style ul li::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url('../images/check.png');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-top: 10px; 
}

.mission-list-style ul {
    list-style: none;
    padding-left: 0;
}

.mission-list-style ul li {
    display: flex;
    align-items: flex-start; 
    gap: 5px;
    margin-bottom: 18px;
}

.mission-list-style ul li::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url('../images/about/square.png');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-top:2px;
}

.menu{
    @apply  flex hidden lg:flex md:space-x-8 xl:space-x-12 font-medium;
}
.mobile-menu{
    @apply  font-medium py-3 border-b border-gray-100;
}

.current-menu-item > a,
.current_page_item > a {
    color: #8F297D; 
}

.menu-toggle {
	position: relative;
	width: 40px;
	height: 30px;
	margin: 25px;
}
.menu-toggle span {
	margin: 0 auto;
	position: relative;
	transition-duration: 0s;
	transition-delay: .2s;
    transition: background-color 0.3s;
}
.menu-toggle span:before, .menu-toggle span:after {
	position: absolute;
	content: '';
}
.menu-toggle span, .menu-toggle span:before, .menu-toggle span:after {
	width: 35px;
	height: 3px;
	background-color: #1A1A1A;
	display: block;
    opacity: 1;
}
.menu-toggle span:before {
	margin-top: -12px;
	transition-property: margin, transform;
	transition-duration: .2s;
	transition-delay: .2s, 0;  
}
.menu-toggle span:after {
	margin-top: 12px;
	transition-property: margin, transform;
	transition-duration: .2s;
	transition-delay: .2s, 0;  
}

.menu-toggle-active span {
    background-color: rgba(0,0,0,0);
	transition: 0.3s background-color;
}
.menu-toggle-active span:before {
	margin-top: 0;
	transform: rotate(45deg);
	transition-delay: 0, .2s;
}
.menu-toggle-active span:after {
	margin-top: 0;
	transform: rotate(-45deg);
	transition-delay: 0, .2s;
}
.services-slider-bleed {
    position: relative;
    overflow: hidden;
    background-color:none;
}
.services-slider-bleed .services-swiper {
    width: calc(100% + (50vw - 50%));
  }

.services-swiper {
    width: 100%;
    overflow: visible;
    padding-right: 0;
    background-color:none;


}

/* Swiper required fix */
.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    height: auto;
    display: flex;
}

/* Mobile */
@media (max-width: 800px) {
    .services-swiper {
        width: 100%;
    }
}

/* Navigation buttons */
.c-slider-nav {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background:  #8F297D;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.c-slider-nav:hover {
    transform: translateY(-2px);
    background-color: #38052F;
    
}

.services-swiper-prev::before,
.services-swiper-next::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='white' d='M502.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l370.7 0-105.4 105.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z'/%3E%3C/svg%3E");
}

/* Left Arrow */
.services-swiper-prev::before {
    transform: rotate(180deg);
}