* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-style: normal;
}

button {
    cursor: pointer;
}

header {
    position: fixed;
    top: 0;
    z-index: 999;
    display: flex;
    width: 100%;
    height: auto;
    padding: 0px 10px;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(245, 245, 245, 0.932);
    box-shadow: 0px 3px 10px rgb(153, 151, 151);
    transition: all 0.3s ease-in-out!important;
}

.logo {
    width: 160px;
    /* z-index: 1001; */
    /* border: 1px solid black; */
}

.logo img {
    width: 100%;
    height: auto;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    /* z-index: 1001; */
    transition: all 0.3s ease;
}

.menu-toggle:hover .bar:nth-child(2) {
    width: 0;
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    width: initial;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.bar {
    height: 2px;
    width: 100%;
    background-color: #000000;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Hamburger animation when active */
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-bar {
    position: absolute;
    z-index: 999;
    width: 65%;
    overflow: hidden;
    /* border: 1px solid red; */
    top: 71.9px;
    right: 0;
    background: rgba(255, 255, 255, 0.651);
    backdrop-filter: blur(8px);
    height: 100vh;
    transition: 0.3s ease;
    padding: 60px 0px 0px 20px;
    right: -100%;
}

.nav-bar ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style-type: none;
}

.nav-bar ul li {
    border-bottom: 1px solid #8f8888;
    padding-bottom: 20px;
}
.nav-bar ul li a{
    transition: all 0.3s ease-in-out;
}
.nav-bar ul li a:hover{
    color: #015984;
    padding-left: 10px;
}

.page-active {
    color: #015984!important;
    border-left: 1px dashed #015984;
    fill: #015984;
    padding-left: 10px;
}

.nav-bar ul li:last-of-type {
    border: none;
}

.nav-bar ul a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

#servicesBtn {
    width: 100%;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    border: none;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all ease-in-out .3s;
}
#servicesBtn:hover,
#servicesBtn svg:hover{
    color: #015984;
    fill: #015984;
}
#servicesBtn svg {
    width: 20px;
    margin-right: 20px;
}

.services-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    z-index: 999;
    width: 65%;
    overflow: hidden;
    top: 71.9px;
    right: 0;
    background: rgba(255, 255, 255, 0.651);
    backdrop-filter: blur(8px);
    height: 100vh;
    transition: 0.3s ease;
    padding: 60px 0px 0px 20px;
    right: -100%;
}

.mobile-services {
    display: block;
}

.services-dropdown {
    display: none;
}

.services-overview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
    border-bottom: 2px solid #000000;
    padding-bottom: 20px;
}

.services-nav a {
    text-decoration: none;
    font-size: 16px;
    color: #000;
    font-weight: 700;
    border-bottom: 1px solid #8f8888;
    padding-bottom: 20px;
    transition: all .3s ease-in-out;
}
.services-nav a:hover{
    color: #015984;
    padding-left: 10px;
}
.services-nav a:last-of-type {
    border: none;
}

.services-overview h1 {
    font-size: 22px;
}

.services-overview a {
    color: #015984 !important;
    font-size: 16px;
    font-weight: 700;
    padding: initial;
    border: none;
    text-decoration: underline;
}

.main-menu {
    background-color: transparent;
    border: none;
    width: fit-content;
    margin-bottom: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    gap: 5px;
    align-items: center;
}

.main-menu svg {
    width: 20px;
}

.nav-bar.active,
.services-nav.active {
    right: 0;
}


/* -------------------------------------------------------------------------------------------------------------------------------------
                                                    HOME HERO SECTION
------------------------------------------------------------------------------------------------------------------------------------- */

.home-hero {
    width: 100%;
    height: 90vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0)), url(/images/homepage-img/potential\ home\ bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 65px 0px 65px;
    position: relative;
    z-index: 1;
}

.home-hero-content {
    text-align: center;
}

.home-hero-right {
    display: none;
}

.home-hero-content h1 {
    font-size: 32px;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fafafa;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.home-hero-content p {
    color: #fafafa;
    margin-bottom: 20px;
    font-size: 16px;
}

.home-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80%;
    margin: auto;
}

