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

:root {
    --primary-color: #895cb7;
    --primary-dark: #1b85ce;
    --text-dark: #333333;
    --text-light: #555555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e2e2e2;
}

/* Base Sections */
/* Section spacing */
.premium-section {
    padding: 15px 0;
    background: #f8f9fa;
}

/* Card Styling */
.contact-card {
    padding: 30px;
    border-radius: 16px;
    border: none;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Top Section */
.contact-top {
    margin-bottom: 10px;
}

.contact-person {
    padding: 15px;
}

/* Individual Person Box */
.person-box {
    padding: 20px;
    border-radius: 12px;
    background: #f1f3f5;
    transition: all 0.3s ease;
}

.person-box:hover {
    background: #e9ecef;
}

/* Icons */
.person-icon {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 10px;
}

/* Name */
.person-name {
    font-weight: 600;
    margin-bottom: 5px;
}

/* Phone */
.person-phone {
    color: #6c757d;
    margin-bottom: 0;
}

/* Divider */
.divider {
    height: 1px;
    background: #dee2e6;
    margin: 10px 0;
}

/* Bottom Section */
.contact-bottom p {
    margin-bottom: 5px;
    font-size: 10px;
}

.contact-bottom i {
    color: #0d6efd;
    margin-right: 8px;
}

/* Links */
.contact-bottom a {
    text-decoration: none;
    color: #212529;
    font-weight: 500;
}

.contact-bottom a:hover {
    color: #0d6efd;
}

.bg-alternate {
    background-color: var(--bg-white);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

/* Hero Section */
.hero-awards {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto; /* adjust as needed */
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    color: #f1f1f1;
    margin-bottom: 30px;
}

/* Divi styled cards */
.divi-card {
    background: var(--bg-white);
    border-radius: 8px;
    border: none;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.divi-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.card-icon-wrapper {
    margin-bottom: 20px;
    display: inline-block;
}

.card-icon-wrapper i {
    font-size: 40px;
    color: var(--primary-color);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Image Match Sections */
.bg-textured-mesh {
    /* Pale beige patterned background */
    background-color: #fdf5e6;
    background-image: radial-gradient(#d5c3aa 1px, transparent 1px);
    background-size: 3px 3px;
}

.bg-light-beige {
    background-color: #fdf5e6;
}

.eligibility-wrapper .trophy-icon {
    font-size: 80px;
    color: #d19a00;
}

.text-navy {
    color: #0c3b5e !important;
}

.styled-bullets {
    list-style: none;
    padding-left: 0;
}
.styled-bullets li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
.styled-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    line-height: 1.2;
    color: #777;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.cat-item {
    width: 50%;
    padding: 30px 20px;
    text-align: center;
}
.border-right-dotted {
    border-right: 1.5px dashed #888;
}
.border-bottom-dotted {
    border-bottom: 1.5px dashed #888;
}
.cat-icon {
    width: 65px;
    height: 65px;
    background-color: #ff6045;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(255, 96, 69, 0.3);
}
.cat-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0c3b5e;
    margin-bottom: 5px;
}
.cat-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    font-weight: 500;
}

/* Numbered Segment Cards */
.segment-card {
    background: var(--bg-white);
    border-radius: 8px;
    border: none;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.segment-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-left: 4px solid var(--primary-color);
    transform: translateY(-4px);
}

.segment-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(46, 163, 242, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.segment-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}
.toggle-btn {
    border: none;
    background: none;
    color: var(--primary-color);
    font-size: 13px;
    padding: 0;
    cursor: pointer;
}
.segment-sublist {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    margin-top: 0;
    padding-left: 18px;
    font-size: 13px;
    color: #6c757d;
}

/* Show on hover */
.segment-card:hover .segment-sublist {
    max-height: 200px;
    opacity: 1;
    margin-top: 8px;
}

/* Checkmark Lists */
.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 16px;
}

.premium-list li::before {
    content: '\f058'; /* Font Awesome circle-check or we can use bootstrap icons */
    font-family: "Font Awesome 5 Free", "FontAwesome", "bootstrap-icons"; /* Fallbacks */
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 20px;
}
/* Specifically target bootstrap icon class if used */
.premium-list li > i.bi {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 20px;
    color: var(--primary-color);
}

.premium-list li {
    padding-left: 35px !important; /* Ensure padding if i tag is used inside */
}

.premium-list li > i.bi {
    margin-right: 0 !important;
}

/* Tables */
.premium-table-wrapper {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.premium-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
}

.premium-table thead {
    background-color: var(--primary-color);
    color: #ffffff;
}

.premium-table th {
    padding: 18px 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    color: #fff;
}

.premium-table td {
    padding: 18px 25px;
    border-top: 1px solid var(--border-color);
    vertical-align: middle;
    font-weight: 500;
    color: var(--text-dark);
}

.premium-table tr:hover td {
    background-color: rgba(46, 163, 242, 0.02);
}

/* Contact Component */
.contact-card {
    background: var(--bg-white);
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-card p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-card i {
    color: var(--primary-color);
    width: 25px;
    text-align: center;
    margin-right: 10px;
}

/* Intro Highlight */
.intro-highlight {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px;
    text-align: justify;
}

.intro-text-secondary {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.premium-section p {
    text-align: justify;
}

/* Buttons */
.btn-premium {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-premium:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(46, 163, 242, 0.3);
    text-decoration: none;
}