/* Import modern font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

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

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

h1, h2, h3, h4, h5 {
	padding: 0;
	margin: 0;
	color: #fdf300;
}

h1 {
	
	font-size: 37px;
	line-height: 40px;
	margin-top: 20px;
	padding-bottom: 5px;
}

h2 {
	font-size: 29px;
	line-height: 33px;
}

h2 span, h3 span, h4 {
	color: #FF0000;
}

h4 {
	color: #fdf300;
	padding-bottom: 5px;
}

h3 {
	color: #fdf300;
	font-size: 23px;
	line-height: 27px;
}

h5 {
	color: #fdf300;
	font-size: 23px;
	line-height: 30px;
}

h6 {
	color: #fdf300 !important;
	font-size: 16px;
	line-height: 23px;
}

.red {
	color: #FF0000;
}

.blue {
	color: #16a7e8;
	font-weight: bold;
}

.white {
	color: #fff;
}

p {
	padding: 0 0 15px 0;
	margin: 0;
	font-size: 16px;
	line-height: 24px;	
	color: #fff;
}

p span {	
	color: #FF0000;
}

.center {
	text-align: center;
}

a {
	color: #FF0;
}

.mt {
	margin-top: 10px;
}

/* Full-width background wrapper for header and footer */
.full-width {
    width: 100%;
}

.full-width-grey {
    width: 100%;
	background-color: #454545;
}

/* Max-width container for internal content */
.max-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
	text-align: center;
}

/* Navigation Bar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.signup-btn, .info-btn, .readmore-btn {
    background: #FF0000;
    color: #fff;
	padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.signup-btn:hover, .info-btn:hover, .readmore-btn:hover {
    background: #fdf300;
    color: #070601;
}

.info-btn {
	display: inline-block;
}

.readmore-btn {
    display: inline-block;
    width: 200px;
    text-align: center;
    margin: 0 auto;
    display: block;
	margin-top: -5px;
}


/* Navigation Menu */
.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 10px;
    display: block;
    transition: 0.3s;
}

.nav-menu a:hover {
    background: #FF0000;
    border-radius: 5px;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #333;
    width: 200px;
    padding: 10px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    list-style: none;
    z-index: 10;
}

.dropdown-menu li {
    padding: 0 10px;
    white-space: nowrap;
}

.dropdown-menu a {
    color: white;
    padding: 10px;
    display: block;
    text-decoration: none;
	text-align: left;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.hamburger div {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

.two-column-container {
    display: flex;
    align-items: center;
    gap: 30px;
	padding: 0 0 15px 0;
	text-align: left;
}

/* Step 5 - Centered on desktop */
.step-five-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.step-five-container .col-item-centered {
    max-width: 280px;
    text-align: center;
}


.step-five-container .text-column {
    max-width: 500px;
    text-align: left;
}

.image-column,
.text-column {
    flex: 1 1 50%;
}

.text-column-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    height: 100%;
	margin-top: 109px;
}

.image-column img {
    max-width: 100%;
    height: auto;
    display: block;
}

.narrow-text-row {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    color: black;
	margin-bottom: 0;
	color: #fff;
}

.sep {
    margin: 0 0.4em;
}

.six-column-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.six-column-container h3 {
	padding-top: 10px;
}

.col-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.col-item img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
	border-radius: 33px 33px 0 0;
}

.col-item span {
	color: #FF0000;
}


.two-column-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.image-column,
.text-column {
    flex: 1 1 50%;
}

.image-column img {
    max-width: 100%;
    height: auto;
    display: block;
	border-radius: 33px;
	margin-bottom: 20px;
}

.video-column video {
    max-width: 400px;
    height: auto;
    display: block;
    border-radius: 8px;
}

.text-column,
.video-column {
    flex: 1 1 50%;
}

.video-column-wide {
    flex: 1 1 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.video-column-wide video {
    max-width: 70%;
    height: auto;
    border-radius: 8px;
}

.affiliate-benefits {
    list-style: none;
    padding: 0;
    margin-top: 0;
}

.affiliate-benefits li span {
    color: #fdf300 !important;
	font-weight: normal;
}

.affiliate-benefits li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
	font-weight: bold;
}

.affiliate-benefits li::before {
    content: "•";
    color: #fdf300;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 2px;
}



