
.heading-font {
   font-family: 'Jost', sans-serif;
}

p {
  font-family: 'Poppins', sans-serif;

}

.bg-prime {
  background-color: #192151;
}
      
      .cl-primary {
          color:#10609b !important;
      }

      .fav-color {
        color: #2ab9f1;
      }

      .fs-13 {
        font-size: 13px;
      }
      
      .justify {
        text-align: justify;
      }

      /* Custom hover effect */
.custom-card {
  transition: all 0.3s ease;
}

.mt-24 {
  margin-top: 24px ;
}

.custom-card:hover {
  transform: scale(1.05);
  border-color: #10609b; /* Bootstrap primary color */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  cursor: pointer;
}
.custom-card:hover h5 {
  
  color: #10609b; 
}

      
      .custom-sticky-tabs {
        position: relative;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        margin: 2rem auto; /* Center the tabs */
        width: 90%; /* Ensure it takes up 90% of the container */
        max-width: 1200px; /* Maximum width to prevent it from stretching too far */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .custom-sticky-tabs.sticky {
        position: sticky; 
        top: 10px; 
        left: 50%;
        /*transform: translateX(-50%);*/
        width: 90%;
        max-width: 1200px;
        margin: 0;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 0.98);
      }

      .fs-16 {
        font-size: 14px;
      } 

      .nav-tabs {
        border-bottom: none;
        padding: 0.5rem 1rem;
      }

      .nav-tabs .nav-link {
        background: transparent;
        border: none;
        color: #4a5568;
        font-weight: 500;
        font-size: 0.95rem;
        border-radius: 8px;
        margin: 0 0.25rem;
        padding: 0.75rem 1.25rem;
        position: relative;
        text-decoration: none;
      }

      .nav-tabs .nav-link:hover {
        color: #667eea;
        background: rgba(102, 126, 234, 0.1);
      }

      .nav-tabs .nav-link.active {
        color: #667eea;
        /* background: rgba(102, 126, 234, 0.15); */
        font-weight: 600;
      }

      .nav-tabs .nav-link.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: #667eea;
        border-radius: 2px;
      }

      .tab-section {
        padding: 4rem 0;
        background: rgba(255, 255, 255, 0.9);
        margin: 2rem 0;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      }

      .section-title {
        color: #2d3748;
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
      }

      .section-content {
        color: #4a5568;
        line-height: 1.7;
        /* max-width: 800px; */
        margin: 0 ;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .custom-sticky-tabs.sticky {
          width: 100%;
          border-radius: 0;
        }

        .nav-tabs .nav-link {
          padding: 0.6rem 0.8rem;
          font-size: 0.9rem;
          margin: 0 0.1rem;
        }

        .tab-section {
          padding: 2rem 0;
        }
      }


        /* 
        
        */


        /* 
        
        */


          .mt-22 {
            margin-top: 1px;
          }
          .highlight-card {
            background: #fff;
            border-radius: 3px;
            /* padding: 2px; */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            margin-bottom: 2px;
            height: 100%; /* Added to make cards same height */
          }

          .highlight-card h3 {
            color: #2d3748;
            font-weight: 600;
            margin-bottom: 10px;
          }

          .highlight-card p {
            color: #4a5568;
            font-size: 1rem;
          }

          .highlight-card.blue-bg {
            background-color: #192151;
            color: white;
          }

          .highlight-card.blue-bg h3,
          .highlight-card.blue-bg p {
            color: white;
          }

          /* Ensure the columns also have the same height */
          .col-md-4 {
            display: flex;
            flex-direction: column;
          }





      /* 
      
      */


      /* 
      
      */







          
          .faq-accordion .accordion-item {
            border: none;
            border-bottom: 1px solid #dee2e6;
          }
          .faq-accordion .accordion-item:first-of-type {
            border-top: 1px solid #dee2e6;
          }

          .faq-accordion .accordion-button {
            background-color: transparent;
            color: #192151;
            font-weight: 600;
            font-size: 1.2rem;
            padding: 1.5rem 1.25rem;
            box-shadow: none;
          }

          .faq-accordion .accordion-button:not(.collapsed) {
            color: #192151;
            background-color: transparent;
          }

          .faq-accordion .accordion-button:focus {
            border-color: transparent;
            box-shadow: none;
          }

          .faq-accordion .accordion-button::after {
            flex-shrink: 0;
            width: 1.25rem;
            height: 1.25rem;
            margin-left: auto;
            content: "+";
            font-size: 1.8rem;
            font-weight: 300;
            background-image: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateY(-2px);
          }

          .faq-accordion .accordion-button:not(.collapsed)::after {
            content: "−";
            transform: translateY(-2px);
          }

          .faq-accordion .accordion-body {
            padding: 0 1.25rem 1.5rem;
            color: #4a5568;
            line-height: 1.6;
          }

