/* =====================
Developed by Muhammad Emam Hossain Rasel (xvil)
Link: https://www.fiverr.com/xvil0000/
===================== */

/* — CSS Variables — */
:root {
    --color-bg-dark: #030303;
    --color-bg-secondary: #0e0e0e;
    --color-text-light: #f0f0f0;
    --color-accent: #f88e1d;
    --color-accent-dark: #f62a00;
    --slides: 7;
    --slide-w: 200px;
}

/* — Reset & Base Styles — */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: Arial, sans-serif;
}

/* — Responsive Typography — */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero h1 {
    font-size: clamp(2rem, 3vw, 4rem);
    line-height: 1.5;
    font-weight: 700;
}

.sections h1 {
    font-size: clamp(2rem, 3vw, 4rem);
    line-height: 1.5;
    font-weight: 700;
}

h1 {
    font-size: clamp(1.75rem, 2.5vw, 3rem);
    line-height: 1.5;
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 2.2vw, 2.5rem);
    line-height: 1.5;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 1.5vw, 1.75rem);
    line-height: 1.5;
    font-weight: 600;
}

h4 {
    font-size: clamp(1.125rem, 1.1vw, 1.25rem);
    line-height: 1.5;
    font-weight: 600;
}

h5 {
    font-size: clamp(1rem, 0.9vw, 1.125rem);
    line-height: 1.5;
    font-weight: 600;
}

h6 {
    font-size: clamp(0.875rem, 0.7vw, 1rem);
    line-height: 1.5;
    font-weight: 600;
}

p {
    font-size: clamp(1rem, 0.6vw, 1.125rem);
    line-height: 1.5;
    max-width: 65ch;
}

small,
button {
    font-size: clamp(1rem, 0.7vw, 1.2rem);
    font-weight: 700;
    cursor: pointer;
}

.btn {
    text-align: center;
    font-weight: 700;
}

span,
i,
a {
    font-size: clamp(1rem, 0.7vw, 1.2rem);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-accent-dark);
}

/* — Header — */
#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-secondary);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    transition: background-color 0.4s ease, padding 0.3s ease,
        box-shadow 0.3s ease;
}

#mainHeader.sticky {
    background: var(--color-bg-dark);
    padding: 0.7rem 2rem;
    box-shadow: 0 3px 15px rgba(246, 42, 0, 0.3);
}

#mainHeader .logo {
    width: 250px;
    user-select: none;
    transition: width 0.3s ease;
}

nav.desktop-nav {
    display: flex;
    align-items: center;
}

nav.desktop-nav a {
    margin-left: 4rem;
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

/* — Hamburger — */
.hamburger {
    position: relative;
    width: 25px;
    height: 17px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    z-index: 10001;
    display: none;
}

.hamburger span {
    display: block;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* — Mobile Nav — */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--color-bg-dark);
    flex-direction: column;
    padding: 4rem 2rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow-y: auto;
    display: none;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    color: var(--color-text-light);
    margin-bottom: 1.8rem;
    transition: color 0.3s ease;
}

/* — Canvas — */
canvas#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* — Hero Section — */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.55)),
        url(../img/earth-map-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    text-transform: capitalize;
    background: linear-gradient(90deg,
            var(--color-accent),
            var(--color-accent-dark),
            var(--color-accent),
            var(--color-accent-dark),
            var(--color-accent));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideGradient 6s linear infinite,
        verticalBounce 4s ease-in-out infinite, fadeInDown 1s ease-out;
}

.hero p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

/* — Partners Carousel — */
.partners {
    padding: 4rem 2rem;
    background: var(--color-bg-secondary);
    text-align: center;
    position: relative;
    z-index: 2;
}

.partners h2 {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.partners-slider {
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(var(--slide-w) * var(--slides) * 2);
    animation: scroll 20s linear infinite;
}

.slide {
    width: 200px;
    flex-shrink: 0;
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 150px;
    max-height: 60px;
    margin-bottom: 0.5rem;
    filter: brightness(0.9);
}

.slide span {
    color: var(--color-text-light);
}

/* — Buttons — */
.btn-group {
    display: flex;
    gap: 20px;
}

.btn {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, #f88e1d, #f62a00, #f88e1d);
    background-size: 300% 300%;
    animation: pulseFlow 5s ease infinite;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.15s ease, box-shadow 0.3s ease;
}

.btn::before,
.btn::after {
    content: "";
    position: absolute;
    z-index: 2;
}

.btn::before {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.15),
            transparent 60%);
    transform: rotate(25deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn::after {
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0));
    transform: skewX(-25deg);
    transition: left 0.4s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover::after {
    left: 150%;
}

.btn:hover {
    transform: scale(1.03);
    color: var(--color-bg-secondary);
}

.btn:active {
    transform: scale(0.97);
    box-shadow: inset 0 0 20px #f62a00;
}

