/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --primary-blue: #4A90E2;
    /* Trust, Reliability */
    --primary-dark: #357ABD;
    /* Darker shade for hover */
    --accent-green: #7ED321;
    /* Care, Growth */
    --bg-warm-white: #F9FAFB;
    /* Clean Background */
    --bg-beige: #F5F5DC;
    /* Warmth */
    --text-dark: #333333;
    /* Readability */
    --text-muted: #666666;
    --white: #ffffff;

    /* Shadows & Radius */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    /* New larger shadow */
    --border-radius: 12px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-warm-white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin-left: 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue) !important;
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-accent-custom {
    background-color: var(--accent-green);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(126, 211, 33, 0.3);
}

.btn-accent-custom:hover {
    background-color: #6EB61C;
    /* Darker green */
    transform: translateY(-2px);
    color: var(--white);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Standard Feature Cards */
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 144, 226, 0.1);
    color: var(--primary-blue);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* UNIQUE WIDGET DESIGN (Targeting Core Values / Big Widgets) */
.unique-widget-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Subtle border */
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.unique-widget-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    transition: height 0.3s ease;
    z-index: -1;
}

.unique-widget-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.unique-widget-card:hover::before {
    height: 100%;
    /* Fill effect on hover */
    opacity: 0.05;
}

.unique-widget-card .icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-size: 2.5rem;
    color: var(--primary-blue);
    position: relative;
    z-index: 2;
}

.unique-widget-card:nth-child(2) .icon-wrapper {
    color: var(--accent-green);
}

.unique-widget-card:nth-child(3) .icon-wrapper {
    color: #ffd700;
    /* Gold for Excellence */
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 4rem 0 2rem;
}

footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
}