/* 


*/
          .img-border {
            border: 10px solid #ffffff;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
          }
          .section-title {
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
            font-weight: 600;
            text-transform: uppercase;
          }
          .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary);
          }


          /* 
          
          
          
          */


          .card-hover {
            transition: background-color 0.3s ease, color 0.3s ease;
          }

          .card-hover:hover {
            background-color: #10609b;
            color: white !important;
          }

          .text-color {
            color: #333; /* Default text color */
            transition: color 0.3s ease;
          }

          .icon-color {
            transition: color 0.3s ease;
          }

          .card-hover:hover .text-color {
            color: white !important;
          }

          .card-hover:hover .icon-color {
            color: white !important;
          }


          /* 
          
          
          */


            .who-should-enroll-list li {
          margin-bottom: 1rem;
          display: flex;
          align-items: flex-start;
            }
            .who-should-enroll-list i {
          color: var(--primary);
          margin-top: 4px;
            }

            /* 
            
            
            */


            /* Scroll To Top */
#scroll-percentage {
  position: absolute;
}

.scroll-top {
  height: 60px;
  width: 60px;
  background-color: var(--handyfix-white, #fff);
  border-radius: 50%;
  position: fixed;
  bottom: 25px;
  left: 30px;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}

.scroll-top.active {
  bottom: 30px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  animation: 500ms ease-in-out 0s normal none 1 running scroll-Top;
  transition: 0.3s;
}

.scroll-top-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background-color: var(--handyfix-base, #0F3567);
  color: var(--handyfix-white, #fff);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
}

.scroll-top-value i {
  font-size: 20px;
}

@-webkit-keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}


/* 

*/

/* .footer-link-head {
   position: relative;
  display: inline-block; 
  padding-bottom: 20px;
}
.footer-link-head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 60%;
  transform: translateX(-50%);
  width: 200px; 
  height: 1px;
  background: #2ab9f1;
}

.link-bottom-con {
 text-decoration: none;
 color: white;
 text-transform: uppercase;
 font-size: 13px;
 letter-spacing: 2px;
} */


/* 

*/
  .anm {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  .anm:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  

  /* 
  
  */


  
  
  
  .reveal-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .reveal-footer {
    position: static;
  }
}

.footer-widget-wrapper {
  margin-bottom: -35px;
}

/* .footer-widget {
  margin-bottom: 30px;
} */
.footer-widget__title {
  margin-top: -3px;
  color: #2c5989;
  font-family: "Jost", serif !important;
}

.footer-widget__list li {
  color: rgb(46, 44, 44);
  font-size: 13px !important;
  font-family: "Jost", serif !important;
}

.footer-widget__list li:last-child {
  margin-bottom: 0;
}
.footer-widget__list li .image_btn {
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
  overflow: hidden;
}

.social-group__list .ht-social-networks.tilte-style .link-text {
  color: #cccccc;
}
.social-group__list .ht-social-networks.tilte-style .link-text::before {
  background: rgba(255, 255, 255, 0.2);
}
.social-group__list .ht-social-networks.tilte-style .link-text:hover {
  color: #ffffff;
}
.social-group__list .ht-social-networks.tilte-style .social-link::before {
  color: #ccc;
}

.copyright-text {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .copyright-text {
    margin-bottom: 15px;
  }
}

.bg-mediumslateblue {
  background-color: #412977;
}

ul.footer-widget__horizontal-list {
  margin-bottom: 20px;
}
ul.footer-widget__horizontal-list li {
  display: inline-block;
  margin: 10px;
  color: #ffffff;
}

.ht-social-white.ht-social-networks .item {
  color: #fff;
}



.ht-social-networks .item {
  display: inline-block;
}
.ht-social-networks .item .social-link {
  display: block;
  padding: 5px 8px;
}
.ht-social-networks.large-icon .social-link {
  padding: 5px 13px;
  font-size: 20px;
}
.ht-social-networks.extra-large-icon .social-link {
  padding: 5px 15px;
  font-size: 30px;
}
.ht-social-networks.flat-round .item,
.ht-social-networks.solid-rounded-icon .item {
  margin: 8px;
}
.ht-social-networks.flat-round .social-link,
.ht-social-networks.solid-rounded-icon .social-link {
  font-size: 18px;
  display: block;
  text-align: center;
  height: 48px;
  width: 48px;
  line-height: 40px;
  background: #ededed;
  color: black;
  border-radius: 50%;
  position: relative;
}
.ht-social-networks.flat-round .social-link:hover,
.ht-social-networks.solid-rounded-icon .social-link:hover {
  color: #ffffff;
  background: #192151;
}
.ht-social-networks.solid-rounded-icon .social-link {
  background: transparent;
  border: 1px solid black;
}
.ht-social-networks.solid-rounded-icon .social-link:hover {
  border: 1px solid #192151;
  color: #ffffff;
}
.ht-social-networks.solid-rounded-icon.social-white .social-link {
  color: #ffffff;
}
.ht-social-networks.solid-rounded-icon.social-white .social-link:hover {
  border: 1px solid #ffffff;
  color: #192151;
  background: #ffffff;
}
.ht-social-networks.icon-tilte .link-icon {
  font-size: 16px;
  min-width: 16px;
  margin-right: 10px;
}
.ht-social-networks.tilte-style .social-link {
  position: relative;
}
.ht-social-networks.tilte-style .social-link::before {
  content: "-";
  position: absolute;
  top: 50%;
  left: -5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #333;
}
.ht-social-networks.tilte-style .social-link:hover .link-text::after {
  background-color: var(--main-blue);
  width: 100%;
  left: 0;
}
.ht-social-networks.tilte-style .item:first-child .social-link::before {
  display: none;
}
.ht-social-networks.tilte-style .link-text {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: #333;
  position: relative;
  padding: 5px 0;
  z-index: 1;
}
.ht-social-networks.tilte-style .link-text::before {
  content: "";
  height: 2px;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: -2;
  background: rgba(0, 0, 0, 0.2);
}
.ht-social-networks.tilte-style .link-text::after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
}
.ht-social-networks.white-tilte-social .social-link::before {
  color: rgba(255, 255, 255, 0.7);
}
.ht-social-networks.white-tilte-social .social-link:hover .link-text::after {
  background-color: #ffffff;
}
.ht-social-networks.white-tilte-social .link-text {
  color: #fff;
}
.ht-social-networks.white-tilte-social .link-text::before {
  background: rgba(255, 255, 255, 0.7);
}



   .heading-font {
            font-family: 'DIN', sans-serif;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .services-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 80px 0;
        }
        
        .section-title {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .section-description {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 1rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            position: relative;
            overflow: hidden;
            transform: translateY(0);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: all 0.5s;
        }
        
        .service-card:hover::before {
            left: 100%;
        }

        
        .service-icon {
            font-size: 3.5rem;
            color: #F56422;
            margin-bottom: 1.5rem;
            display: block;
            text-align: center;
            transition: all 0.4s ease;
            animation: float 3s ease-in-out infinite;
        }
        
   
        .service-title {
            font-family: 'DIN', sans-serif;
            font-weight: 600;
            color: #2c3e50;
            font-size: 1.2rem;
            text-align: center;
            margin: 0;
            line-height: 1.4;
            transition: all 0.3s ease;
        }
        
   
        
        /* Floating animation for icons */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        /* Fade in animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        /* Stagger animation delays */
        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }
        .service-card:nth-child(7) { animation-delay: 0.7s; }
        .service-card:nth-child(8) { animation-delay: 0.8s; }
        
        /* Pulse effect for cards */
        @keyframes pulse {
            0% {
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            50% {
                box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
            }
            100% {
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
        }
        
        /* .service-card:hover {
            animation: pulse 1.5s infinite;
        }
         */
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .service-card {
                padding: 2rem 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .service-icon {
                font-size: 3rem;
                margin-bottom: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .services-section {
                padding: 60px 0;
            }
        }
        
        /* Gradient text effect */
        .gradient-text {
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Additional hover effects */
        .service-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            transition: all 0.5s ease;
            transform: translate(-50%, -50%);
            border-radius: 50%;
        }
        
        .service-card:hover::after {
            width: 300px;
            height: 300px;
        }