/* Footer */
.footer {
    padding: 20px 0 0 0;
    text-align: center;
    color: white;
	margin-top: 40px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-col-2 {
    position: relative;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    text-align: center;
}

.footer img {
	width: 203px;
	height: auto;
	text-align: left;
}

.footer-col-1, .footer-col-2 {
	text-align: left;
}

.footer-col-1 a {
    margin-bottom: 10px;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white; /* Adjust to your footer text colour */
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: red; /* Or any accent colour */
}

.footer-col-3 {
    text-align: left;
}

.footer-contact p {
    margin: 0;
	text-decoration: none;
	padding: 5px 0;
}

.footer-contact p a {
    text-decoration: none !important;
    color: #fff !important;
    transition: color 0.3s ease;
	padding-bottom:
}

.footer-contact p a:hover {
    color: #f50000 !important; /* Red on hover */
}

.footer-contact p span {
	color: #fdf300 !important;
}

.footer-newsletter-form input[type="email"] {
    width: 100%;
    max-width: 300px; /* Optional, stops email input from stretching too wide */
}

.footer-newsletter-form button {
    display: inline-block;
    margin-top: 8px;
}

.footer-newsletter-form {
    margin: 0;
    padding: 5px 0;
}

.newsletter-wrapper {
    border-top: 1px solid #999;
    padding-top: 15px;
    margin-top: 15px;
}

.footer-newsletter-form input[type="email"] {
    padding: 10px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.footer-newsletter-form button, .contact-form button {
    background-color: #fdf300;
    color: #070601;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 8px;
	font-family: 'Poppins', sans-serif !important;
}

.contact-form button {
    background-color: #f50000;
    color: #fff;
}

.footer-newsletter-form button:hover, .contact-form button:hover {
    background-color: #f50000;
    color: #fff;
}

.copyright {
	margin-top: 20px;
	font-size: 12px;
	line-height: 15px;
}

.contact-form button:hover {
    background-color: #fdf300;
    color: #070601;
}

.news-title {
	font-size: 30px;
	line-height: 33px;
}

.footer-newsletter-block {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.newsletter-consent {
    display: flex;
    align-items: center;
    font-size: 14px;
	line-height: 18px;
    color: white;
}

.newsletter-consent input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2); /* Optional – Makes checkbox slightly bigger */
    cursor: pointer;
}

.newsletter-consent label {
    cursor: pointer;
	padding-top: 12px;
}

.footer-newsletter-form input[type="email"],
.footer-newsletter-form button {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.footer-newsletter-form input[type="email"] {
    padding: 10px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    color: black;
}

.footer-newsletter-form button, .footer-newsletter-form button {
    background-color: #fdf300;
    color: #070601;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
	margin: 15px 0 0 0;
}

.newsletter-wrapper p {
	padding-bottom: 10px !important;
}

.footer-newsletter-form button:hover {
    background-color: #f50000;
    color: #fff;
}

.divider1 {
	width: 100%;
	margin: 20px 0;
	border-top: 1px #ccc solid;
}

.divider2 {
	width: 100%;
	padding: 10px 0;
	border-top: 1px #ccc solid;
	border-bottom: 1px #ccc solid;
	margin-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
	margin-top: 20px;
}

.contact-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.contact-form #contact-consent + label {
    font-weight: normal;
    font-size: 14px;
    color: #ffffff;
    display: inline-block; /* Ensures proper alignment */
    cursor: pointer;
    vertical-align: top; /* Aligns with checkbox */
    text-align: left; /* Ensures broken text aligns properly */
    max-width: calc(100% - 30px); /* Prevents text from shifting under checkbox */
}

.mandatory {
    color: #fdf300;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
	font-size: 16px;
}

.contact-form input[type="checkbox"] {
    margin-right: 5px !important;
    transform: scale(1.2);
    cursor: pointer;
}

.newsletter-consent input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
    cursor: pointer;
}

.contact-form textarea {
    resize: vertical;
	height: 100px !important;
}

#other-field input {
    margin-top: 5px;
}

.contact-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: white;
    color: black;
    appearance: none; /* Removes default styling */
    -webkit-appearance: none; /* Safari */
    -moz-appearance: none; /* Firefox */
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
}

.contact-form input[type="text"]#hear-other {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: white;
    color: black;
}

/* First Name / Last Name side by side */
.form-row {
    display: flex;
    gap: 15px;
}

.form-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px; /* Spacing between label and input */
}

.g-recaptcha {
    margin: 10px 0;
	background-color #0FC;
}

input:-internal-autofill-selected {
    background-color: #fff !important;
}

/* Submit button aligned right */
.contact-form .submit-container {
    text-align: left;
}

.apply-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
	padding: 0 15px;
}

.apply-form-wrapper form {
    text-align: left;
}

.four-column-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
	margin-bottom: 30px;
}

.four-column-container img {
    margin-top: -10px;
}

.four-column-container img {
    border-radius: 0;
}

