/* Styles Revision 1 - Unique Light Theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap'); :root {
    --primary-color: #7fc142;
    /* Apple Green */
    --secondary-color: #dc3d87;
    /* Magenta */
    --text-dark: #2c3e50;
    --text-muted: #7f8c8d;
    --bg-light: #ffffff;
    --bg-light-alt: #f9fbfd;
    --font-1: 'Roboto', sans-serif;
    --font-2: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-1);
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none
}

/* Utilities */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-light-alt {
    background-color: var(--bg-light-alt);
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 0.1rem solid #ebebeb;
}

.nav-link {
    font-weight: 400;
    color: #000;
    font-size: 1.165rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
}

.btn-cta {
    background-color: var(--secondary-color);
    border: none;
    color: white;
    display: inline-flex;
    align-items: center;
    border-radius: 99rem;
    padding: 12px 20px;
    line-height: 1.6;
}

.btn-cta:after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12.47 6.47a.75.75 0 0 1 1.06 0l5 5a.75.75 0 0 1 0 1.06l-5 5a.75.75 0 1 1-1.06-1.06l3.72-3.72H6a.75.75 0 0 1 0-1.5h10.19l-3.72-3.72a.75.75 0 0 1 0-1.06'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    margin-left: 8px;
}

.btn-cta:hover {
    background-color: #c23375;
    color: white;
}

/* Hero */
.hero-wrapper {
    background: radial-gradient(circle at top right, rgba(127, 193, 66, 0.1), transparent 40%);
    padding-top: 10em;
    background-color: #ffffff;
}

.hero-title {
    background: linear-gradient(45deg, var(--text-dark), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-img-container {
    border: 10px solid #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.floating-card {
    border-left: 4px solid var(--primary-color);
}

/* Sections */
.section-padding {
    padding: 80px 0 50px;
}

.arrow-link i {
    transition: transform 0.3s ease;
}

.arrow-link:hover i {
    transform: translateX(5px);
}

/* Program Cards */
.program-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.program-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.program-img-wrapper img {
    transition: transform 0.5s ease;
}

.program-card:hover .program-img-wrapper img {
    transform: scale(1.1);
}

.overlay-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: white;
    color: var(--primary-color);
}

.grayscale {
    filter: grayscale(100%);
}

.invert {
    filter: invert(1);
}

.hover-white:hover {
    color: #fff !important;
}

.home-aboutcontent {
    text-align: center;
    color: #010101d9;
}

.home-aboutcontent h2 {
    font-size: clamp(1.95rem, 3vw, 3rem);
    font-weight: 440;
    color: #010101d9;
    margin-bottom: 12px;
    line-height: 1.5;
}

.home-aboutcontent h2 span {
    font-weight: 600;
    color: var(--primary-color);
}

.home-aboutcontent p {
    font-size: 1.75rem;
    opacity: 90%;
}

.home-aboutcontent .smallp {
    font-size: 1.25rem;
}

/* zz */
.service-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: transparent;
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.bg-primary-soft {
    background: rgba(127, 193, 66, 0.1);
    color: var(--primary);
}

.bg-secondary-soft {
    background: rgba(220, 61, 135, 0.1);
    color: var(--secondary);
}

p.lead {
    font-weight: 440
}

.service-content li {
    font-size: 18px;
}

/* Custom Mobile Sidebar (Left) */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    /* Hidden by default */
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-sidebar.open {
    left: 0;
}

.sidebar-contact h6 {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Backdrop */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.sidebar-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Custom Toggler & Close */
.btn-close-custom {
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.btn-close-custom:hover {
    transform: rotate(90deg);
    opacity: 1;
}

.navbar-toggler {
    color: #e8e8e8;
    background-color: var(--text-dark);
    padding: 7px 12px !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

@media (min-width: 992px) {
    .mobile-sidebar {
        display: none;
    }
}

@media (max-width: 992px) {
    .home-aboutcontent p {
        font-size: 1.15rem;
        opacity: 90%;
    }

    .hero-wrapper {
        padding-top: 8em;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    color: currentColor;
}
