* {
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


::selection {
    background-color: #CC0000;
}

.header-container {
    width: 100%;
}

.utility-menu {
    width: 100%;
    height: 45px;
    line-height: 45px;
    background-color: #ccc;
    text-align: right;
}

.utility-menu a {
    font-size: 15px;
    color: #000033;
    padding-right: 25px;
}

.navbar {
    background-color: #fff;
    position: relative;
    height: 125px;
}

.nav-wrapper {
    text-align: center;
}

.navbar img {
    width: 10%;
    float: left;
    vertical-align: middle;
}

.navbar ul {
    line-height: 125px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    color: #000;
    text-decoration: none;
    padding: 14px 20px;
    letter-spacing: 1.5px;
}

.navbar ul li a:hover {
    border-bottom: solid orange 2px;
}

.hero-container {
    width: 100%;
}

.hero-block {
    height: 500px;
    background-color: #fff;
}

.hero-block h1 {
    font-weight: 700;
    font-size: 75px;
    padding-left: 10%;
    color: #fff;
}

.title {
    padding-top: 8vh;
}

#future {
    color: orange;
}

.hero-block p {
    padding-top: 20px;
    font-size: 22px;
    color: #fff;
    padding-left: 10%;
    width: 45%;
}

/** CALL TO ACTION CONTAINER BLOCKS **/
/** CALL TO ACTION CONTAINER BLOCKS **/
/** CALL TO ACTION CONTAINER BLOCKS **/
/** CALL TO ACTION CONTAINER BLOCKS **/
/** CALL TO ACTION CONTAINER BLOCKS **/
.action-block-container {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 400px;
}

.action-block-container a {
    margin-right: 10vw;
    color: #fff;
    background-color: #000033;
    padding: 1.3% 4%;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
}

.action-block-container-2 {
    width: 100%;
    background-color: #f0e6ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 400px;
    flex-direction: row-reverse;
}

.action-block-container-2 a {
    margin-left: 10vw;
    color: #fff;
    background-color: #000033;
    padding: 1.3% 4%;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
}

/** CALL TO ACTION BLOCKS **/
/** CALL TO ACTION BLOCKS **/
/** CALL TO ACTION BLOCKS **/
/** CALL TO ACTION BLOCKS **/
/** CALL TO ACTION BLOCKS **/
/** CALL TO ACTION BLOCKS **/
/** CALL TO ACTION BLOCKS **/
.action-block {
    color: #000033;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10vw;
}

.action-block h3 {
    font-size: 30px;
}

.action-block p {
    padding-top: 15px;
    width: 40vw;
    font-size: 20px;
}

.action-block-2 {
    color: #000033;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 10vw;
    border-radius: 10px;
    padding-left: 10%;
}

.action-block-2 h3 {
    font-size: 30px;
}

.action-block-2 p {
    padding-top: 15px;
    width: 40vw;
    font-size: 20px;
}

/** PLANS CONTAINER BLOCK **/
/** PLANS CONTAINER BLOCK **/
/** PLANS CONTAINER BLOCK **/
/** PLANS CONTAINER BLOCK **/
/** PLANS CONTAINER BLOCK **/
/** PLANS CONTAINER BLOCK **/
/* Container */
.plans-container {
    padding: 50px 20px;
    background: #f4f6f9;
}

