* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-background-colour: #000000;
    --secondary-background-colour: #ffffff;
    --bg-light-grey: #f0f0f0;
    --link-color: #ffffff;
    --hover-colour: #686868;
    --light-button: #ffffff;
    --dark-button: #000000;
    --blue-button: #0C6CCE;
    --border-colour-success: #09c372;
    --border-colour-failure: #ff3860;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    background: var(--secondary-background-colour);
}

a {
    text-decoration: none;
    color: var(--link-color);
}

ul {
    list-style: none;

}

img {
    max-width: 100%;
}

.logo img { /* Adjusting the logo size */
    max-width: 50px;
    max-height: 50px;
}

/* Nav Bar */
.navbar {
    background: var(--primary-background-colour);
    padding: 20px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .main-menu ul {
    display: flex;
}

.navbar ul li a {
    padding: 10px 20px;
    display: block;
    font-weight: 600;
    transition: 0.5s;
}

.navbar ul li a:hover {
    color: var(--hover-colour);
}

.navbar ul li a i {
    margin-right: 10px;
}

.navbar ul li:last-child a {
    margin-left: 10px;
}

/* Intro Section*/
.intro {
    margin-bottom: 50px;
}

.intro .container {
    background: url('../images/istockphoto-bw.jpg') no-repeat;
    background-size: 65% 100%;  
    background-position: 95% 25px;
    height: 800px;
}

.intro .intro-content {
    width: 70%;
}

.intro .intro-heading {
    color: #ffffff;
}

.intro .intro-text {
    color: #ffffff;
    width: 70%;
    margin-bottom: 20px;
}

.intro .product-card {
    background: #000000;
    /* background: rgba(0, 0, 0, 0.95); /* Use this for slightly transparent bg*/
    margin-top: 40px;
    width: fit-content;
    min-width: 400px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: adds subtle shadow */
}

.intro .intro-buttons {
    margin-top: 20px;
}

/* Product Section */
.product-card {
    /*background: #fff;*/
    color: #000;
    border-radius: 10px;
    padding: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
    gap: 30px;
}

.product-card-subheading {
    margin-bottom: 30px;
}

.product-card-rate {
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #cccc;
}

.product-card-body ul {
    margin: 30px 0;
}

.product-card-body ul li {
    margin-bottom: 20px;
}

.product-card-body ul li i {
    margin-right: 10px;
}

.product-card-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

/* Eligibility */
.eligible {
    padding: 10px 0 40px;
}

.eligible-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px auto;
}

.eligible-grid .btn {
    /*font-size: 0.875rem; */
    padding: 12px 10px;
    white-space: nowrap;
}

.eligible-grid .fas {
    margin-right: 5px;
}

.eligible-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eligible-content .btn-dark {
    margin-left: center;
}

/* Application */
.application {
    padding: 40px 0;
}

.application .application-heading {
    color: #ffffff;
}

.application .application-text {
    color: #ffffff;
    width: 70%;
    margin-bottom: 20px;
    margin-inline: auto;
}

/* FAQ */
.faq {
    padding: 40px 0;
}

.faq .faq-group {
    border-bottom: 1px solid #cccc;
    padding-bottom: 20px;
}

.faq .faq-group .faq-group-header {
    padding: 20px 0;
    margin-bottom: 15px;
    position: relative;
} 

.faq .faq-group .faq-group-header h4 {
    font-weight: 600;
    width: 95%;
}

.faq .faq-group .faq-group-header i {
    position: absolute;
    right: 0;
    top: 35px;
    font-size: 1.3rem;
    cursor: pointer;
}

.faq .faq-group .faq-group-body {
    display: none;
}

.faq .faq-group .faq-group-body.open {
    display: block;
}

/* Footer */
.footer {
    padding: 40px 0;
}

.footer h4 {
    margin-bottom: 10px;
}

.footer ul li {
    line-height: 2.5;
}

.footer a {
    color: var(--link-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    justify-content: center;
    align-items: start;
}

.footer-grid img {
    max-width: 185px;
    height: auto;
}

.disclaimer {
    font-size: 0.85rem;
    padding-top: 2.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Form Styles */
.application-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.application-form .submit-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}

.application-form .btn-block {
    display: block;
    width: 15%;
    margin-left: auto;
    font-family: 'Poppins', sans-serif;
}

.application-form-row {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    
}

.input-group {
    flex: 1;
    margin: 0;
}

.input-group input:focus {
    outline: 0;
}

.input-group.success input {
    border-color: var(--border-colour-success);
}

.input-group.error input {
    border-color: var(--border-colour-failure);
}

.input-group .error {
    color: var(--border-colour-failure);
    font-size: 9px;
    height: 13px;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cccccc;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    background-color: #ffffff;
}

.wholesale-section {
    margin: 1.5rem 0;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.checkbox-group label {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

/* Utility Classes */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 13px 20px;
    background: var(--light-button);
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
}

.btn:hover {
    opacity: 0.8;
}

.btn-light {
    background: var(--light-button);
    color: #000000;
}

.btn-dark {
    background: var(--dark-button);
    color: var(--light-button);
}

.btn-blue {
    background: var(--blue-button);
    color: #ffffff;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Text Classes */
.text-xxl {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 40px 0 20px;
}

.text-xl {
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 40px 0 20px;
}

.text-lg {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 30px 0 20px;
}

.text-md {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 20px 0 10px;
}

.text-sm {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 10px 0 5px;
}

.text-xs {
    font-size: 0.7rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 10px 0 5px;
}

.text-center {
    text-align: center;
}

/* Background */
.bg-black {
    background: var(--primary-background-colour);
    color: #ffffff;
}

.bg-white {
    background: var(--secondary-background-colour);
    color: #000000;
}

.bg-grey {
    background: var(--bg-light-grey);
    color: #000000;
}
