@charset "utf-8";
/* CSS Document */

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background-color: #000000;
    font-family: "Times New Roman";
    color: #0F172A;
    background-image: url(../images/ZIGZAG.bmp);
}

header img {
    flex-shrink: 0;
    border: 1px solid #000000;
    border-radius: 25px;
}

h1 {
    padding-left: .5em;
    font-size: 1.5em;
    font-family: "Apple ][";
    box-shadow: 0px 0px #030303;
    text-shadow: 1px 1px 10px #999;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    letter-spacing: 0.5em;
    line-height: 1.9;
    text-transform: uppercase;
    font-style: normal;
}

#self-clear h1 span {
    color: #3BE9FE;
}

.siteHeader{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-items: center;
    border: 2px solid #000000;
    background-color: #000000;
    padding: 1.5rem 1rem;
    background-image: -webkit-linear-gradient(270deg,rgba(255,0,255,1.00) 0%,rgba(128,0,128,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(255,0,255,1.00) 0%,rgba(128,0,128,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(255,0,255,1.00) 0%,rgba(128,0,128,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(255,0,255,1.00) 0%,rgba(128,0,128,1.00) 100%);
    border-radius: 1rem;
    margin-top: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
}

.siteHeader img {
    width: 100%;
    height: auto;
    margin-top: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
}

.brand{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.brandMark{
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    color: #FFFFFF;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.brandText{
    font-size: 1.25rem;
    color: #FFFFFF;
    font-weight: 800;
}

.pageTitle{
    font-size: 2.35rem;
    color: #FFFFFF;
    letter-spacing: 0.01em;
}

.pageSub{
    margin-top: 0.5rem;
    color: #E2E8F0;
    max-width: 60rem;
    line-height: 1.4;
}

/* RESET */
.siteNav ul,
.siteNav li,
.submenu {
    list-style: none;
    margin: 0;
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #800080;
    border-radius: 1rem;
    border: 2px solid #000080;
}

/* HIDE CHECKBOX */
#navToggle {
    display: none;
}

/* HAMBURGER ICON (MOBILE) */
.navToggle {
    display: block;
    width: 40px;
    cursor: pointer;
    margin: 10px 0;
}

.navToggle span {
    display: block;
    height: 4px;
    background: #fff;
    margin: 6px 0;
    border-radius: 2px;
}

/* NAV WRAPPER (MOBILE HIDDEN BY DEFAULT) */
.navWrapper {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding-top: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
}

/* SHOW NAV WHEN CHECKED */
#navToggle:checked ~ .navWrapper {
    display: flex;
    margin-top: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
    border: 2px solid #000000;
    border-radius: 1rem;
    background-color: #800080;
    background-image: -webkit-linear-gradient(270deg,rgba(255,0,255,1.00) 0%,rgba(107,2,107,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(255,0,255,1.00) 0%,rgba(107,2,107,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(255,0,255,1.00) 0%,rgba(107,2,107,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(255,0,255,1.00) 0%,rgba(107,2,107,1.00) 100%);
}

/* TOP‑LEVEL NAV LIST (MOBILE = VERTICAL) */
.navList {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* TOP‑LEVEL LINKS */
.navList > li > a {
    display: block;
    padding: 12px 16px;
    background: #00148D;
    color: #F900F9;
    border-radius: 0.9rem;
    border: 2px solid #FA00FA;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

.navList > li > a:hover {
    background: #FA00FA;
    color: #00148D;
    border-color: #fff;
}

/* DROPDOWN (HIDDEN BY DEFAULT) */
.submenu {
    display: none;
    flex-direction: column;
    padding-left: 10px;
    gap: 6px;
    background-color: #000000;
}

/* SHOW DROPDOWN ON MOBILE CLICK */
.has-submenu:focus-within > .submenu,
.has-submenu:active > .submenu {
    display: flex;
}

/* DROPDOWN LINKS */
.submenu li a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    color: #000000;
    text-align: center;
    background-image: -webkit-linear-gradient(270deg,rgba(250,0,250,1.00) 0%,rgba(107,2,107,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(250,0,250,1.00) 0%,rgba(107,2,107,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(250,0,250,1.00) 0%,rgba(107,2,107,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(250,0,250,1.00) 0%,rgba(107,2,107,1.00) 100%);
    font-family: "Times New Roman";
    font-weight: 900;
    font-size: large;
    text-decoration: none;
    border: 2px solid #000080;
}




/* Navigation List */
/*ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    max-width: none;
}

li a {
    display: block;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    color: #FFFFFF;
}

li a:hover {
    background-color: #000080;
    border-radius: 20px;
}*/

/*.siteNav{
    padding-top: 0.85rem;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 0.85rem;
    position: relative;
    border: 2px solid #000000;
    background-image: -webkit-linear-gradient(270deg,rgba(251,0,251,1.00) 0%,rgba(128,0,128,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(251,0,251,1.00) 0%,rgba(128,0,128,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(251,0,251,1.00) 0%,rgba(128,0,128,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(251,0,251,1.00) 0%,rgba(128,0,128,1.00) 100%);
    margin-top: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
    display: flex;
    border-radius: 1rem;
}

.siteNav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    text-align: center;
    flex-direction: column;
}

.siteNav a {
    text-decoration: none;
    background-color: #00148D;
    border-radius: 0.9rem;
    color: #F900F9;
    font-family: "Times New Roman";
    padding-top: 0.9rem;
    padding-right: 0.9rem;
    padding-bottom: 0.9rem;
    padding-left: 0.9rem;
    border: 2px solid #FA00FA;
}
.siteNav a:hover  {
    text-decoration: none;
    background-color: #FA00FA;
    border-radius: 0.9rem;
    color: #00148D;
    font-family: "Times New Roman";
    border: 2px solid #FFFFFF;
    padding-top: 0.9rem;
    padding-right: 0.9rem;
    padding-bottom: 0.9rem;
    padding-left: 0.9rem;
}*/


 /* hide the checkbox */
/*#nav_toggle{
      display: none;
      font-size: 50px;
      color: black;
      text-decoration: none;
}*/
/*#navToggle{
    position: absolute;
    left: -9999px;
}*/

/* Hide hamburger on desktop */
/*.navToggle{
    width: 3rem;
    height: 2.6rem;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 0.75rem;
    background-color: #FFFFFF1A;
    padding: 0.6rem 0.7rem;
    cursor: pointer;
    border: 1px solid #FFFFFF26;
    margin: 10px;
}*/

/*.navToggle span{
    display: block;
    height: 3px;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 999px;
}/*

/*.navList, .submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s ease;
    margin-top: 0.85rem;
    gap: 0.6rem;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}*/

/*#navToggle:checked + .navToggle + .navList{
    max-height: 60rem;
}*/

/* Add separators between top-level items (mobile vertical) */
/*.navList li + li > a {
    border-top: 1px solid #ccc;
    padding-top: 14px;
    border-radius: 1rem;
    color: #FFFFFF;
}*/

/* Remove separator on first item */
/*.navList li:first-child > a {
    border-top: none;
    border-radius: 1rem;
}*/

/* Dropdown hidden by default */
/*.submenu {
    display: none;
    padding-left: 20px;
}*/

/*.submenu li a {
    display: block;
    padding: 8px 12px;
    background: #ddd;
    margin: 4px 0;
    border-radius: 4px;
}*/

/* Show dropdown on mobile when parent <li> is clicked */
/*.has-submenu > a {
    cursor: pointer;
}*/

/*.has-submenu:focus-within > .submenu,
.has-submenu:active > .submenu {
    display: block;
}*/

/*.navList a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    text-decoration: none;
    color: #FA00FA;
    background-color: #000080;
    box-shadow: 0px 10px 20px #0000001A;
    border: 2px solid #000000;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: "Times New Roman";
    height: 2rem;
}

.navList a:hover{
    color: #000080;
    border: 2px solid #FFFFFF;
    background-color: #EE00EE;
    font-family: "Times New Roman";
    height: 2rem;
    display: flex;
    border-radius: 0.9rem;
}

.navList a.active{
    background: linear-gradient(135deg, #F59E0B, #FDBA74);
    color: #00148D;
    border: 2px solid #00148D;
    height: auto;
}*/

.container{
    width: 90%;
    margin: 1.25rem auto 2.25rem;
    display: grid;
    gap: 1rem;
}

.hero{
    display: grid;
    gap: 1rem;
}

.heroText{
    background-color: #800080;
    border: 1px solid #0F172A14;
    border-radius: 1.1rem;
    box-shadow: 0px 14px 26px #00000012;
    padding: 1.1rem;
    background-image: -webkit-linear-gradient(270deg,rgba(254,0,254,1.00) 0%,rgba(128,0,128,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(254,0,254,1.00) 0%,rgba(128,0,128,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(254,0,254,1.00) 0%,rgba(128,0,128,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(254,0,254,1.00) 0%,rgba(128,0,128,1.00) 100%);
}

.heroText h2{
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-family: "Times New Roman";
}

.heroText p{
    line-height: 1.5;
    color: #FFFFFF;
    font-family: "Times New Roman";
}

.pillRow{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.pill{
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background-color: #FFFFFF;
    border: 1px solid #0F766E26;
    color: #800080;
    font-weight: 800;
    font-size: 0.95rem;
    font-family: "Times New Roman";
}

.heroCard{
    color: #FFFFFF;
    border-radius: 1.1rem;
    box-shadow: 0px 14px 26px #00000014;
    padding: 1.1rem;
    border: 2px solid #FFFFFF26;
    background-image: url(url), -webkit-linear-gradient(270deg,rgba(251,0,251,1.00) 0%,rgba(128,0,128,1.00) 100%);
    background-image: url(url), -moz-linear-gradient(270deg,rgba(251,0,251,1.00) 0%,rgba(128,0,128,1.00) 100%);
    background-image: url(url), -o-linear-gradient(270deg,rgba(251,0,251,1.00) 0%,rgba(128,0,128,1.00) 100%);
    background-image: url(url), linear-gradient(180deg,rgba(251,0,251,1.00) 0%,rgba(128,0,128,1.00) 100%);
}

.smallText{
    margin-top: 0.45rem;
    line-height: 1.5;
    color: #FFFFFF;
    font-family: "Times New Roman";
}

.ctaRow{
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.85rem;
}

.cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.85rem;
    padding: 0 1rem;
    border-radius: 0.9rem;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #000080;
    border: 1px solid #000080;
    font-weight: 900;
    font-family: "Times New Roman";
}

.ctaOutline{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.85rem;
    padding: 0 1rem;
    border-radius: 0.9rem;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #000080;
    border: 1px solid #000080;
    font-weight: 900;
    font-family: "Times New Roman";
}

.cta:hover{
    background-color: #F400F4;
    color: #0F172A;
}

.ctaOutline:hover{
    background-color: #FFFFFF33;
    color: #FFFFFF;
}

.heroImageBox{
    margin-top: 0.9rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #FFFFFF33;
}

.heroImageBox img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.grid{
    display: grid;
    gap: 1rem;
}

.card{
    background-color: #820082;
    border: 1px solid #820082;
    padding: 1rem;
    border-radius: 1rem;
    background-image: -webkit-linear-gradient(90deg,rgba(250,0,250,1.00) 0%,rgba(117,20,143,1.00) 100%);
    background-image: -moz-linear-gradient(90deg,rgba(250,0,250,1.00) 0%,rgba(117,20,143,1.00) 100%);
    background-image: -o-linear-gradient(90deg,rgba(250,0,250,1.00) 0%,rgba(117,20,143,1.00) 100%);
    background-image: linear-gradient(0deg,rgba(250,0,250,1.00) 0%,rgba(117,20,143,1.00) 100%);
}
.hero .heroCard h3 {
    font-family: "Times New Roman";
    font-size: x-large;
    text-align: left;
}

.cardImg{
    width: 100%;
    height: 175px;
    object-fit: cover;
    border-radius: 0.95rem;
    border: 1px solid #800080;
    display: block;
    margin-bottom: 0.75rem;
}

.card h2  {
    color: #FFFFFF;
    font-family: "Times New Roman";
    text-align: center;
    padding-bottom: 10px;
}

.card p{
    line-height: 1.5;
    color: #FFFFFF;
    font-family: "Times New Roman";
}

.content{
    background-color: #FF00FF;
    border: 1px solid #0F172A14;
    border-radius: 1.1rem;
    box-shadow: 0px 14px 26px #00000012;
    padding: 1rem;
    background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(229,20,255,1.00) 51.81%,rgba(134,0,134,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(229,20,255,1.00) 51.81%,rgba(134,0,134,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(229,20,255,1.00) 51.81%,rgba(134,0,134,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(255,255,255,1.00) 0%,rgba(229,20,255,1.00) 51.81%,rgba(134,0,134,1.00) 100%);
}
.container #gallery h2 {
    font-family: "Times New Roman";
    font-weight: 900;
    font-size: x-large;
}

.content p{
    line-height: 1.5;
    color: #000000;
    font-family: "Times New Roman";
    font-size: large;
}

.gallery{
    margin-top: 0.85rem;
    display: grid;
    gap: 1rem;
    border-width: 2px;
}

.galleryItem{
    background-color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0px 14px 26px #00000012;
    background-image: -webkit-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(255,0,255,1.00) 100%);
    background-image: -moz-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(255,0,255,1.00) 100%);
    background-image: -o-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(255,0,255,1.00) 100%);
    background-image: linear-gradient(0deg,rgba(255,255,255,1.00) 0%,rgba(255,0,255,1.00) 100%);
}

.galleryItem img{
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.galleryItem figcaption{
    padding: 0.7rem;
    font-weight: 900;
    color: #000080;
    font-family: "Times New Roman";
    font-style: normal;
    font-variant: normal;
    text-align: center;
    font-size: x-large;
}

.pricing{
    background-color: #FB00FB;
    border: 1px solid #0F172A14;
    border-radius: 1.1rem;
    box-shadow: 0px 14px 26px #00000012;
    padding: 1rem;
    background-image: -webkit-linear-gradient(90deg,rgba(133,0,134,1.00) 0.52%,rgba(251,12,251,1.00) 52.33%,rgba(255,255,255,1.00) 100%);
    background-image: -moz-linear-gradient(90deg,rgba(133,0,134,1.00) 0.52%,rgba(251,12,251,1.00) 52.33%,rgba(255,255,255,1.00) 100%);
    background-image: -o-linear-gradient(90deg,rgba(133,0,134,1.00) 0.52%,rgba(251,12,251,1.00) 52.33%,rgba(255,255,255,1.00) 100%);
    background-image: linear-gradient(0deg,rgba(133,0,134,1.00) 0.52%,rgba(251,12,251,1.00) 52.33%,rgba(255,255,255,1.00) 100%);
}

.pricingHeader p{
    margin-top: 0.35rem;
    line-height: 1.5;
    color: #8F2780;
    font-family: "Times New Roman";
    font-weight: 900;
    font-size: x-large;
    text-transform: capitalize;
}
.pricingHeader h2  {
    color: #000000;
    font-family: "Times New Roman";
}

.pricingGrid{
    margin-top: 0.85rem;
    display: grid;
    gap: 1rem;
}

.priceCard{
    background-color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 1.1rem;
    padding: 1rem;
    background-image: -webkit-linear-gradient(270deg,rgba(252,7,252,1.00) 0%,rgba(255,255,255,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(252,7,252,1.00) 0%,rgba(255,255,255,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(252,7,252,1.00) 0%,rgba(255,255,255,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(252,7,252,1.00) 0%,rgba(255,255,255,1.00) 100%);
    font-family: "Times New Roman";
    font-size: large;
    font-weight: 500;
}

.priceCard ul{
    padding-left: 2.5rem;
    margin-top: 0.5rem;
    text-align: left;
    list-style-type: none;
    max-width: 100%;
    display: flex;
    flex-direction: column; /* vertical */
    gap: 6px;
}

.priceCard li{
    margin-top: 0.35rem;
    margin-left: 0.5rem;
    margin-bottom: 0.35rem;
    color: #000000;
    list-style-image: url(../images/check.png);
    padding-left: 10px;
}
.plus-card-content .label-purchase-hero .ws-btn.get_w3schools_hero {
    color: #8D008D;
    padding-top: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
}

.priceCard.plus .label-purchase-plus .ws-btn.get_w3schools_plus {
    color: #8D008D;
    padding-top: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
}

.priceCard.full_access .label-purchase-btn #plan-full {
    color: #8D009B;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
}

.featured{
    background: linear-gradient(135deg, #1D4ED8, #0F766E);
    color: #FFFFFF;
    border: 1px solid #0F172A1A;
}

.featured .price{
    color: #FFFFFF;
}

.featured li{
    color: #E2E8F0;
}

.contact{
    display: grid;
    gap: 1rem;
}

.contactCard{
    background-color: #FB00FB;
    border: 1px solid #000000;
    border-radius: 1.1rem;
    box-shadow: 0px 14px 26px #00000012;
    padding: 1rem;
    background-image: url(url), -webkit-linear-gradient(270deg,rgba(251,0,251,1.00) 0%,rgba(255,255,255,1.00) 100%);
    background-image: url(url), -moz-linear-gradient(270deg,rgba(251,0,251,1.00) 0%,rgba(255,255,255,1.00) 100%);
    background-image: url(url), -o-linear-gradient(270deg,rgba(251,0,251,1.00) 0%,rgba(255,255,255,1.00) 100%);
    background-image: url(url), linear-gradient(180deg,rgba(251,0,251,1.00) 0%,rgba(255,255,255,1.00) 100%);
}

.form{
    display: grid;
    gap: 0.7rem;
    margin-top: 0.6rem;
}
.contactCard h2 {
    font-family: "Times New Roman";
    color: #000000;
}


.form label{
    font-weight: 900;
    color: #000C80;
    font-family: "Times New Roman";
}

.form input,
.form textarea{
    border-radius: 0.9rem;
    border: 1px solid #000000;
    padding: 0.8rem;
    background-color: #FFFFFF;
}

.form button{
    height: 2.95rem;
    border-radius: 0.9rem;
    border: 1px solid #000000;
    color: #FFFFFF;
    font-weight: 900;
    cursor: pointer;
    background-image: -webkit-linear-gradient(270deg,rgba(0,0,128,1.00) 0%,rgba(0,128,128,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(0,0,128,1.00) 0%,rgba(0,128,128,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(0,0,128,1.00) 0%,rgba(0,128,128,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(0,0,128,1.00) 0%,rgba(0,128,128,1.00) 100%);
    font-family: "Times New Roman";
    font-size: large;
}

.form button:hover{
    background-image: -webkit-linear-gradient(90deg,rgba(0,0,128,1.00) 0%,rgba(0,128,128,1.00) 100%);
    background-image: -moz-linear-gradient(90deg,rgba(0,0,128,1.00) 0%,rgba(0,128,128,1.00) 100%);
    background-image: -o-linear-gradient(90deg,rgba(0,0,128,1.00) 0%,rgba(0,128,128,1.00) 100%);
    background-image: linear-gradient(0deg,rgba(0,0,128,1.00) 0%,rgba(0,128,128,1.00) 100%);

}

.contactImageBox{
    margin-top: 0.85rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #000080;
    text-align: center;
    background-color: #FFFFFF;
    background-image: -webkit-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 45.07%);
    background-image: -moz-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 45.07%);
    background-image: -o-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 45.07%);
    background-image: linear-gradient(0deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 45.07%);
}
.contactImageBox h3 span {
    font-family: "Times New Roman";
    font-size: x-large;
}

.contactImageBox img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.contactImageBox1   {
    margin-top: 0.85rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #000080;
    text-align: center;
    background-image: -webkit-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 99.48%);
    background-image: -moz-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 99.48%);
    background-image: -o-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 99.48%);
    background-image: linear-gradient(0deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 99.48%);
}
.contactImageBox2   {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #000080;
    text-align: center;
    background-image: -webkit-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 100%);
    background-image: -moz-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 100%);
    background-image: -o-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 100%);
    background-image: linear-gradient(0deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 100%);
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
}
.contactImageBox3 {
    margin-top: 0rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #000080;
    background-image: -webkit-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 100%);
    background-image: -moz-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 100%);
    background-image: -o-linear-gradient(90deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 100%);
    background-image: linear-gradient(0deg,rgba(255,255,255,1.00) 0%,rgba(251,0,251,1.00) 100%);
    text-align: center;
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.siteFooter{
    background-color: #0B1220;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: -webkit-linear-gradient(270deg,rgba(253,130,253,1.00) 0%,rgba(131,0,132,1.00) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(253,130,253,1.00) 0%,rgba(131,0,132,1.00) 100%);
    background-image: -o-linear-gradient(270deg,rgba(253,130,253,1.00) 0%,rgba(131,0,132,1.00) 100%);
    background-image: linear-gradient(180deg,rgba(253,130,253,1.00) 0%,rgba(131,0,132,1.00) 100%);
    margin-top: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
    border: 1px solid #800080;
    border-radius: 1rem;
    padding-top: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
}

.siteFooter p{
    font-size: 1rem;
    color: #E2E8F0;
}
#services .card .master {
    border: 1px solid #000080;
    border-radius: 0.95rem;
    background-color: #000080;
    background-image: -webkit-linear-gradient(90deg,rgba(255,0,255,1.00) 0%,rgba(131,0,131,1.00) 100%);
    background-image: -moz-linear-gradient(90deg,rgba(255,0,255,1.00) 0%,rgba(131,0,131,1.00) 100%);
    background-image: -o-linear-gradient(90deg,rgba(255,0,255,1.00) 0%,rgba(131,0,131,1.00) 100%);
    background-image: linear-gradient(0deg,rgba(255,0,255,1.00) 0%,rgba(131,0,131,1.00) 100%);
}
.card .master .group.light.box {
    border: 1px solid #000080;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    text-align: center;
    border-radius: 0.95rem;
    background-color: #FF00FF;
}
.card .master .group.dark.box {
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    text-align: center;
    border-radius: 0.95rem;
    background-color: #6B026B;
}
.container #pricing1 {
    background-color: #FFFFFF;
}
.pricingGrid .priceCard.hero .price-row {
    font-size: 1.7rem;
    font-weight: 900;
    margin-top: 0.35rem;
    color: #000000;
}
.priceCard.plus .plus-card-content .price-row {
    font-size: 1.7rem;
    font-weight: 900;
    margin-top: 0.35rem;
    color: #000000;
}
.pricingGrid .priceCard.full_access .price-row {
    font-size: 1.7rem;
    font-weight: 900;
    margin-top: 0.35rem;
    color: #000000;
}
.container #services {
    background-color: #6B026B;
    border-radius: 1rem;
    padding-top: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
}




/* DESKTOP LAYOUT (900px+) */
@media screen and (min-width: 900px) {

    /* HIDE HAMBURGER */
    .navToggle {
        display: none;
    }

    /* SHOW NAV ALWAYS */
    .navWrapper {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        background: none;
        padding: 0;
    }

    /* HORIZONTAL NAV */
    .navList {
        flex-direction: row;
        gap: 20px;
    }

    /* REMOVE MOBILE STYLING */
    .navList > li > a {
        background: none;
        border: none;
        color: #fff;
        padding: 10px 16px;
    }

    /* SEPARATORS BETWEEN ITEMS */
    .navList li + li > a {
        border-left: 1px solid #ccc;
        padding-left: 20px;
    }

    /* FIRST ITEM NO BORDER */
    .navList li:first-child > a {
        border-left: none;
    }

    /* DROPDOWN POSITIONING */
    .has-submenu {
        position: relative;
    }

    .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #eee;
        padding: 10px;
        border-radius: 6px;
        display: none;
        min-width: 180px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    /* SHOW DROPDOWN ON HOVER */
    .has-submenu:hover > .submenu {
        display: block;
    }

    /* DROPDOWN ITEM SEPARATORS */
    .submenu li + li a {
        border-top: 1px solid #ccc;
        padding-top: 10px;
    }
}

@media screen and (min-width: 901px) {

.siteHeader {
        flex-direction: row;
        align-items: center;
}

.siteHeader img {
    width: 40%;
}

.plus-card-content .plan-checklist .plan-list-plus {
    flex-direction: column;
}

.priceCard.full_access .plan-checklist .plan-list-full_access {

    flex-direction: column;
}

.siteHeader h1 {
    font-size: 2rem;
}

.siteNav ul {
    flex-direction: row;
    gap: 20px;
    }
}

@media (min-width: 900px){
        /* Header becomes side-by-side */
   /* .siteHeader {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .siteHeader img {
        width: 45%;
        height: auto;
    }

    .siteHeader h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }*/
    
    /* Hide hamburger */
    /*.navToggle {
        display: none;
    }

    #navToggle {
        display: none;
    }*/

        /* Horizontal nav */
    /*.siteNav ul {
        flex-direction: row;
        gap: 15px;
    }*/

    /*.siteNav a {
    max-width: 120px;

    }*/
    
    /*.navList{
        max-height: none;
        margin-top: 0;
        display: flex;
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }*/

    /*.navList a{
    width: auto;
    display: flex;
    padding-top: 20px;
    }*/

    /*.navList > li > a {
        background: none;
        padding: 10px 16px;
        margin: 0;
        border-radius: 0;
    }*/

    /* Horizontal separators */
    /*.navList li + li > a {
        border-top: none;
        border-left: 1px solid #ccc;
        padding-left: 20px;
    }*/

    /* Remove left border on first item */
    /*.navList li:first-child > a {
    border: 1px solid #000000;
    border-radius: 1rem;
    }*/

    /* Dropdown on hover (desktop only) */
    /*.has-submenu {
        position: relative;
    }*/

    /*.submenu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #eee;
        padding: 10px;
        border-radius: 6px;
        display: none;
        min-width: 180px;
    }*/

    /*.has-submenu:hover > .submenu {
        display: block;
    }*/

    /*.submenu li + li a {
        border-top: 1px solid #ccc;
        padding-top: 10px;
    }*/
    
    .hero{
        grid-template-columns: 1fr 3fr;
        align-items: start;
    }

    .grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery{
        grid-template-columns: repeat(4, 1fr);
    }

    .pricingGrid{
        grid-template-columns: repeat(3, 1fr);
    }

    .contact{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px){
    
        .siteHeader {
        flex-direction: column;
        text-align: center;
    }

    .siteHeader img {
        width: 100%;
        height: auto;
    }
    
        /* Header adjustments */
    .siteHeader h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    /* Hamburger still visible */
    .navToggle {
        display: block;
    }

    /* Nav stays vertical */
    .siteNav ul {
        flex-direction: column;
        gap: 12px;
    }
    
    .pageTitle{
        font-size: 1.85rem;
    }

    .brandText{
        font-size: 1.05rem;
    }

    .navList a{
        height: 2.85rem;
        font-size: 0.98rem;
    }

    .heroImageBox img{
        height: 200px;
    }

    .cardImg{
        height: 155px;
    }

    .galleryItem img{
        height: 175px;
    }
}

@media screen and (max-width: 480px) {
    
    .siteHeader {
    flex-direction: column;
    text-align: center;
    }

    .siteHeader img {
        width: 100%;
        height: auto;
    }

    .siteHeader h1 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    /* Show hamburger */
    .navToggle {
        display: block;
        cursor: pointer;
        width: 40px;
        margin-bottom: 10px;
    }

    /* Hamburger bars */
    .navToggle span {
        display: block;
        height: 4px;
        background: black;
        margin: 6px 0;
        border-radius: 2px;
    }

    /* Hide nav lists by default */
    .navWrapper {
        display: none;
        flex-direction: column;
        gap: 10px;
    }

    /* When checkbox is checked, show nav */
    #navToggle:checked ~ .navWrapper {
        display: flex;
    }

    /* Make lists vertical */
    .siteNav ul {
        flex-direction: column;
    }
}