.plans-4x {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.plan {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: 0.25s ease;
}

.plan:hover {
    transform: translateY(-6px);
}

.plan.popular {
    border: 2px solid #cc0000;
    transform: scale(1.03);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #cc0000;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

.badge {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.price {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.price span {
    font-size: 16px;
    color: #6b7280;
}

.speed {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.label {
    text-align: left;
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    color: #374151;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.label p {
    margin-bottom: 6px;
}

.btn-main {
    display: inline-block;
    padding: 10px 18px;
    background: #cc0000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-main:hover {
    background: #a30000;
}


/** FOOTER SECTION BLOCK **/
/** FOOTER SECTION BLOCK **/
/** FOOTER SECTION BLOCK **/
/** FOOTER SECTION BLOCK **/
/** FOOTER SECTION BLOCK **/
.footer-container {
    background: #0f172a;
    color: #e5e7eb;
    padding: 50px 20px 30px;
}

.footer-4x-dark {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-section p:first-child {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-section p:nth-child(2) {
    font-size: 14px;
    color: #9ca3af;
}

.footer-section ul {
    list-style: none;
    margin-top: 10px;
}

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

.footer-section ul li a {
    text-decoration: none;
    color: #9ca3af;
    font-size: 14px;
    transition: 0.2s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-container::after {
    content: "";
    display: block;
    margin-top: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #6b7280;
}

.footer-logo {
    margin-top: 15px;
    width: 140px;
    height: auto;
    display: block;
}





/** BLOCKS FOR SERVICE BLOCK **/
/** BLOCKS FOR SERVICE BLOCK **/
/** BLOCKS FOR SERVICE BLOCK **/
/** BLOCKS FOR SERVICE BLOCK **/
/** BLOCKS FOR SERVICE BLOCK **/
.info-4x a {
    color: #fff;
    background-color: #000033;
    padding: 0.8% 3%;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
}

.info-container {
    width: 100%;
    background: #0F172A;
    padding: 60px 20px;
}

.info-4x {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-4x,
.info-cta {
    max-width: 1200px;
    margin: 0 auto;
}

.info {
    flex: 1;
    background: #111;
    color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.info:hover {
    transform: translateY(-6px);
    border-color: #00c2ff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.info i {
    display: block;
    font-size: 40px;
    margin-bottom: 15px;
    color: #00c2ff;
}

.info h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.info p {
    font-size: 14px;
    color: #ccc;
}

.info-cta {
    text-align: center;
    margin-top: 30px;
}

.info-cta a {
    display: inline-block;
    padding: 12px 28px;
    background: #00c2ff;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.info-cta a:hover {
    background: #009ed1;
}

.info i {
    display: block;
    font-size: 42px;
    margin-bottom: 15px;
    color: #00c2ff;
    transition: 0.3s ease;
}

.info:hover i {
    transform: scale(1.15);
}







.how-container {
    background: #0F172A;
    padding: 70px 20px;
    text-align: center;
}

.section-title {
    color: #fff;
    font-size: 28px;
    margin-bottom: 50px;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    color: #ccc;
    position: relative;
    padding: 20px;
}

.step-icon {
    font-size: 36px;
    color: #00c2ff;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #00c2ff;
    color: #000;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.step p {
    font-size: 14px;
}

.step:hover .step-icon {
    transform: scale(1.2);
}

.step::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.1);
}

.step:last-child::after {
    display: none;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,0.1);
}











/* Features Section Styles */
.features-section {
  background: #fff; /* white background */
  padding: 60px 20px;
  text-align: center;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Heading */
.features-section h2 {
  font-size: 28px;
  color: #0F172A; /* dark text */
  margin-bottom: 50px;
}

/* Flex container for feature cards */
.features-list {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Individual feature cards */
.feature {
  flex: 1 1 30%; /* default desktop: 3 features in a row */
  text-align: center;
  color: #0F172A;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  border-radius: 8px;
}

/* Optional: subtle shadow and hover effect */
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Feature Icon */
.feature i {
  font-size: 36px;
  color: #00c2ff;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

/* Feature Title */
.feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Feature Description */
.feature p {
  font-size: 14px;
  line-height: 1.5;
}
























/* Very small screens */
@media screen and (max-width: 480px) {
    .header-container {
        display: none;
    }

    .hero-block {
        height: 100%;
        padding-bottom: 8vh;
        text-align: left;
    }

    .hero-block h1 {
        font-size: 40px;
    }

    .hero-block p {
        font-size: 20px;
        width: 80%;
    }

    .action-block-container {
        all: initial;
        width: 100%;
    }

    .action-block-container a {
        visibility: hidden;
    }

    .action-block {
        all: initial;
        text-align: center;
        padding: 25px;
    }

    .action-block h3 {
        font-size: 40px;
        text-align: center;
    }

    .action-block p {
        font-size: 20px;
        width: 80%;
        margin: 0 auto;
    }

    .action-block-container-2 {
        all: initial;
        width: 100%;
        background-color: #f0e6ff;
        display: block;
    }

    .action-block-container-2 a {
        visibility: hidden;
    }

    .action-block-2 {
        all: initial;
        text-align: center;
        padding: 25px;
    }

    .action-block-2 h3 {
        font-size: 40px;
        text-align: center;
    }

    .action-block-2 p {
        font-size: 20px;
        width: 80%;
        margin: 0 auto;
    }
}

/* Normal phones */
@media screen and (min-width: 481px) and (max-width: 767px) {
    .header-container {
        display: none;
    }

    .action-block-container {
        all: initial;
        width: 100%;
    }

    .action-block-container a {
        visibility: hidden;
    }

    .action-block-container-2 a {
        visibility: hidden;
    }

    .action-block {
        all: initial;
        text-align: center;
        padding: 25px;
    }

    .action-block h3 {
        font-size: 40px;
        text-align: center;
    }

    .action-block p {
        font-size: 20px;
        width: 80%;
        margin: 0 auto;
    }

    .action-block-container-2 {
        all: initial;
        width: 100%;
        background-color: #f0e6ff;
        display: block;
    }

    .action-block-container-2 a {
        visibility: hidden;
    }

    .action-block-2 {
        all: initial;
        text-align: center;
        padding: 25px;
    }

    .action-block-2 h3 {
        font-size: 40px;
        text-align: center;
    }

    .action-block-2 p {
        font-size: 20px;
        width: 80%;
        margin: 0 auto;
    }

    .hero-block p {
    width: 100%;
}
}

/* Tablets / iPads */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .action-block-2 {
        margin: 0 auto;
        text-align: center;
        padding: 25px;
        max-width: 50vw;
    }

    .action-block-2 h3 {
        font-size: 30px;
        text-align: center;
    }

    .action-block-2 p {
        font-size: 20px;
        width: 100%;
        margin: 0 auto;
    }

}

/* Small laptops */
@media screen and (min-width: 1025px) and (max-width: 1365px) {
    .action-block-container-2 a {
        width: 100%;
        text-align: center;
    }

    .action-block-container {
        width: 100%;
        align-items: center;
        height: 400px;
    }

    .action-block-container a {
        margin-right: 10vw;
        padding: 1.3% 4%;
    }

    .action-block-container-2 a {
        max-width: 10vw;
    }

    .hero-block p {
    width: 50%;
}

}











@media (max-width: 1000px) {
    .plans-4x {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .plans-4x {
        grid-template-columns: 1fr;
    }
}











@media (max-width: 900px) {
    .footer-4x-dark {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-4x-dark {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section ul li a:hover {
        padding-left: 0;
    }
}

@media (max-width: 800px) {
    .footer-4x-dark {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .footer-section {
        width: 100%;
    }

    .footer-section ul {
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a:hover {
        padding-left: 0;
        /* remove slide effect for mobile */
    }
}

@media (max-width: 800px) {
    .footer-section:first-child p:nth-child(2)::after {
        margin-left: auto;
        margin-right: auto;
    }
}



/* Center on mobile */
@media (max-width: 800px) {
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}









/* Tablet */
@media (max-width: 992px) {
    .info-4x {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .info-4x {
        grid-template-columns: 1fr;
    }
}









/* Tablet */
@media (max-width: 992px) {
    .how-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .step::after {
        display: none;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .how-steps {
        grid-template-columns: 1fr;
    }
    .step::after {
        display: none;
    }
}







@media (max-width: 1099px) {
  .features-list {
    flex-direction: column;
    gap: 30px;
  }
  .feature {
    flex: 1 1 100%;
  }
}

/* Tablet adjustments (≤992px) */
@media (max-width: 992px) {
  .feature h3 {
    font-size: 18px;
  }
  .feature p {
    font-size: 13px;
  }
  .features-list {
    gap: 25px;
  }
}

/* Small tablets / large phones (≤768px) */
@media (max-width: 768px) {
  .features-section h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }
  .feature h3 {
    font-size: 17px;
  }
  .feature p {
    font-size: 13px;
  }
  .features-list {
    gap: 20px;
  }
}

/* Mobile phones (≤600px) */
@media (max-width: 600px) {
  .features-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .feature h3 {
    font-size: 16px;
  }
  .feature p {
    font-size: 13px;
  }
}