
/*** Spinner Start ***/
/*** 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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0%  {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}

    25% {border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;}

    50% {border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;}

    75% {border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;}

    100% {border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;}
}
/*** Icon Animation End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/
.features-wrapper {
    background: linear-gradient(#000c3f 0, #001a66 40%, #002080 70%, #002080 100%);
    padding: 60px 50px 20px;
    border-radius: 27px
}

.features-wrapper .single-feature .feature-content h5 {
    font-size: 25px;
    margin-bottom: 20px;
    color: #fff
}

.features-wrapper .single-feature .feature-content p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0
}
/*** Feature ***/
.feature-item,
.advanced-feature-item {
    height: 100%;
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}

.advanced-feature-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.advanced-feature-item * {
    transition: .5s;
}

.advanced-feature-item:hover {
    background: var(--primary);
}

.advanced-feature-item:hover * {
    color: #FFFFFF !important;
}

 .mentor-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }
    .section-title {
      color: #013d73;
      font-weight: 700;
    }
    .subtitle {
      color: #c2d73c;
      font-weight: 600;
    }
    .tagline {
      font-size: 1.1rem;
      font-weight: 500;
      color: #444;
    }
    blockquote {
      border-left: 5px solid #c2d73c;
      padding-left: 1rem;
      margin-top: 1.5rem;
      font-style: italic;
      background: #f8f9fa;
      color: #222;
    }
    .btn-custom {
      background-color: #013d73;
      color: #fff;
      border-radius: 30px;
      padding: 10px 25px;
      font-weight: 600;
      text-decoration: none;
    }
    .btn-custom:hover {
      background-color: #c2d73c;
      color: #013d73;
    }
/*** Cars Categories Start ***/
.categories .categories-item {
    position: relative;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item:hover {
    border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
    box-shadow: 0 0 50px rgba(234, 0, 30, .3);
}

.categories .categories-item-inner .categories-img {
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
    border-top: 4px solid var(--bs-white);
    text-align: center;
    background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-carousel .owl-stage-outer {
    margin-top: 65px;
    margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
    position: absolute;
    top: -65px;
    padding: 10px 35px;
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 50px;
    transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
    right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** Cars Categories End ***/


 .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color: white;
    }

    .support {
        text-align: right;
        display: flex;
    }

    /* Sticky Navbar */
    #header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background-color: white;
        border-bottom: 1px solid #ccc;
    }

    /* Responsive Adjustments */
    /* Responsive Adjustments */
   @media (max-width: 767.98px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .logo {
        text-align: center;
        width: 100%;
    }

    .logo img {
        width: 220px;
        display: block;
        margin: 0 auto;
    }

    .support {
        display: none !important; /* hides button on mobile */
    }
}

    .workshop-card {
      border: 1px solid #ddd;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      background-color: #fff;
      margin-bottom: 30px;
    }

    .card-header {
      background-image: url('https://i.postimg.cc/XYm2bTkH/images5.webp'); /* Replace with your own image */
      background-size: cover;
      background-position: center;
      text-align: center;
      padding: 40px 10px;
      color: white;
    }

    .card-header h2 {
      font-size: 28px;
      font-weight: bold;
    }

    .card-body {
      padding: 25px 20px;
    }

    .card-body h4 {
      font-weight: bold;
      margin-bottom: 15px;
      color: #013d73;
    }

    .card-body ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
    }

    .card-body ul li {
      font-size: 16px;
      margin-bottom: 12px;
      line-height: 1.6;
      color: #333;
      display: flex;
      align-items: center;
    }

    .card-body ul li i {
      color: navy;
      margin-right: 10px;
    }

    @media (min-width: 992px) {
      .card-col {
        display: flex;
        justify-content: center;
        align-items: stretch;
      }
    }

 /* Popup styles */
    .popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .popup {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      width: 300px;
      position: relative;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

    .popup h2 {
      margin: 0 0 15px 0;
      text-align: center;
      font-size: 20px;
    }

    .popup .close-btn {
      position: absolute;
      top: 0;
      right: 0;
      transform: translate(50%, -50%);
      background: #ccc;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 20px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
      z-index: 1000;
    }

    .popup .close-btn:hover {
      background: #999;
      color: white;
    }

    .popup form input {
      width: 100%;
      padding: 10px;
      margin-top: 10px;
      border-radius: 8px;
      border: 1px solid #ccc;
    }

    .popup form button {
      width: 100%;
      margin-top: 15px;
      padding: 12px;
      background-color: #0b8f65;
      color: white;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    .popup form button:hover {
      background-color: #056e50;
    }
/*** Process Start ***/
.steps {
    background:url(https://i.postimg.cc/D0Mwj6Tb/Website-banner-149-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.steps .steps-item {
    position: relative;
    background: var(--bs-light);
    border-radius: 10px;
}

.steps .steps-item h4,
.steps .steps-item p {
    color: var(--bs-primary;
}


/*** Process End ***/
/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

 .card {
      background: #ffffff;
      padding: 30px;
      max-width: 500px;
      width: 100%;
      text-align: center;
      border-radius: 16px;
      border: 1px solid #e0e0e0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .card h1 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #013d73;
    }

    .card ul {
      list-style: none;
      padding: 0;
      text-align: left;
    }

    .card li {
      position: relative;
      margin: 12px 0;
      padding: 12px 16px;
      background-color: #f9f9f9;
      border-left: 5px solid #c2d73c;
      border-radius: 10px;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .card li:hover {
      background-color: #eeeeee;
      transform: translateX(4px);
    }

    .card li::before {
      content: '✔️';
      position: absolute;
      left: -28px;
      top: 50%;
      transform: translateY(-50%);
    }

    @media (max-width: 600px) {
      .card {
        padding: 20px;
      }

      .card h1 {
        font-size: 1.6rem;
      }

      .card li {
        font-size: 1rem;
      }
    }
/*** FAQs Start ***/
.faq-section .accordion .accordion-item {
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border: none;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(246, 138, 10, .9);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
    background: var(--bs-light);
}
/*** FAQs End ***/
