/* =========================================
   FONT STYLES
   =========================================
*/

@import url(https://fonts.bunny.net/css?family=alexandria:200,300,400,500,600,700,800);

/* =========================================
   GLOBAL STYLING 
   =========================================
*/

:root {
  --primary-color: #004aad;
  --primary-dark-color: #065ea6;
  --secondary-color: #09202e;
  --light-color: #ffffff;
  --dark-color: #333333;
  --muted-color: #777777;
  --font-family: "Alexandria", sans-serif;
}

body,
html {
  font-family: var(--font-family);
  color: var(--muted-color);
  font-weight: 400;
  width: 100% !important;
} 

h1,
h2,
h3,
h4,
h5 {
  color: var(--dark-color);
}

h2 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 36px;
}

h3 {
  font-size: 25px;
  font-weight: 700;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

h5 {
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
}

p {
  font-size: 16px;
  line-height: 24px;
}

a {
  color: var(--primary-color);
  font-weight: 400;
}

a:hover,
a:focus {
  text-decoration: none;
  color: var(--primary-color);
}

.bg-custom-primary {
  background: var(--primary-color);
}

.header-section {
  padding: 100px 0 60px;
  background: var(--secondary-color);
  color: rgba(255, 255, 255, 0.75);
}

.first-section {
  padding-top: 130px;
}

.section {
  margin: 120px 0;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  position: relative;
  margin-top: 10px;
}

.section-title p {
  font-size: 16px;
}

.btn-custom {
  text-transform: uppercase;
  color: var(--light-color);
  background-color: var(--primary-color);
  background-image: linear-gradient(to right, var(--primary-color) 0%, var(--primary-dark-color) 100%);
  padding: 14px 34px;
  letter-spacing: 1px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.5s linear;
  border: 0;
}

.text-custom-primary {
  color: var(--primary-color);
}

label {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--muted-color);
  font-weight: 400;
  float: left;
}

.form-control {
  display: block;
  padding: 12px 14px;
  font-size: 16px;
  line-height: 1.42857143;
  color: var(--dark-color);
  background-color: var(--light-color);
  background-image: none;
  border: 2px solid #ddd;
  border-radius: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.form-control:focus {
  border-color: #999;
  outline: 0;
  -webkit-box-shadow: transparent;
  box-shadow: none !important;
}

.form-control::-webkit-input-placeholder {
  color: #777;
}

.form-control:-moz-placeholder {
  color: #777;
}

.form-control::-moz-placeholder {
  color: #777;
}

.form-control:-ms-input-placeholder {
  color: #777;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="radio"]:checked {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 191, 99, 0.2); 
  outline: none !important;
}

input[type="radio"]:checked::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom.focus,
.btn-custom:active {
  color: var(--light-color);
  background-image: none;
  background-color: var(--primary-dark-color);
}

a:focus,
.btn:focus,
.btn.focus {
  outline: none;
  outline-offset: none;
}

/* =========================================
   NAVIGATION (NAVBAR)
   =========================================
*/

#menu {
  padding: 12px 0;
  transition: all 0.8s;
}

#menu.navbar-light {
  background-color: var(--light-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.logo {
  height: 50px;
}

#menu .navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
  text-transform: uppercase;
}

#menu .navbar-nav .nav-link {
  text-transform: uppercase;
  color: #555;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 2px;
  border-radius: 0;
  margin: 9px 20px 0;
  position: relative;
}

.navbar-toggle {
  border-radius: 0;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: var(--light-color);
  border-color: var(--primary-color);
}

.navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: var(--primary-color);
}

/* =========================================
   HOME PAGE HEADER SECTION
   =========================================
*/

.intro {
  position: relative;
  display: table;
  width: 100%;
  max-width: 100vw;
  padding: 0;
  background: url(../img/home-hero.webp) center center no-repeat;
  background-color: #e5e5e5;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 200px;
  overflow-x: hidden;
}

.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* adjust darkness (0.4–0.7 works well) */
  z-index: 1;
}

.intro > * {
  position: relative;
  z-index: 2;
}

.intro h1, .header-section h1 {
  color: #fff;
  font-size: 82px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.intro h1 span {
  font-weight: 800;
  color: var(--primary-color);
}

.intro p, .header-section p {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  margin: 0 auto;
  margin-bottom: 60px;
}

header .intro-text {
  text-align: left;
}

.hero-image {
  height: 500px;
}

/* =========================================
   FEATURES SECTION
   =========================================
*/

#features {
  background: #f6f6f6;
  padding: 40px;
}

#features .fa {
  margin-bottom: 20px;
  transition: all 0.5s;
  color: #fff;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary-dark-color) 0%, var(--primary-color) 100%);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}

#features .fa .ti {
    font-size: 40px;
}

#features h4 {
  font-size: 20px;
  font-weight: 700;
  text-decoration: underline;
  text-transform: uppercase;
}

/* =========================================
   ABOUT US PAGE & SECTION
   =========================================
*/

#about {
  padding: 100px 0;
}

#about h4 {
  font-size: 22px;
  margin: 0 0 20px;
}

#about p {
  margin: 30px 0;
}

#offersSection i {
  font-size: 50px;
  color: var(--primary-color);
}

.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem
}

.timeline-steps .timeline-content {
    width: 14rem;
    text-align: center
}

.timeline-steps .timeline-content .inner-circle {
    border-radius: 1.5rem;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

.timeline-steps .timeline-content .inner-circle:before {
    content: "";
    background-color: var(--primary-color);
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
}

/* =========================================
   SERVICES SECTION
   =========================================
*/

#services {
  padding: 100px 0;
  background: var(--secondary-color);
}

