/********** Template CSS **********/
:root {
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #111111;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.hidden-text {
    text-align: justify;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
    border-color:#0a58ca;
}

.btn.btn-primary:hover {
      background: #0b5ed7;
      border-color:#0a58ca;
      color: #fff;
    }

.btn.btn-white {
    color: var(--secondary);
    background: #FFFFFF;
}

.btn.btn-white:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #009CFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #dc3545;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 15px #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}

.service-list a {
    margin-bottom: 7px;
    padding: 12px 15px;
    border-radius: 6px 30px 30px 6px;
    transition: .5s;
}

.service-list a:last-child {
    margin-bottom: 0;
}

.service-list a:hover {
    color: var(--light) !important;
    background: var(--primary) !important;
}

.service-list a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 0;
    transition: .5s;
    opacity: 0;
}

.service-list a:hover::before {
    opacity: 1;
    margin-right: 10px;
}

.list-note {
    padding: 0;
    list-style: none;
}

.list-note li {
    position: relative;
    display: flex;
    padding-bottom: 25px;
}

.list-note li::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 20px;
    background: #DEE2E6;
    z-index: -1;
}

.list-note li:last-child {
    padding-bottom: 0;
}

.list-note li:last-child:after {
    display: none;
}

.list-note li span {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dark);
    font-weight: 500;
    border: 1px solid #DEE2E6;
    border-radius: 40px;
    background: #FFFFFF;
}

.list-note li p {
    margin: 0;
}


  .service-item {
    transition: all 0.4s ease-in-out;
    background: #ffffff;
    border: 1px solid #eee;
  }

  .service-item:hover {
    background: transparent; /* light blue shade */
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  }

  .service-item img {
    transition: transform 0.4s ease-in-out;
  }

  .service-item:hover img {
    transform: scale(1.05);
  }

  .service-item h4 {
    transition: color 0.3s ease-in-out;
  }

  .service-item:hover h4 {
    color:  #009CFF;
  }

/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}

#project-flters .btn {
    padding: 0 10px;
}

#project-flters .btn:hover,
#project-flters .btn.active {
    color: #009CFF !important;
}

.project-info li {
    margin-bottom: 7px;
    padding: 12px 15px;
    background: #FFFFFF;
    border-radius: 6px 30px 30px 6px;
    transition: .5s;
}

.project-info li:last-child {
    margin-bottom: 0;
}

.project-info li:hover {
    color: var(--light);
    background: #009CFF !important;
}

.project-info li span:first-child {
    color: var(--dark);
    font-weight: 500;
}

/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
    border-color:#0d6efd;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item  {
    transition: .5s;
    text-align:justify;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #009CFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0d6efd;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: #0d6efd;
    background: #009CFF;
}


/*** Blog ***/
.blog-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.1);
}

.blog-item .blog-text {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .1) 50%, rgba(0, 0, 0, .9));
}

.blog-item .blog-text a {
    color: #FFFFFF;
    transition: .5s;
}

.blog-item .blog-text a:hover {
    color: var(--primary);
}

.blog-item .breadcrumb-item+.breadcrumb-item::before {
    color: #FFFFFF;
}

.category-list a {
    margin-bottom: 7px;
    padding: 12px 15px;
    border-radius: 6px 30px 30px 6px;
    transition: .5s;
}

.category-list a:last-child {
    margin-bottom: 0;
}

.category-list a:hover {
    color: var(--light) !important;
    background: var(--primary) !important;
}

.category-list a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 0;
    transition: .5s;
    opacity: 0;
}

.category-list a:hover::before {
    opacity: 1;
    margin-right: 10px;
}

.blog-meta a {
    color: var(--secondary);
}

.blog-meta a:hover {
    color: var(--primary);
}

.blog-tab .nav-pills .nav-item .active {
    border-bottom: 5px solid #DEE2E6;
}

.blog-tab .tab-content img {
    width: 75px;
    height: 75px;
    object-fit: cover;
}

.related-carousel .owl-nav {
    position: absolute;
    width: 80px;
    top: -52px;
    right: 0;
    display: flex;
}

.related-carousel .owl-nav .owl-prev,
.related-carousel .owl-nav .owl-next {
    margin-left: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border: 1px solid #DEE2E6;
    border-radius: 30px;
    font-size: 14px;
    transition: .3s;
}

