:root {
    --primary-emerald: #218561;
    --dark-emerald: #059669;
    --light-emerald: #ecfdf5;
    --amber: #d97706;
    --light-amber: #fef3c7;
    --grey-color: #
}

body {
    font-family: 'Poppins', sans-serif;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;

}

.primary {
    background: linear-gradient(135deg, var(--primary-emerald), var(--dark-emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.secondary {
    background: linear-gradient(135deg, var(--amber), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-emerald), var(--dark-emerald));
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 10px 25px;
}

.btn-primary:hover {
    opacity: 0.9;
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--amber), var(--amber));
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 10px 25px;
}

.btn-outline-emerald {
    border-color: var(--amber);
    color: var(--amber);
    font-size: 14px;
    padding: 10px 25px;
    border: 2px solid;
}

.btn-outline-emerald:hover {
    background-color: var(--light-amber);
    color: var(--amber);
}

.btn-outline-primary-emerald {
    border-color: var(--primary-emerald);
    color: var(--primary-emerald);
    font-size: 14px;
    padding: 10px 25px;
    border: 2px solid;
}

.btn-outline-primary-emerald:hover {
    background-color: var(--light-emerald);
    color: var(--primary-emerald);
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-emerald), var(--dark-emerald));
}

.amber-gradient {
    background: linear-gradient(to right, var(--amber), #ea580c);
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    background: #fffcfa;
    border-radius: 15px;

}

.card .image-container img {
    width: 80px;
    height: 80px;
}

.card ul {
    list-style: disc;
    padding-left: 15px;
}

.card ul li {
    font-size: 16px;
    color: var(--bs-secondary-color) !important;
}

.card ul li::marker {
    color: var(--amber);
    /* 🎨 change bullet color */
    font-size: 18px;
    /* optional */
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card2 {
    background: #f5fff6;
    border-radius: 15px;

}

.card2 .image-container img {
    width: 80px;
    height: 80px;
}

.card2 ul {
    list-style: disc;
    padding-left: 15px;
}

.card2 ul li {
    font-size: 16px;
    color: var(--bs-secondary-color) !important;
}

.card2 ul li::marker {
    color: var(--primary-emerald);
    /* 🎨 change bullet color */
    font-size: 18px;
    /* optional */
}

.card-hover2 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-bg {
    background: linear-gradient(135deg, var(--light-emerald) 0%, #ffffff 50%, #f0fdf4 100%);
}

.bg-emerald-light {
    background-color: var(--light-emerald);
}

.text-emerald {
    color: var(--primary-emerald);
}

.border-emerald {
    border-color: var(--primary-emerald);
}



.section-padding {
    padding: 6rem 0;
}

.bg-gradient-gray {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.bg-gradient-emerald {
    background: linear-gradient(to bottom, var(--light-emerald), #ffffff);
}

.bg-blur {
    backdrop-filter: blur(10px);
}

.bg-blur-light {
    backdrop-filter: blur(5px);
}

.icon-container {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container i{
    font-size: 25px;
}

.bg-blob-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(to bottom right, #a7f3d0, #6ee7b7);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
    z-index: 0;
}

.bg-blob-2 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(to top left, #fed7aa, #fdba74);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
    z-index: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Mega Menu Styles */
.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 1rem 0;
    background: white;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
}

.mega-menu .container .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Creates 4 columns */
}

.mega-menu .container {
    max-width: 1200px;
}

.mega-menu .dropdown-header {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--primary-emerald);
}

.mega-menu .dropdown-item {
    padding: 0.25rem 0;
    color: #333;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.mega-menu .dropdown-item:hover {
    background: none;
    color: var(--primary-emerald);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mega-menu .container .row {
        grid-template-columns: 1fr;
        /* Collapses to a single column */
    }
}

/* Only for large screens */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }

  .navbar .dropdown .dropdown-toggle::after {
    transition: transform 0.3s;
  }

  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}