.home-hero-cta a {
    padding: 10px;
    border-radius: 10px;
    border: none;
    color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: auto;
    font-size: 14px;
    text-decoration: none;
}

.home-hero-cta a:hover {
    gap: 15px;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background-color: #01ad40 !important;
    color: #fafafa !important;
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.home-trust {
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-trust p {
    width: 100%;
    text-align: center;
    padding: 15px 0px;
    background-color: rgba(0, 0, 0, 0.051);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    font-size: 16px;
}

.home-service {
    /* background-color: #040A19; */
    background-color: #e3e3e3;
    padding: 100px 20px;
    /* color: white; */
}

.home-service-head {
    text-align: center;
    color: #000;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 80px;
}

.home-service-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-service-content-card {
    padding: 30px 15px;
    background-color: #fafafa;
    border-radius: 8px;
    box-shadow: 0px 0px 20px #8f8888;
}

.home-service-content-card div {
    width: 100%;
    margin-bottom: 20px;
    height: 250px;
}

.home-service-content-card div img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.home-service-content-card h1 {
    font-size: 22px;
    margin-bottom: 12px;
}

.home-service-content-card h2 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 25px;
}

.home-service-content-card p {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
}

.home-service-content-card a {
    text-decoration: none;
    color: #015984;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
}

.home-service-content-card a:hover {
    gap: 15px;
    transition: all 0.3s ease;
}

.home-how {
    padding: 100px 20px;
}

.home-how-head {
    text-align: center;
    /* color: #fafafa; */
    font-size: 28px;
    margin-bottom: 50px;
}

.home-how-content-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.home-how-content-right {
    display: none;
}

.home-how-step {
    border-left: 2px solid #8f8888;
    padding: 10px 0px 10px 10px;
}

.home-how-step h1 {
    font-size: 42px;
    font-weight: 500;
    color: #8f8888;
    margin-bottom: 20px;
}

.home-how-step h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.home-how-step p {
    color: #8f8888;
    font-size: 16px;
}

.home-shop {
    padding: 100px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.411), rgba(0, 0, 0, 0.685)), url(/images/homepage-img/kit_opened.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    height: auto;
    background-position: center;
    text-align: center;
}

.home-shop h1 {
    color: #fafafa;
    font-size: 28px;
    margin-bottom: 20px;
}

.home-shop p {
    font-size: 16px;
    color: #fafafa;
    margin-bottom: 20px;
}

.home-shop a {
    text-decoration: none;
    color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: auto;
    font-size: 14px;
    font-weight: 500;
}

.home-shop a:hover {
    gap: 15px;
    transition: all 0.3s ease;
}

.home-area {
    padding: 100px 20px;
}

.home-area h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.home-area p {
    font-size: 16px;
}

.home-about {
    padding: 100px 20px 100px 20px;
}

.home-about-img {
    width: 100%;
}

.home-about-img img {
    width: 100%;
}

.home-about h1 {
    font-size: 28px;
    margin-top: 20px;
}

.home-about p {
    font-size: 16px;
    margin: 20px 0px;
}

.home-about a {
    text-decoration: none;
    color: #015984;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
}

.whatsapp-cta {
    padding: 120px 20px;
    background-color: #015984;
    color: #fafafa;
    text-align: center;
}

.whatsapp-cta h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.whatsapp-cta p {
    font-size: 16px;
    margin-bottom: 30px;
}