#services .service-desc {
  margin: 10px 10px 20px;
}

#services .service-container {
  border: 2px solid var(--muted-color);
  padding: 20px;
}

#services .fa {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #061721;
  border-radius: 50%;
  color: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
  font-size: 50px;
}

#services h3 {
  font-weight: 500;
  padding: 5px 0;
  color: #fff;
}

#services p {
  color: rgba(255, 255, 255, 0.75);
}

#services .service-desc {
  margin-bottom: 40px;
}

/* =========================================
   TESTIMONIALS SECTION
   =========================================
*/

#testimonials {
  padding: 100px 0;
  background: #f6f6f6;
}

.testimonial {
  position: relative;
  padding: 20px;
}

.testimonial-image {
  float: left;
  margin-right: 15px;
}

.testimonial-image,
.testimonial-image img {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.testimonial-content {
  position: relative;
  overflow: hidden;
}

.testimonial-content p {
  font-size: 14px;
}

.testimonial-meta {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #666;
}

/* =========================================
   FAQS SECTION
   =========================================
*/

#faqs {
  padding: 100px 0;
}

/* =========================================
   FIBRE SEARCH PAGE
   =========================================
*/

.pac-container {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  font-family: inherit;
  z-index: 9999;
}

.pac-container::after {
  display: none;
}

.pac-item {
  padding: 12px 14px;
  font-size: 11px !important;
  line-height: 1.42857143;
  color: #444;
  cursor: pointer;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
}

.pac-item:last-child {
  border-bottom: none;
}

.pac-item:hover,
.pac-item.pac-item-selected {
  background-color: #f8f8f8;
}

.pac-icon {
  display: none;
}

.pac-item::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  background-color: #0464B4;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center / contain;
  vertical-align: middle;
}

.pac-item-query {
  font-size: 16px;
  color: #444;
  font-weight: 400;
}

.pac-item-query + span {
  font-size: 14px;
  color: #777;
}

.pac-matched {
  font-weight: 600;
  color: var(--dark-color);
}

.pac-logo::after {
  padding: 8px;
  margin: 0;
}

/* =========================================
   Footer Section
   =========================================
*/

.footer .footer-socila-icon a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 25px;
}

.footer .footer-socila-icon a:hover {
  background: #1baaa0;
}

.footer .footer-links {
  margin: 0;
}

.footer .footer-links li+li {
  padding-top: 10px;
}

.footer .footer-top {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.footer .footer-top h5,
.footer .footer-top .h5 {
  position: relative;
  font-size: 1.2rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .footer .footer-top {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
 }

@media (min-width: 992px) {
  .footer .footer-top {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
}

.footer .footer-border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

.footer .footer-border-top.dark {
  border-top: 1px solid rgba(16, 16, 16, 0.1);
 }

.footer .footer-border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-border-bottom.dark {
  border-bottom: 1px solid rgba(16, 16, 16, 0.1);
}

.bg-dark-gradient {
  background: var(--secondary-color);
}

.white-link a {
  color: rgba(255, 255, 255, 0.65);
}

a {
  text-decoration: none
}
 
.avatar-lg img {
  width:90px;
  height:90px;
}

.text-white{
  color:#fff !important;
}

/* =========================================
   Checkout Page
   =========================================
*/

.avatar-lg {
    height: 5rem;
    width: 5rem
}

.font-size-16 {
    font-size: 16px!important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: underline;
}

/* =========================================
   HTMX Loading Indicator - Centered Overlay
   =========================================
*/

.htmx-indicator {
  display: none;
}

.htmx-indicator.htmx-request {
  display: flex !important;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border-radius: 50%;
  background:
    linear-gradient(0deg, rgb(255 255 255/50%) 30%, #0000 0 70%, rgb(255 255 255/100%) 0) 50%/8% 100%,
    linear-gradient(90deg, rgb(255 255 255/25%) 30%, #0000 0 70%, rgb(255 255 255/75%) 0) 50%/100% 8%;
  background-repeat: no-repeat;
  animation: l23 1s infinite steps(12);
}

.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  border-radius: 50%;
  background: inherit;
  opacity: 0.915;
  transform: rotate(30deg);
}

.loader::after {
  opacity: 0.83;
  transform: rotate(60deg);
}

@keyframes l23 {
  100% {
    transform: rotate(1turn);
  }
}

@media (min-width:768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .25rem dotted var(--primary-color);
        width: 5.46rem;
        position: absolute;
        left: 7.5rem;
        top: .3125rem
    }
    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem dotted var(--primary-color);
        width: 9.8125rem;
        position: absolute;
        right: 7.5rem;
        top: .3125rem
    }
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   =========================================
*/

@media (max-width: 768px) {
  body {
     overflow-x: hidden;
  }
  
  .intro {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  
  .intro h1, .header-section h1 {
    font-size: 48px;
  }
  
  .intro p, .header-section p {
    font-size: 18px;
    line-height: 26px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  h4 {
    font-size: 17px;
  }
  
  h5 {
    font-size: 14px;
    line-height: 18px;
  }
  
  p {
    font-size: 15px;
    line-height: 22px;
  }

  #features {
    text-align: center;
  }

  #features .fa {
    margin: 10px auto;
  }
}

@media (max-width: 480px) {
  .intro h1, .header-section h1 {
    font-size: 36px;
  }
  
  .intro p, .header-section p {
    font-size: 16px;
    line-height: 24px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  h4 {
    font-size: 16px;
  }
  
  h5 {
    font-size: 13px;
    line-height: 17px;
  }
  
  p {
    font-size: 14px;
    line-height: 20px;
  }
  
  #features {
    padding: 100px 0;
  }
  
  .hero-image {
      height: 250px;
  }

}