/* — Sections — */
.sections {
    padding: 4rem 4rem 0rem 4rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sections h1,
.sections h2 {
    text-align: center;
    text-transform: capitalize;
    background: linear-gradient(90deg,
            var(--color-accent),
            var(--color-accent-dark),
            var(--color-accent),
            var(--color-accent-dark),
            var(--color-accent));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideGradient 6s linear infinite,
        verticalBounce 4s ease-in-out infinite, fadeInDown 1s ease-out;
}

.sections p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.sections i,
.sections svg {
    margin-bottom: 1.2rem;
    color: var(--color-accent);
    height: 74px;
    width: 74px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg,
            rgba(248, 142, 29, 0.06),
            rgba(246, 42, 0, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(248, 142, 29, 0.06);
}

.sections-grid-2,
.sections-grid-3 {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.sections-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.sections-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.sections-flex-row,
.sections-flex-column {
    display: flex;
    gap: 1rem;
}

.sections-flex-column {
    flex-direction: column;
}

.sections-info {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(248, 142, 29, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sections-info:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(248, 142, 29, 0.4);
}

.sections-info h3 {
    margin-bottom: 1.2rem;
    color: var(--color-accent);
    padding-bottom: 0.5rem;
    text-align: center;
}

.sections-info h4 {
    color: var(--color-accent);
    padding-bottom: 0.5rem;
    text-align: center;
}

.sections-info p {
    margin-bottom: 0.7rem;
    color: #ddd;
}

.sections-ul-list {
    list-style: none;
    padding-left: 0;
    color: #d4d4d4;
    margin: 0;
}

.sections-ul-list li {
    position: relative;
    padding-left: 1.1rem;
    margin: 0.45rem 0;
    line-height: 1.35;
}

.sections-ul-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 8px rgba(248, 142, 29, 0.16);
    transform: translateY(-50%);
}

.sidebar-sticky {
    position: sticky;
    top: 110px;
}

/* Packages Section */
.packages {
    padding: 4rem 2rem 0rem;
}

.packages::before {
    content: "";
    display: block;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url("../img/cloud-bg.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    animation: cloudBounce 4s ease-in-out infinite;
    opacity: 0.8;
}

.packages h2 {
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

.packages p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

/* Individual grid */
.container.individual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Enterprise full-width */
.container.enterprise {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.package-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(248, 142, 29, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(248, 142, 29, 0.4);
}

.package-card h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    text-align: center;
}

.package-card .price {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.package-card .price small {
    opacity: 0.8;
    display: block;
}

.package-card .btn {
    margin-top: auto;
}

/* “All include” footer line */
.all-include {
    text-align: center;
    color: #ccc;
}

.band-icon {
    height: 74px;
    width: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg,
            rgba(248, 142, 29, 0.06),
            rgba(246, 42, 0, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(248, 142, 29, 0.06);
}

.pill {
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
    background: linear-gradient(90deg,
            rgba(248, 142, 29, 0.08),
            rgba(246, 42, 0, 0.03));
    color: var(--color-text-light);
    font-weight: 700;
    font-size: 0.86rem;
    border: 1px solid rgba(248, 142, 29, 0.06);
    transition: transform 0.18s, box-shadow 0.18s;
}

.pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(246, 42, 0, 0.06);
}

.card-title {
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

/* — Quote Section — */
#quote {
    position: relative;
    background: var(--color-bg-secondary);
    overflow: hidden;
    margin-top: 4rem;
    padding: 4rem 2rem;
}

#quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            transparent,
            var(--color-accent),
            transparent);
    animation: slideHighlight 3s ease-in-out infinite;
}

#quote .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

#quote h2 {
    margin-bottom: 1rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

#quote a {
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
    transition: color 0.3s;
}

#quote a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.4s ease;
}

#quote a:hover {
    color: var(--color-accent-dark);
}

#quote a:hover::after {
    width: 100%;
}

/* — Footer — */
.footer {
    background: linear-gradient(135deg, #111, #222, #111);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center,
            rgba(248, 142, 29, 0.05),
            transparent 70%);
    transform: translateX(-50%) rotate(45deg);
    animation: rotateBg 12s linear infinite;
}