.whatsapp-cta a {
    text-decoration: none;
    background-color: #01ad40 !important;
    color: #fafafa !important;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

footer {
    background-color: #015984;
    padding: 80px 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-first h1 {
    font-size: 28px;
    margin-top: 20px;
    color: #fafafa;
}

.footer-first h2 {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #fafafa;
}

.footer-first p {
    color: #b4b4b4;
    margin-top: 5px;
    font-size: 16px;
}

.footer-second {
    margin-top: 20px;
}

.footer-contact-head {
    font-size: 22px;
    color: #fafafa;
    margin-bottom: 25px;
}

.footer-contact-box {
    margin-bottom: 30px;
}

.footer-contact-box h1 {
    display: flex;
    font-size: 16px;
    gap: 10px;
    color: #e3e3e3;
}

.footer-contact-box h1 svg {
    width: 20px;
    fill: #b4b4b4;
}

.footer-contact-box a {
    font-size: 14px;
    margin-left: 30px;
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: #fafafa;
}

.footer-location {
    margin-top: 10px;
    margin-left: 30px;
}

.footer-location h1 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
}

.footer-location a {
    margin-left: initial;
    margin-bottom: 10px;
}

.footer-third {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-third h1 {
    font-size: 28px;
    color: #fafafa;
    margin-bottom: 20px;
}

.footer-third a {
    text-decoration: none;
    color: #fafafa;
    margin-bottom: 10px;
}

.footer-fourth {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.footer-fourth a svg {
    width: 40px;
    fill: #b4b4b4;
    height: auto;
    border: 1px solid #8f8888;
    padding: 5px;
    border-radius: 50%;
}

.footer-last {
    margin-top: 30px;
    border-top: 1px solid #8f8888;
}

.footer-note {
    font-size: 16px;
    margin-top: 20px;
    font-weight: 400;
    color: #fafafa;
    border-bottom: 1px solid #8f8888;
    padding-bottom: 30px;
}

.footer-base h1 {
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 10px;
    color: #fafafa;
}

.footer-base p {
    color: #b4b4b4;
    font-size: 16px;
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-size: 22px;
    background-color: #D4AF37;
    /* gold */
    color: #000;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(200, 196, 196, 0.531);
    transition: all 0.3s ease;
    display: none;
    /* Hidden by default */
}

#scrollTopBtn:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.1);
}

#whatsappbtn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
    display: none;
    /* Hidden by default */
    text-decoration: none;
}

#whatsappbtn img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#whatsappbtn img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* ---------------------------------------------------------------------------------------------------------------
                                             SHOP PAGE
--------------------------------------------------------------------------------------------------------------- */

.shop-hero {
    padding: 140px 65px 65px 65px;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.517)), url(/images/shop-img/shop-hero-img.jpg);
    background-position: center;
    background-size: 100% 100%;
    height: 60vh;
    color: #fafafa;
    text-align: center;
    background-repeat: no-repeat;
}

.shop-hero h1 {
    font-size: 32px;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.shop-hero p {
    margin-bottom: 20px;
    font-size: 16px;
}

.shop-product {
    background-color: #f1f1f1;
    padding: 80px 20px;
}

.shop-product h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.filter-bar {
    margin-bottom: 40px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:active {
    transform: scale(0.98);
}

.load-more-container {
    text-align: center;
    padding: 15px;
}

#loadMoreBtn {
    padding: 12px 20px;
    background: black;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.product-image-container {
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-size: 22px;
    margin: 20px 0px;
}

.product-card p {
    font-size: 16px;
    color: #8f8888;
    margin-bottom: 10px;
}

.price {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.product-card-base {
    display: flex;
    justify-content: space-between;
}

.view-details {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: #015984;
    color: #fafafa;
    border: none;
    border-radius: 8px;
}

.quantity {
    display: flex;
    gap: 10px;
}

.quantity button {
    width: initial;
    height: fit-content;
    background: black;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: transform 0.1s ease;
}

.quantity button:active {
    transform: scale(0.9);
}

.menu-toggle-end {
    display: flex;
    cursor: pointer;
    gap: 10px;
    align-items: center;
}

.floating-cart {
    background: #000000;
    color: #b4b4b4;
    padding: 9px 15px;
    border-radius: 30px;
    font-size: 14px;
    z-index: 1000;
}

/* CLEAR ALL BUTTON */


.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 150%;
    background: rgba(0, 0, 0, 0.6);
    top: -70px;
    left: 0;
    z-index: 1001;
}

.modal-content {
    background: white;
    margin: 100px auto;
    padding: 20px;
    width: 90%;
    border-radius: 10px;
    /* text-align: center; */
}

.close {
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-self: right;
    justify-self: right;
}

.modal-content img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

.modal-content h3 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.modal-content p {
    font-size: 16px;
    text-align: left;
}

.summary-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
}

.summary-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    border-radius: 12px;
    position: relative;
}

.summary-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 5px;
}

