:where([class^="ri-"])::before {
    content: "\f3c2";
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

:root {
    --bs-primary: #cc104c;
    --bs-secondary: #40494b;
    --bs-primary-rgb: 204, 16, 76;
    --bs-secondary-rgb: 64, 73, 75;
}

.logo-text {
    font-family: 'Pacifico', serif;
    background: linear-gradient(90deg, #cc104c, #ec531b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-orange {
    color: #ec531b;
}

.text-red {
    color: #cc104c;
}

.text-blue {
    color: #81ccde;
}

.text-green {
    color: #4caf50;
}

.text-yellow {
    color: #fdd835;
}

.text-purple {
    color: #9c27b0;
}

.nav-item {
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--bs-primary);
    transition: width 0.3s ease;
}

.cst-style li a {
    text-decoration: none !important;
}

.nav-item:hover::after {
    width: 100%;
}

.hero-bg {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
}

.course-card {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.course-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 20px 25px -5px rgba(204, 16, 76, 0.1), 0 10px 10px -5px rgba(204, 16, 76, 0.04);
}

.gallery-item {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.feature-card {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.contact-input {
    border-bottom: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: var(--bs-primary);
}

.contact-label {
    transition: all 0.3s ease;
    transform-origin: left;
}

.contact-input:focus+.contact-label,
.contact-input:not(:placeholder-shown)+.contact-label {
    transform: translateY(-20px) scale(0.8);
    color: var(--bs-primary);
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: var(--bs-primary);
}

.wave-separator {
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23cc104c'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23cc104c'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23cc104c'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #cc104c, #ec531b);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--bs-primary);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

.float-animation-delay-1 {
    animation-delay: 0.5s;
}

.float-animation-delay-2 {
    animation-delay: 1s;
}

.float-animation-delay-3 {
    animation-delay: 1.5s;
}

.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--bs-primary);
    border-radius: 4px;
    outline: none;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.custom-checkbox:checked {
    background-color: var(--bs-primary);
}

.custom-checkbox:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.9);
    border-color: rgba(var(--bs-primary-rgb), 0.9);
}

.btn-outline-primary {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

.btn-outline-primary:hover {
    background-color: var(--bs-primary);
    color: white;
}

.btn-outline-secondary {
    border-color: var(--bs-secondary);
    color: var(--bs-secondary);
}

.btn-outline-secondary:hover {
    background-color: var(--bs-secondary);
    color: white;
}

.navbar {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    width: 80px;
}

.navbar-nav .nav-link {
    color: var(--bs-secondary);
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: var(--bs-primary);
}

.card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.card-img-top {
    height: 20rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--bs-primary);
}
.bottom-15 {
    bottom: 15% !important;
}
.end-5 {
    right: 5% !important;
}