.footer_top {
    min-height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_logo {
    max-width: 250px;
    min-width: 150px;
}

.footer-nav {
    width: 60%;
    text-align: right;
    margin-bottom: 1rem;
}

.footer-nav div {
    margin-top: 20px;
}

.footer-nav a {
    color: var(--color-text-light);
    opacity: 0.8;
    margin: 0 0.3rem;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer_horizontal {
    border-color: var(--color-accent-dark);
    width: 50%;
    margin: 2rem auto;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer p:hover {
    transform: translateY(-4px);
    color: var(--color-accent);
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

/* When active… */
.modal-overlay.active {
    display: flex;
}

/* Modal Window */
.modal {
    background: var(--color-bg-secondary);
    color: var(--color-text-light);
    border-radius: 1rem;
    max-width: 600px;
    width: 90%;
    padding: 2rem;
    position: relative;
    box-shadow: 0 0 30px rgba(248, 142, 29, 0.5);
    animation: fadeInUp 0.5s ease;
    max-height: 80vh;
    overflow-y: auto;
}

.modal .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-accent);
    display: block;
    margin: 0 auto 1rem;
}

.modal h3 {
    text-align: center;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.modal span {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
    color: #ccc;
}

.modal .details {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal ul {
    margin-bottom: 1rem;
}

.modal ul li {
    margin-left: 1.2rem;
    list-style: disc;
    color: #ddd;
}

.modal .links a {
    margin-right: 1rem;
    color: var(--color-accent);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
}

/* Form styling */
form {
    display: grid;
    gap: 1.5rem;
}

fieldset {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
}

legend {
    padding: 0 0.5rem;
    color: var(--color-accent);
}

label {
    display: flex;
    flex-direction: column;
    color: #ddd;
}

label {
    margin-bottom: 1rem;
}

label {
    position: relative;
}

.confirmation_checkbox {
    margin: 0 auto;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea[type="text"] {
    margin-top: 0.3rem;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.3rem;
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
textarea[type="text"]:focus {
    border: 1px solid var(--color-accent);
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

input[type="checkbox"] {
    position: absolute;
    top: 50%;
    left: 300px;
    transform: translateY(-50%);
}

.automated_tasks_checkbox input[type="checkbox"] {
    left: 400px;
}

.confirmation_checkbox input[type="checkbox"] {
    left: -20px;
}

/* Modal inner sections: cards that scroll inside the modal */
.modal .packages_pricing,
.modal .features_benefits,
.modal .faq_campaign {
    background: rgba(15, 15, 15, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.modal .packages_pricing h2,
.modal .features_benefits h2,
.modal .faq_campaign h2 {
    color: var(--color-accent);
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.4px;
}

.modal .packages_pricing ul,
.modal .features_benefits ul,
.modal .faq_campaign ul {
    list-style: disc inside;
    color: #dcdcdc;
    padding-left: 0.6rem;
    margin: 0;
}

.modal .packages_pricing ul li,
.modal .features_benefits ul li,
.modal .faq_campaign ul li {
    margin: 0.5rem 0;
}

.modal .faq_campaign ul li {
    list-style: none;
}

.modal .faq_campaign ul li p:first-child {
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.modal .faq_campaign ul li p:last-child {
    margin: 0;
    color: #d0d0d0;
}

.modal #confirmBtn,
.modal #cancelConfirm {
    margin-right: 0.5rem;
    min-width: 110px;
}

.modal #cancelConfirm {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

/* Cards grid */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.leader-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 0 15px rgba(248, 142, 29, 0.2);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(248, 142, 29, 0.4);
}

.leader-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--color-accent);
}

.leader-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}

.leader-card span {
    font-size: 0.95rem;
    color: #ddd;
}

/* — Animations — */
@keyframes slideGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes verticalBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes cloudBounce {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, -55%);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes rotateBg {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes slideHighlight {
    0% {
        left: -100%;
    }

    50% {
        left: 50%;
    }

    100% {
        left: -100%;
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * var(--slide-w) * var(--slides)));
    }
}

/* — Media Queries — */
@media (max-width: 1440px) {
    nav.desktop-nav a {
        margin-left: 2rem;
    }
}

@media (max-width: 1250px) {
    #mainHeader {
        padding: 0.8rem 1rem;
    }

    #mainHeader .logo {
        width: 200px;
    }

    nav.desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }
}

@media (max-width: 1024px) {
    #mainHeader {
        padding: 1rem;
    }

    #mainHeader .logo {
        width: 200px;
    }

    nav.desktop-nav a {
        margin-left: 1rem;
    }
}

@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
    }

    .sections {
        padding: 4rem 1rem 0rem;
    }

    .sections-grid-2,
    .sections-grid-3 {
        grid-template-columns: 1fr !important;
    }

    .sections:nth-of-type(2) .sections-grid-2 .sections-info:first-child {
        order: 2;
    }

    .footer_top {
        flex-direction: column;
    }

    .footer_logo {
        margin-bottom: 20px;
    }

    .footer-nav {
        width: 90%;
        text-align: center;
    }

    .footer_bottom {
        flex-direction: column-reverse;
    }

    .footer_bottom p {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 2rem 1rem;
    }

    .footer p {
        font-size: 0.8rem;
    }

    .modal #confirmBtn,
    .modal #cancelConfirm {
        display: block;
        width: 100%;
        margin: 0.4rem 0 0 0;
    }
}