.summary-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.close-summary {
    display: flex;
    justify-self: right;
    font-size: 30px;
    cursor: pointer;
}

.cart-buttons {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-top: 20px;
}

#whatsappBtn {
    background: #25D366;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}

#clearCart {
    padding: 12px;
    background: red;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 8px;
}

/* MODAL */
.location-modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    z-index: 1001;
}

.location-content {
    background: white;
    margin: 100px auto;
    padding: 20px;
    width: 90%;
    border-radius: 10px;
    text-align: center;
}

.location-content input {
    width: 100%;
    padding: 10px;
    margin: 15px 0;
}

.location-content button {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    justify-content: center;
}

.filter-bar select,
.filter-bar input {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.shop-trust {
    background-image: url(/images/shop-img/Order-summary-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fafafa;
    padding: 50px 20px;
}

.shop-trust h1 {
    font-size: 22px;
    text-align: center;
    border-bottom: 1px solid #8f8888;
    padding-bottom: 20px;
}

.shop-trust-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.shop-trust-content div {
    width: 48%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.shop-trust-content svg {
    width: 40px;
    fill: #015984;
}

.shop-trust-content h2 {
    color: #000000;
    font-size: 16px;
    margin-top: 20px;
}


/* ------------------------------------------------------------------------------------------------------------------------------------
                                                     SERVICES PAGE
------------------------------------------------------------------------------------------------------------------------------------ */

/* HERO */
.services-hero {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/images/services-img/services-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fafafa;
    min-height: 65vh;
}

.services-hero h1 {
    font-size: 32px;
    font-family: "Barlow", sans-serif;
    margin-bottom: 10px;
}

.services-hero p {
    font-size: 16px;
}

/* SERVICES GRID */
.services-overview-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 60px 20px;
    background: #f1f1f1;
}

.service-cards {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.service-card-img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
}

.service-cards:hover {
    transform: translateY(-5px);
}

.service-cards h2 {
    margin-bottom: 10px;
    font-size: 22px;
    text-transform: uppercase;
    font-size: 2;
}

.service-cards p {
    font-size: 16px;
}

.service-cards a {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    text-decoration: none;
    font-size: 16px;
    color: #015984;
    font-weight: 600;
}

/* WHY US */
.service-why {
    padding: 100px 20px;
    height: auto;
}

.service-why-content h2 {
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.service-features div {
    width: 100%;
    text-align: center;
    padding: 15px 0px;
    background-color: rgba(0, 0, 0, 0.051);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    font-size: 16px;
}

.service-why-img {
    width: 100%;
    position: relative;
    margin-top: 80px;
}

.service-why-img1 {
    width: 80%;
    min-height: 300px;
    border-radius: 10px;
}

.service-why-img2 {
    position: absolute;
    z-index: 10;
    width: 250px;
    height: 250px;
    right: 30px;
    border-radius: 10px;
    bottom: -100px;
}

/* COVERAGE */
.service-coverage {
    padding: 120px 20px;
    background-color: #015984;
    color: #fafafa;
    text-align: center;
    margin-top: 80px;
}

.service-coverage h2 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.service-coverage p {
    font-size: 16px;
}

.service-cta {
    padding: 120px 20px;
    text-align: center;
}

.service-cta h2 {
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.service-cta p {
    font-size: 16px;
    margin-bottom: 40px;
}

.service-cta a {
    text-decoration: none;
    background-color: #01ad40 !important;
    color: #fafafa !important;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}


/* ------------------------------------------------------------------------------------------------------------------------------------
                                                    INSTALLATION PAGE
------------------------------------------------------------------------------------------------------------------------------------ */

/* HERO */
.install-hero {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('/images/services-img/starlinkinstalltion-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    height: 70vh;
}

.install-hero h1 {
    font-size: 32px;
    font-family: "Barlow", sans-serif;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.install-hero p {
    font-size: 16px;
}

.install-intro {
    padding: 120px 20px;
    text-align: center;
}

.install-intro h2 {
    text-transform: uppercase;
    margin-bottom: 30px;
}

.install-intro p {
    font-size: 16px;
    color: #8f8888;
}

.install-benefits {
    /* background-color: #f1f1f1; */
    padding: 10px 20px 80px 20px;
}

.install-benefits h2 {
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}

.benefits-grid h1 {
    width: 49%;
    text-align: center;
    height: auto;
    display: flex;
    gap: 5px;
    flex-direction: column;
    padding-left: 10px;
    border: 2px solid #8f8888;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
}

.benefits-grid span {
    display: inline-block;
    font-size: 32px;
    color: #8f8888;
}

.install-pricing {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/images/services-img/Pricing-background.jpg);
    padding: 50px 20px;
}

.install-pricing-head {
    font-size: 28px;
    color: #fafafa;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
}

.price-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.651);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: inline-block;
}

.price-box h1 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fafafa;
}

.install-pricing-features li {
    list-style-type: circle;
    margin-left: 30px;
    font-size: 16px;
}

/* .price {
    font-size: 22px;
    font-weight: bold;
    margin: 20px 30px;
    color: #fafafa;
} */

/* PROCESS */
.install-process {
    padding: 80px 20px;
}

.install-process h2 {
    font-size: 28px;
    text-align: center;
    text-transform: uppercase;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    row-gap: 20px;
}

.process-steps-box {
    width: 48%;
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 30px 20px;

}

.process-steps-box div {
    width: 40px;
    height: 40px;
    margin: auto;
    margin-bottom: 20px;
}

.process-steps-box svg {
    fill: #015984;
}

.process-steps-box h3 {
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.process-steps-box p {
    font-size: 16px;
    text-align: center;
}

.install-cta {
    padding: 120px 20px;
    background-color: #f1f1f1;
    text-align: center;
}

.install-cta h2 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.install-cta p {
    font-size: 16px;
}

/* CTA */
.install-cta .cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 25px;
    background: #01ad40;
    color: white;
    border-radius: 10px;
    text-decoration: none;
}

/* 
------------------------------------------------------------------------------------------------------------------------------------
                                                     ACTIVATION/SUBCRIPTION
------------------------------------------------------------------------------------------------------------------------------------ */

.activation-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.188), rgba(0, 0, 0, 0.438)),
        url('/images/services-img/starlinkactivation-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    padding: 120px 20px;
    height: 70vh;
}

.activation-hero h1 {
    font-size: 32px;
    font-family: "Barlow", sans-serif;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.activation-hero p {
    font-size: 16px;
}

.activation-cta-btn {
    display: inline-block;
    margin-top: 20px;
    background: #01ad40;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 16px;
    text-decoration: none;
}

.activation-why {
    padding: 70px 20px;
}

.activation-why h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.activation-why-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activation-why-grid div {
    width: 100%;
    text-align: center;
    padding: 15px 0px;
    background-color: rgba(0, 0, 0, 0.051);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    font-size: 16px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.activation-pricing {
    padding: 50px 20px;
    background-color: #ddd;
}

.activation-pricing h2 {
    font-size: 29px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}

.plans {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.plan-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 95%;
    margin: auto;
    text-align: center;
}

.plan-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.plan-card p:first-of-type {
    color: #015984;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
}

.plan-card.highlight {
    border: 2px solid #25D366;
    width: 100%;
}

.badge {
    background: #25D366;
    color: white;
    padding: 5px 10px;
    display: block;
    margin: auto;
    width: fit-content;
    font-size: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.activation-comparison {
    padding: 70px 20px;
}

.activation-comparison h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #000;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

table th {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.note {
    margin-top: 20px;
    font-size: 16px;
}

/* LINKS */
.external-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.external-links a {
    color: #015984;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.hint {
    text-align: center;
    margin-top: 20px;
}

.activation-how {
    padding: 50px 20px;
}
.activation-how-img{
    display: none;
}
.activation-steps {
    display: flex;
    justify-content: space-between;
    row-gap: 30px;
    flex-wrap: wrap;
}

.activation-how h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 30px;
}

.activation-steps div {
    border-left: 1px solid #b4b4b4;
    padding-left: 10px;
    width: 48%;
}

.activation-steps h1 {
    font-size: 36px;
    color: #b4b4b4;
    margin-bottom: 10px;
}

.activation-steps p {
    font-size: 16px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}
.activation-info-img{
    display: none;
}
.activation-info {
    padding: 80px 20px;
    background-color: #ddd;
}

.activation-info h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.activation-info p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.activation-info li {
    margin-left: 30px;
    list-style-type: upper-roman;
    margin-bottom: 10px;
}

.info ul {
    margin-top: 10px;
}

/* TERMS */
.activation-terms {
    padding: 50px 20px;
}

.activation-terms h2 {
    font-size: 28px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.activation-terms p {
    font-size: 18px;
    margin-bottom: 20px;

}

.activation-final-cta {
    background-color: #000;
    padding: 100px 20px;
    color: #fff;
}

.activation-final-cta h2 {
    text-transform: uppercase;
    margin-bottom: 20px;

}


/* ------------------------------------------------------------------------------------------------------------------------------------
                                           MAINTENANCE PAGE
------------------------------------------------------------------------------------------------------------------------------------ */

/* HERO */
.maintenance-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.188), rgba(0, 0, 0, 0.438)),
        url('/images/services-img/starlinkmaintenance-bg.jpg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    padding: 120px 20px;
    height: 70vh;
}

.maintenance-hero h1 {
    font-size: 32px;
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.maintenance-hero p {
    font-size: 16px;
    width: 90%;
    margin: auto;
}

.maintenance-problem {
    padding: 80px 20px;
}

.maintenance-problem h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 30px;
}

.maintenance-problem-content {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    /* flex-direction: column; */
    justify-content: center;
    column-gap: 4%;
}

.maintenance-problem-card {
    display: flex;
    align-items: center;
    width: 48%;
    background-color: #e3e3e3;
    padding: 20px 10px;
    border-radius: 10px;
}

.maintenance-problem-card img {
    width: 40px;
}

.maintenance-problem-card p {
    font-size: 16px;
}

.maintenance-services {
    padding: 100px 20px;
    background-color: #ddd;
    text-align: center;
}

.maintenance-services h2 {
    text-transform: uppercase;
    font-size: 28px;
    text-align: center;
    margin: auto;
    width: 80%;
}

.maintenance-service-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.maintenance-service-card {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
}

.maintenance-service-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.maintenance-service-card p {
    font-size: 16px;
}

/* PRICING */
.maintenance-pricing {
    padding: 100px 20px;
    text-align: center;
}

.maintenance-pricing h2 {
    text-transform: uppercase;
    font-size: 28px;
}

.maintenance-pricing-grid {
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-top: 50px;
}

.maintenance-pricing-card {
    background: #e3e3e3;
    padding: 20px;
    border-radius: 10px;
}

.maintenance-pricing-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.maintenance-price {
    font-size: 28px;
    margin-bottom: 20px;
    color: #015984;
    font-weight: 700;
}

.maintenance-pricing-card ul {
    width: 70%;
    margin: auto;
}

.maintenance-pricing-card li {
    list-style-type: upper-roman;
}

.maintenance-pricing-card.highlight {
    border: 2px solid #015984;
}

.price {
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0;
}

/* CTA */
.maintenance-cta {
    padding: 100px 20px;
    text-align: center;
    background: black;
    color: white;
}

.maintenance-cta h2 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.maintenance-cta a {
    padding: 12px 20px;
    background: #25D366;
    border: none;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    color: white;
    border-radius: 8px;
    font-size: 16px;
}


/* ------------------------------------------------------------------------------------------------------------------------------------
                                              DISTRIBUTION PAGE
------------------------------------------------------------------------------------------------------------------------------------ */

/* HERO */
.distribution-hero {
    padding: 120px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.147), rgba(0, 0, 0, 0.6)),
        url(/images/services-img/starlinkdistribution-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: white;
}

.distribution-hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
}

.distribution-hero p {
    font-size: 16px;
    margin-bottom: 20px;
}

.distribution-hero a {
    text-decoration: none;
    background-color: #01ad40 !important;
    color: #fafafa !important;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.distribution-about {
    padding: 80px 20px;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.distribution-about h2 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.distribution-about p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #555;
}

.distribution-usecases {
    padding: 100px 20px;
    background: #f5f5f5;
    text-align: center;
}

.distribution-usecases h2 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
}