.number-circle {
    width: 50px;
    height: 50px;
    background-color: #FF0000;
    color: white;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.mobile-img {
    display: none !important;
}

.hot-new {
    font-size: inherit;
    font-weight: bold;
    color: #fdf300;
}

.last5 {
	width: 200px !important;
}

.msgs {
	border-radius: 33px;
	text-align: center !important;
	margin-bottom: 15px;
	width: 100%; height: auto;
}

.align-top {
    align-items: flex-start !important;
	margin-top: 20px;
}

/* FAQ Section Styling */
.faq-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on PC */
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.faq-item {
    background: #333;
    color: white;
    padding: 10px;
    border: 2px solid white;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s, border 0.3s, height 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    height: 165px; /* Default height for closed items */
}

.faq-item:hover {
    background: black;
    border-color: red;
}

.faq-item.active {
    height: auto; /* Opened items expand dynamically */
    background: black;
    border-color: red;
}

.faq-title {
    font-size: 18px;
    font-weight: bold;
}

.faq-arrow {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
    font-size: 18px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg); /* Rotate when open */
}

.faq-content {
    display: none;
    padding-top: 10px;
    font-size: 16px;
    color: #fdf300;
}

.faq-item.active .faq-content {
    display: block;
}

.faq-container .fa, 
.faq-container .fas {
    font-size: 40px !important;
    line-height: 55px !important;
}

.faqicon {
    width: 206px;
    margin: 0 auto -20px;
    padding-top: 20px;
}

.faq-text {
    text-align: left;
}

.faq-text h1, 
.faq-text p {
    text-align: left;
	margin-left: -10px;
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* faq end */


@media (max-width: 1024px) {
    .four-column-container {
        grid-template-columns: repeat(2, 1fr);
    }
	
.desktop-img {
        display: none !important;
    }
    .mobile-img {
        display: block !important;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .footer-col {
        flex: 100%;
		border-bottom: 1px #999 solid;
    }
	
	    .six-column-container {
        grid-template-columns: 1fr;
    }
	
	    .two-column-container {
        flex-direction: column;
    }

    .two-column-container.reverse-mobile {
        flex-direction: column-reverse;
    }
	
	.col-item {
    text-align: left;
}

.video-column-wide {
        width: 100%;
        text-align: center;
		margin: 0 auto;
    }

    .video-column-wide video {
        width: 100%;
        max-width: 100%;
    }
	
	.video-column {
        flex: 1 1 100%;
        display: flex;
        justify-content: center;
    }

    .video-column video {
        max-width: 100%;
        height: auto;
    }
	
	    .step-five-container {
        flex-direction: column;
        text-align: center;
    }
    
    .step-five-container .text-column {
        text-align: center;
    }
	
.step-five-container .text-column {
    max-width: 100%;
	text-align: left;
	 align-items: flex-start;
}

.step-five-container .col-item-centered {
    max-width: 100%;
}

.text-column-centered {
	margin-top: 0;
}

.two-column-container {
        display: block;
    }
    
    .image-column, .text-column {
        width: 100%;
    }
	
    .two-column-container.reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }


}


/* responsive */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 86px;
        left: 0;
        background: #222;
        text-align: left;
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 20px;
        display: flex;
        flex-direction: column;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu {
        display: none;
        position: relative;
        width: 100%;
        background: #333;
        padding: 0;
        box-shadow: none;
    }

    .dropdown.expanded .dropdown-menu {
        display: flex;
        flex-direction: column;
    }
    
    .arrow {
        font-size: 14px;
        transition: transform 0.3s;
    }

    .dropdown.expanded .arrow {
        transform: rotate(180deg);
    }

    .arrow {
        display: inline-block;
        transition: transform 0.3s ease-in-out;
    }
	
    .two-column-container {
        flex-direction: column;
    }
	
    .navbar {
        justify-content: space-between; /* Keeps logo on the left, rest on the right */
    }

    .signup-btn {
        margin-left: auto; /* Pushes signup and hamburger to the right */
    }

    .hamburger {
        margin-left: 20px;
        margin-top: 9px;

    }
	
	.readmore-btn {
    margin: 0;
}

footer p {
    padding: 15px 0;
}

}

@media (min-width: 768px) {
    .footer-col-2::before,
    .footer-col-2::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 1px;
        background-color: #999;
    }

    .footer-col-2::before {
        left: -10px; /* Adjust spacing */
    }

    .footer-col-2::after {
        right: -10px; /* Adjust spacing */
    }
}

	@media (max-width: 575.98px) {
		
			.four-column-container {
        grid-template-columns: 1fr;
    }
	
    .col-item-centered {
        text-align: center;
    }
	
	    .hot-new {
        display: block;
        font-size: 26px;
        text-transform: uppercase;
        margin-bottom: -7px;
    }
	
	.faq-container {
    padding: 10px;
	margin-top: 15px;
}
	
.faq-text h1, 
.faq-text p {
    text-align: center;
	padding: 5px 15px;
}

.faq-text h1 {
    margin-top: -20px;
}

}

@media (max-width: 360px) {
.logo img {
    width: 185px;
}	
}
