:root {
    --primary-blue: #0d6efd;
    --light-blue-bg: #f0f7ff;
    --dark-text: #2c3e50;
    --secondary-text: #6c757d;
    --border-radius: 12px;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #fff;
}

.custom-heading-font {
    font-family: 'Alice', serif;
    color: var(--dark-text);
}

.text-blue {
    color: var(--primary-blue) !important;
}

.bg-blue {
    background-color: var(--primary-blue) !important;
}

.bg-light-blue {
    background-color: var(--light-blue-bg) !important;
}

.bg-outline-blue {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.bg-outline-blue:hover {
    background-color: var(--primary-blue);
    color: #fff;
}

/* Consistent rounding */
.btn {
    border-radius: var(--border-radius) !important;
}

.card {
    border-radius: var(--border-radius) !important;
    border: none;
}

.badge {
    border-radius: 6px !important;
}

.rounded-pill {
    border-radius: 50px !important;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-color: var(--light-blue-bg);
    border-bottom-left-radius: 200px;
    z-index: -1;
}

/* Cards */
.grow-on-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.grow-on-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
}

.icon-box-55 {
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

/* Improved text spacing */
.hero-wrapper h1 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-wrapper .lead {
    line-height: 1.7;
    margin-bottom: 2rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-text {
    line-height: 1.6;
}

/* Sample Images */
.sample-img-container {
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.sample-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grow-on-hover:hover .sample-img-container img {
    transform: scale(1.05);
}

/* Stats section spacing */
.stats-section .col {
    padding: 0 1.5rem;
}

.stats-section .border-end:last-child {
    border-right: none !important;
}

/* Samples section */
.text-narrow-60 {
    max-width: 700px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}
