/* ******************************* */
/* START OF GENERAL STYLES */
/* ******************************* */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    overflow-x: hidden; /* This hides any overflow */
    color: #333;
    line-height: 1.25em; /* Adjusted line height ONLY for body copy */
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top:10px;
    padding-bottom:10px;
}

h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 3.66em;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 0.5em;
    text-align: center;
    line-height: 1.35em;
}


h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2em;
    font-weight: 700;
    font-style: italic;
    color: white;
    background-color: #007bff;
    padding: 15px 20px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 10px;
    margin: 1em auto;
    line-height: 1.5em;
    width: 58%;
    max-width: 775px;
    letter-spacing: 1.15px; /* Added letter spacing for more impact */
}


.full-width-section {
    background-color: #007bff; /* Blue background */
    width: 100vw; /* Full viewport width */
    padding-top:10px;
    padding-bottom:10px;
    margin: 0; /* Ensures no extra margin around the section */
}

.limited-width-container {

    margin: 0 auto; /* Center the container */
    text-align: center; /* Center the text */
}

.full-width-section h2 {
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 2em;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.5em;
    letter-spacing: 1.15px;
    max-width: 2000px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top:15px;
    padding-bottom:15px;
}


h3 {
    font-size: 1.25em;
    font-weight: 600;
    margin-top: 2em;
    margin-bottom: 1em;
    text-align: center;
}

p {
    font-size: 1.5em;
    line-height: 1.5em; /* Reduced line height of body copy as requested */
    margin-bottom: 1em;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bold-text {
    font-weight: bold;
}

.blue-text {
    color: #007BFF;
}


hr.modern-hr-5 {
    border: none;
    height: 4px;
    background: linear-gradient(to right, #007bff, #00c6ff);
    margin: 1.5em 0;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    width: 100%;
    height: 1px; /* Thickness of the line */
    background-color: #333; /* Matches the body text color */
    border: none;
    margin: 0;
    padding: 0;
}


/* ******************************* */
/* START OF SECTION STYLES */
/* ******************************* */

.blue-header {
    background-color: #007BFF;
    color: white;
    padding: 25px 0;
    width: 100%;
}

.blue-header .main-title {
    font-size: 6.4em;
    margin-top: 0.05em; /* Reduce the top margin */
    margin-bottom: 0.05em; /* Reduce the bottom margin */
    line-height:1.2em;
}

.white-section {
    background-color: #fff;
    width: 100%;
}

.grey-section {
    background-color: #f3f7fd;
    width: 100%;
}

/* ******************************* */
/* START OF ICON BOX SECTION */
/* ******************************* */

.icon-box-wrapper {
    display: flex;
    justify-content: center; /* Center the entire group */
    padding-top:0px;
    padding-bottom:0px;

}

.icon-box {
    width: 50%; /* Full width to allow proper spacing */
    max-width: 1200px; /* Optional: set a max-width to prevent it from becoming too wide */
    padding: 20px;
    box-sizing: border-box; /* Ensure padding is included in the width */
    margin: 0 auto; /* Ensure it's centered in the container */
}

.icon-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Create 4 equal columns */
    gap: 30px; /* Adds spacing between items */
}

.icon-list div {
    display: flex;
    flex-direction: column; /* Stack icon and text vertically */
    align-items: center; /* Center align both icon and text */
    text-align: center;
    font-size:1.25em;
}

.icon-list i {
    font-size: 2em;
    margin-bottom: 15px; /* Add space between icon and text */
    color: #007BFF; /* Make sure the icons are blue */
}
/* ******************************* */
/* START OF CATEGORIES GRID SECTION */
/* ******************************* */

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2em;
}

.category-card {
    width: calc(16% - 20px);
    text-align: center;
}

.category-image-container {
    position: relative;
}

.category-img {
    width: 100%;
    border: 1px solid #c2cfd6;
    border-radius: 8px;
}