.related-carousel .owl-nav .owl-prev:hover,
.related-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Pricing ***/
.price-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.price-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Contact ***/
.contact-form .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*** Footer ***/

  .footer-link {
    color: #bbb;
    display: block;
    padding: 5px 0;
    text-decoration: none;
    transition: 0.3s;
  }
  .footer-link:hover {
    color: #fff;
    padding-left: 5px;
  }
  .btn-social {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 26px;
    border: 1px solid #777;
    color: #ddd;
    transition: all 0.3s ease;
  }
  .btn-social:hover {
    background-color: #009CFF;
    border-color: #009CFF !important;
    color: #fff;
  }
  .navbar-toggler-icon {
background-color:#009CFF;
}

.bg-dark {
    background-color: #000 !important;
}
  .about-section p {
    text-align: justify;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333;
  }

  .about-section strong {
    font-size: 1.2rem;
    color: #009CFF;
  }

  .about-section h5 {
    font-weight: 700;
    margin-top: 1.5rem;
    color: #009CFF;
    border-left: 4px solid #009CFF;
    padding-left: 8px;
  }

  .about-section .custom-bullets li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.75rem;
    text-align: justify;
  }

  .about-section .custom-bullets li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #009CFF;
    font-size: 1.1rem;
  }

  .custom-bullets li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  line-height: 1.6;
  text-align: justify;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    /*color: #000000;*/
}

.custom-bullets li i {
  color: #009CFF; /* Primary accent color */
  font-size: 18px;
  margin-right: 10px;
  margin-top: 3px; /* Align icon with text */
  flex-shrink: 0;
}

  .contact-form .form-control {
    border-radius: 50px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    height: 55px;
    padding-left: 2.5rem !important; /* Push text right of icon */
  }

  .contact-form textarea {
    border-radius: 20px !important;
    height: 165px !important;
    padding-left: 2.5rem !important; /* Push text right of icon */
  }

  .contact-form label {
    padding-left: 2.5rem !important; /* Push label right of icon */
  }

  .contact-form .form-control:focus {
    border-color: #0d6efd;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.2);
  }

  .icon-left {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0d6efd;
    font-size: 1rem;
    pointer-events: none;
  }
.border-secondary {
    border-color: black !important;
}
.bg-transparent {
    background-color: black !important;
}


 

    .highlight {
      color: #dc3545;
    }
    .form-container {
      background: #355c7d;
      border-radius: 12px;
      padding: 30px;
      margin: 0px auto;
      box-shadow: 0px 8px 20px #002e5f;
      margin-bottom: 50px;
      /* responsive sizing */
      width: 95%;
      max-width: 800px;
    }
    .form-control, .form-select {
      /* background-color: #111; */
      border: 1px solid #2a3248;
      /* color: #fff; */
    }
    .form-control::placeholder {
      color: #777;
    }
    .form-control:focus, .form-select:focus {
      /* border-color: #00ff88; */
      box-shadow: none;
    }
.btn-green {
  background-color: #009CFF;
  border-color: #1aa6ff;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  padding: 8px 16px;   /* smaller padding */
  width: auto;         /* no full width */
  font-size: 14px;     /* optional: smaller text */
}

    .btn-green:hover {
      background: #0b5ed7;
      border-color:#0a58ca;
      color: #fff;
    }
    .note {
      font-size: 0.9rem;
      color: #fff;
    }
    .form-label {
      font-weight: 500;
    }
    .badge {
      display: inline-block;
      width: 100%;
      max-width: 800px;
      font-weight: 700;
      letter-spacing: .02em;
      background: rgba(94, 225, 167, .12);
      color: #5ee1a7;
      border: 1px solid rgba(94, 225, 167, .35);
      padding: 8px clamp(20px, 10vw, 120px); /* responsive padding */
      border-radius: 999px;
      font-size: clamp(12px, 3vw, 14px);
      box-sizing: border-box;
    }
    h2 {
      margin: 30px 0 30px;
      line-height: 1.2;
      font-size:40px;
      font-weight: 700;
      color:#111;
      font-family: "Open Sans",sans-serif;
    }
    .text-secondary{
      font-size: 16px;
     color:#FFF !important;
         font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    }
    /* Responsive adjustments */
    @media (max-width: 576px) {
      .plan-details {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px;
      }
      .form-container {
        padding: 20px; /* reduce padding on very small screens */
      }
    }
    
    
    .border {
    border: 3px solid #dc3545 !important;
}