.usecase-grid {
    display: flex;
    justify-content: space-between;
    row-gap: 20px;

    flex-wrap: wrap;
}

.usecase {
    width: 48%;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

/* FEATURES */
.distribution-features {
    padding: 60px 20px;
    text-align: center;
}

.distribution-features h2 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.feature {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
}

/* PRICING */
.distribution-pricing {
    padding: 60px 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    margin: auto;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.349);
}

.service-card h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 16px;
}

.service-card .price {
    display: block;
    margin: 15px 0;
    color: #015984;
    font-weight: bold;
}


.service-card a {
    padding: 10px;
    border: none;
    text-decoration: none;
    background: #01ad40;
    margin-top: 10px;
    display: block;
    margin: auto;
    width: fit-content;
    color: white;
    border-radius: 6px;
}

.service-card.highlight {
    border: 2px solid #015984;
    transform: scale(1.05);
}

.distribution-process {
    padding: 60px 20px;
    text-align: center;
    background: #f5f5f5;
}
.distribution-process h2{
    font-size: 28px;
    text-transform: uppercase;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.step {
    background: white;
    padding: 10px 15px;
    border-radius: 6px;
}

/* CTA */
.distribution-cta {
    padding: 60px 20px;
    text-align: center;
}

.distribution-cta h2 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.distribution-cta p {
    font-size: 16px;
    margin-bottom: 30px;
}

.distribution-cta a {
    padding: 12px 20px;
    background: #01ad40;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
}

/* ------------------------------------------------------------------------------------------------------------------------------------
                                                       ABOUT PAGE
------------------------------------------------------------------------------------------------------------------------------------ */

.about-hero {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.226), rgba(0, 0, 0, 0.086)),
        url(/images/about-img/about-bg.jpg);
    background-size: cover;
    background-position: center;
    color: white;
}

