*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.why-to-use .card{
    height: 100%;
}

.section-img {
    max-width: 100%;
    border-radius: 12px;
  }

  .small-cards img{
    max-width: 200px;
  }

.icon-box img{
    height: 70px;
    width: 70px;
}
.icon-box{
    margin-bottom: 10px ;
}

footer{
    margin-top: 70px;
}


:root {
    /* Light Theme Color Palette */
    --primary-color: #6F42C1; /* Vibrant Purple */
    --secondary-color: #E0E0E0; /* Light Grey */
    --accent-color: #00BCD4; /* Cyan/Teal */
    --text-color: #343A40; /* Dark Charcoal */
    --heading-color: #495057; /* Darker Grey for Headings */
    --body-bg: #F8F9FA; /* Off-white/Lightest Grey */
    --card-bg: #FFFFFF; /* Pure White */
    --footer-bg: #E9ECEF; /* Slightly darker light grey */
    --gradient-1: linear-gradient(45deg, #6F42C1, #8A2BE2); /* Purple to Blue Violet */
    --gradient-2: linear-gradient(135deg, #00BCD4, #6F42C1); /* Cyan to Purple */
}

body {
    padding-top: 80px;
    font-family: 'Poppins', sans-serif;
    background-color: var(--body-bg);
    color: var(--text-color);
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--body-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}
#emojiDisplay {
    letter-spacing: 0.5rem;
    transition: all 0.2s ease-in-out;
  }
/* Header/Navbar Styling */
.navbar {
    background-color: var(--card-bg); /* White background for fixed header */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--secondary-color);
    padding: 1rem 0;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    text-shadow: 0 0 5px rgba(111, 66, 193, 0.3);
}
.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--accent-color);
    transition: width 0.3s ease, left 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
    left: 0;
}
.navbar-toggler {
    border-color: var(--secondary-color);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236F42C1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Banner Section */
.hero-banner {
    background: var(--gradient-1);
    padding: 120px 0 80px; /* Adjust padding for fixed header */
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #fff; /* White text for banner */
}
.hero-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(30deg);
}
.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(-45deg);
}
.hero-banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.hero-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 30px;
}
.hero-banner .btn {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}
.hero-banner .btn:hover {
    background-color: #00acc1;
    border-color: #00acc1;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.5);
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

/* Content Sections (How To Use, Why To Use) */
.content-section {
    background-color: var(--card-bg);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.content-section img {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}
.content-section img:hover {
    transform: scale(1.02);
}
.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 20px;
}
.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}
.content-section ul {
    list-style: none;
    padding-left: 0;
}
.content-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-color);
}
.content-section ul li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Attractive Divider/CTA */
.attractive-divider {
    background: var(--gradient-2);
    padding: 60px 0;
    text-align: center;
    border-radius: 30px;
    margin: 80px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    color: #fff; /* White text for CTA */
}
.attractive-divider h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}
.attractive-divider .btn {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.attractive-divider .btn:hover {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Feature Cards */
.feature-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards are same height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.feature-card .icon-wrapper i {
    font-size: 2.2rem;
    color: #fff;
}
.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    flex-grow: 1; /* Allow description to take available space */
}

/* FAQ Accordion */
.accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--secondary-color);
    border-radius: 15px !important;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensure rounded corners apply */
}
.accordion-button {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 15px !important;
    padding: 18px 20px;
    transition: background-color 0.3s ease;
}
.accordion-button:not(.collapsed) {
    background-color: #5a3a9e !important; /* Slightly darker purple when open */
    color: #fff !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}
.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}
.accordion-body {
    background-color: var(--body-bg);
    color: var(--text-color);
    padding: 20px;
    border-top: 1px solid var(--secondary-color);
}
.accordion-button::after {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); /* White arrow */
}

/* Footer Styling */
.rare-footer {
    background-color: var(--footer-bg);
    padding: 60px 0 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: 80px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}
.rare-footer h5 {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 25px;
}
.rare-footer p, .rare-footer a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.rare-footer a:hover {
    color: var(--primary-color);
}
.rare-footer .social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.3s ease;
}
.rare-footer .social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}
.rare-footer .footer-bottom {
    border-top: 1px solid var(--secondary-color);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-banner {
        padding: 100px 0 60px;
    }
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    .hero-banner p {
        font-size: 1rem;
    }
    .section-padding {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .content-section {
        padding: 30px;
    }
    .content-section h2 {
        font-size: 1.7rem;
    }
    .attractive-divider {
        margin: 60px 0;
        padding: 40px 0;
    }
    .attractive-divider h3 {
        font-size: 1.8rem;
    }
    .feature-card {
        padding: 25px;
    }
}

footer .list-unstyled a{
    color: var(--primary-color);
}
.primary-color{
    color: var(--primary-color) !important;
}
.primary-bg{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
footer .social-icons i{
    color: var(--primary-color);
}