.template-title {
    margin-top: 8px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.tooltip-icon {
    display: inline-block;
    margin-left: 5px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    cursor: help;
    position: relative;
}

.tooltip-text {
    visibility: hidden;
    min-width: 250px;
    max-width: 280px;
    background-color: black;
    color: white;
    font-size: 0.9rem;
    line-height: 1.4rem;
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    word-wrap: break-word;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.tooltip-icon:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* ******************************* */
/* START OF EXAMPLE SECTION */
/* ******************************* */

.example-box {
    background-color: #e7f3ff; /* Light blue color */
    padding-left: 50px;
    padding-right: 50px; 
    padding-bottom: 10px;
    padding-top:10px;
    margin: 2em auto;
    width: 70%;
    text-align: center;
}


.example-box .example-header {
    font-size: 2.75em; /* 1.5x bigger than the default 1.5em size */
    font-weight: bold; /* Make the text bold */
    margin-bottom: .5em; /* Optional: Add some spacing below */
    margin-top:10px;
}

.all-caps-line {
    font-size: 1.7em;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #fff; /* Add a background to the text */
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Subtle box shadow */
    margin-bottom: 1em;
    
}

/* NEW: Class for applying lines */
.applying-line {
    font-size: 1.25em; /* Same size as default paragraph */
}

/* ******************************* */
/* START OF NOT LIST SECTION */
/* ******************************* */

.not-list {
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    padding-top: 20px;
    padding-left:20px;
    padding-right:20px;
    margin: 1em auto;
    width: 55%;
    text-align: left;
    font-size: 1.25em;
}

.not-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.centered-text {
    text-align: center; /* Centers the text */
}

.not-list li {
    display: flex;
    align-items: center;
    font-size: 1.3em;
    margin-bottom: 20px;
}

.not-list i {
    color: #dc3545;
    font-size: 1.5em;
    margin-right: 10px;
}

.not-list strong {
    font-weight: bold;
    margin-right: 5px;
}

/* ******************************* */
/* START OF RECEIVE BOX SECTION */
/* ******************************* */
.receive-list {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the list horizontally */
}

.receive-list ul {
    list-style: none;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the boxes horizontally */
}

.receive-list li {
    display: flex;
    align-items: center;
    justify-content: left;
    background: linear-gradient(90deg, #007bff, #00c6ff); /* Gradient background */
    color: white;
    font-weight: bold; /* Bold text */
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    font-size: 2em;
    width: 70%; /* Limit width to 55% */
    text-align: left;
    line-height: 1.5em; /* Increase line height for readability */
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.receive-list li .number {
    font-size: 2em; /* Larger numbers */
    background-color: white;
    color: #007bff;
    margin-right: 15px;
    font-weight: bold;
    border-radius: 50%; /* Ensure the element stays circular */
    width: 60px; /* Fixed width */
    height: 60px; /* Fixed height */
    display: flex; /* Flex to center the number inside */
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
    flex-shrink: 0; /* Prevent shrinking */
    box-sizing: border-box; /* Include padding and border in the element’s width and height */
}


.receive-list li i {
    margin-right: 10px;
    color: white;
}

/* Hover effect: raises the item with a stronger shadow */
.receive-list li:hover {
    transform: translateY(-5px); /* Moves the item slightly up */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.receive-list li p {
    margin: 0;
}




/* ******************************* */
/* START OF BUY NOW BUTTON SECTION */
/* ******************************* */

.buy-now-button-container {
    text-align: center;
    margin: 2em 0;
}

.buy-now-button {
    background-color: #28a745;
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.buy-now-button:hover {
    background-color: #218838;
}

/* ******************************* */
/* START OF FOOTER SECTION */
/* ******************************* */

footer {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    background-color: #333;
    color: white;
    padding: 1em 0;
    text-align: center;
}

footer a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


footer p {
    margin: 0;
    padding: 0 20px; /* Add some padding to prevent text from touching the edges */
}
footer a:first-of-type::after {
    content: " |";
    margin-right: 0px;
}

/* ******************************* */
/* START OF SLIDER STYLES */
/* ******************************* */

.slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: center;
    overflow: hidden;
}

.slider img {
    width: 250px; /* Fixed width to fit 6 images in 1600px */
    height: auto;
}

/* ******************************* */
/* START OF RESPONSIVE STYLES */
/* ******************************* */

@media (max-width: 1024px) {
    .categories-grid {
        width: 100%;
    }

    .category-card {
        width: calc(25% - 20px);
    }

    .icon-list div {
        width: 45%;
    }

    h2 {
        width: 80%;
    }

    .example-box,
    .receive-box {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .icon-list div {
        width: 100%;
    }

    .category-card {
        width: calc(33% - 20px);
    }

    h2 {
        width: 90%;
    }

    .example-box,
    .receive-box,
    .not-list {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 90%;
    }

    .category-card {
        width: calc(50% - 20px);
    }

    h2 {
        width: 100%;
    }

    .example-box,
    .receive-box,
    .not-list {
        width: 100%;
    }
}