.about-hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
}

.about-hero p {
    font-size: 16px;
    color: #fff;
}

.about-intro {
    padding: 80px 20px;
}

.about-intro h2 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
}

.about-intro p {
    color: #555;
    margin-bottom: 10px;
    font-size: 16px;
}

.about-advantage {
    padding: 10px 20px 60px 20px;
}

.about-advantage h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.advantage {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.advantage:hover {
    transform: translateY(-5px);
}

.advantage h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.advantage p {
    font-size: 16px;
}

.about-location {
    background-color: #f5f5f5;
    padding: 100px 20px;
}

.about-location h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
}

/* LOCATION */
.location-box {
    margin-bottom: 20px;
}

.location-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.about-trust {
    padding: 100px 20px;
}

.about-trust h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
}

/* TRUST */
.about-trust ul {
    list-style: none;
    padding: 0;
}

.about-trust li {
    margin: 10px 0;
}

/* CTA */
.about-cta {
    padding: 80px 20px;
    background-color: #000;
    color: #fff;
}

.about-cta h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
}

.about-cta p {
    text-align: center;
}

.about-cta-btn {
    display: block;
    padding: 12px 20px;
    background: #25D366;
    color: white;
    border-radius: 8px;
    width: fit-content;
    margin: auto;
    text-decoration: none;
    margin-top: 20px;
    font-size: 14px;
}

/* 
------------------------------------------------------------------------------------------------------------------------------------
                                         CONTACT PAGE
------------------------------------------------------------------------------------------------------------------------------------ */

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('/images/contact-img/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
    height: 70vh;
}

.contact-hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
}

.contact-hero p {
    font-size: 16px;
}

/* CONTAINER */
.contact-container {
    display: flex;
    gap: 30px;
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}

.contact-container h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 50px;
}

/* LEFT */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 10px;
}

.info-box {
    margin-top: 20px;
}

.whatsapp-direct {
    display: inline-block;
    margin-top: 25px;
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
}

/* RIGHT FORM */
.contact-form {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 10px;
}

.contact-form h2 {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: black;
    color: white;
    border: none;
    border-radius: 8px;
}

/* MAP */
.contact-map {
    text-align: center;
    padding: 50px 20px;
}

.contact-map h2 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-map p {
    font-size: 16px;
    margin-bottom: 40px;
}

.map-box {
    margin-top: 20px;
    height: 300px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}