 :root {
      --primary-color: #ef9b1e;
      --secondary-color: #123a5e;
      --light-gray: #f5f5f5;
    }

body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f8f9fa;
    }

/*****************************   Header code   **********************************************/
 .navbar-brand img {
      max-height: 50px;
    }

    .nav-link {
      font-weight: 500;
    }

    .login-btn {
      background-color: #ef9b1e;
      color: #fff !important;
      font-weight: bold;
      padding: 6px 15px;
      border-radius: 8px;
    }

    /* Hover dropdown for desktop */
    @media (min-width: 992px) {
      .offcanvas {
        display: none !important;
      }

      .navbar-nav {
        align-items: center;
      }

      .navbar-collapse {
        display: flex !important;
        justify-content: flex-end;
      }

      .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
      }
    }

    /* Mobile dropdowns inside offcanvas */
    .offcanvas .dropdown-menu {
      display: none;
      padding-left: 1rem;
      background-color: #f9f9f9;
      border: none;
    }

    .offcanvas .dropdown.show .dropdown-menu {
      display: block;
    }

    .offcanvas .dropdown-toggle::after {
      float: right;
      margin-top: 8px;
    }

/*****************************   Header code End   **********************************************/



/*******************************   Home page gradient section main section CSS ********************/
   .cat-block {
        transition: background-color 0.3s ease-in-out;
    }
    .cat-block:hover {
        background-color: #e23f29; /* Light gray background on hover */
        color:#ffffff;
    }
    
    
 .gradient-box {
      background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
      transition: background 0.5s ease;
      border-radius: 12px;
      color: white;
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .gradient-box:hover {
      background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    }

    .icon-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      background-color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.5s ease;
    }

    .icon-circle img {
      width: 90%;
      height: auto;
      transition: transform 0.6s ease-in-out;
    }

    /* Rotate the image when parent box is hovered */
    .gradient-box:hover .icon-circle img {
      transform: rotate(360deg);
    }

    .section-btn {
      background-color: white;
      color: orange;
      border: none;
      font-weight: bold;
    }

    .section-btn:hover {
      background-color: #ffcc80;
      color: black;
    }
    
    /**********************************  End Gradient section **********************************************/
    
    
    
    /**********************************  Footer code Start    *********************************************/

.bg-blue{
    background-color: var(--secondary-color);
}
a.social_link:hover > i{
    background-color:var(--primary-color);
}

.btn-dark:hover,.btn-dark:active,.btn-dark:focus{
    background-color:var(--primary-color)!important;;
}

/************************************   Footer Code End  *******************************************************/

/****************************  SET LIST Page  ***********************************/
 .hero {
      background: var(--primary-color);
      padding: 50px 0;
      text-align: center;
    }

    .hero h1 {
      font-weight: 700;
      color: var(--secondary-color);
      font-size: 2.5rem;
    }

    .breadcrumb a {
      text-decoration: none;
      color: #007bff;
    }

    .paper-btn {
      width: 100%;
      padding: 15px;
      border-radius: 15px;
      border: none;
      background-color: var(--primary-color);
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      font-weight: 600;
      font-size: 1.1rem;
      color: #ffffff;
      transition: all 0.3s ease;
    }

    .paper-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      background-color: var(--secondary-color);
      color: #ffffff;
    }

 
/*****************************   END SET LIST PAGE  ****************************************/    


/****************************  EXAM DETAIL PAGE   *****************************************/

 .section-title {
      font-size: 2.5rem;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .section-subtitle {
      font-size: 1.2rem;
      color: #555;
      margin-bottom: 40px;
    }

    .overview-card {
      border: none;
      border-radius: 12px;
      background-color: var(--secondary-color);
      color: #fff;
      transition: transform 0.3s ease;
    }

    .overview-card:hover {
      transform: translateY(-5px);
    }

    .overview-card i {
      font-size: 2rem;
      color:  var(--primary-color);
      margin-bottom: 10px;
    }

    .start-button {
      background-color: var(--primary-color);
      color: #fff;
      border: none;
      padding: 15px 30px;
      font-size: 1.1rem;
      border-radius: 8px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .start-button:hover {
      background-color: #d88a1a;
      transform: scale(1.05);
    }
    
    
    
/*******************************   END EXAM DETAIL PAGE    ************************************/

/*******************************   EXAM PAPER PAGE START   ***********************************/

   .question-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      padding: 20px;
    }

    .ans-list li {
      list-style: none;
      padding: 10px 15px;
      background: #f1f1f1;
      border-radius: 8px;
      margin-bottom: 10px;
      cursor: pointer;
      transition: 0.2s;
    }

    .ans-list li.selected {
      background-color: var(--secondary-color);
      color: #fff;
    }

    .indicator {
      display: inline-block;
      width: 30px;
      height: 30px;
      line-height: 28px;
      text-align: center;
      margin: 4px;
      background-color: #e0e0e0;
      border-radius: 50%;
      cursor: pointer;
      font-weight: bold;
      color: #000;
    }

    .indicator.active {
      background-color: var(--primary-color);
      color: #fff;
    }

    .theme-btn {
      background-color: var(--primary-color);
      color: #fff;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .mobile-header {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 1000;
        padding: 15px;
        border-bottom: 1px solid #ddd;
      }
    }




/*******************************   EXAM PAPER PAGE END   ***********************************/


/*******************************  Result Details Page   ***********************************/

.card {
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .card-title {
      font-size: 26px;
      font-weight: 600;
     
    }

    .result-row {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid #e9ecef;
    }

    .result-row:last-child {
      border-bottom: none;
    }

    .label {
      font-weight: 500;
      color: #555;
    }

    .value {
      font-weight: 500;
      color: #222;
    }

    .final-result.fail {
      color: red;
      font-weight: bold;
    }

    .final-result.pass {
      color: green;
      font-weight: bold;
    }

    .btn-custom {
      background-color: #e63946;
      color: white;
    }

    .btn-custom:hover {
      background-color: #d62828;
    }
    
    
    /************************************   END Result Details Page  ****************************************/





section.course-cat1.py-5 {
    background: #e76e5636;
}
section.course-cat2.py-5 {
    background: #fbdfb1;
}
.la-instagram,.la-facebook-f,.la-linkedin-in,.la-youtube{
    background:#333333;
    color:#ffffff;
    border-radius: 50%;
}


.text-red{
    color: #e23f29;
}
.ft-20{
    font-size: 20px;
}
.theme-btn{
    background-color: #e23f29;
    color:#ffffff;
    padding:9px 15px;
    min-width:150px;
    font-size: 19px!important;

}
.theme-btn:hover{
    background-color: #333333;
    color:#ffffff;
    padding:9px 15px;
    min-width:150px;
}
.icon i{
    font-size: 30px;
    background-color: #333;
    color:#fff;
}
.cat-title {
    color: #333333;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}
.ans-list{
    list-style: none;
    padding-left: 0;
}
.ans-list li{
    padding: 10px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    background: #f9f9f9;
    margin-bottom: 10px;
}
.que-list{
    list-style: none;
    padding-left: 0;
}
.que-list li {
    display: inline-block;
    margin:5px;
    
}

.que-list li label {
    padding: 10px;
    background-color: #e7e7e7;
    border-radius: 50px;
    margin: 3px 0;
    
}
/****************************  Slick Slider Code  ********************************/

    .slick-slide {
      margin: 0px 15px;
    }

    .slick-slide img {
      width: 100%;
    }

    .slick-prev:before,
    .slick-next:before {
      color: black;
    }


    .slick-slide {
      transition: all ease-in-out .3s;
      opacity: 1;
    }
    
    .slick-active {
      opacity: 1;
    }

    .slick-current {
      opacity: 1;
    }
span.theme-text-color {
    color: #e23f29;
}
.hover-bg:hover .cat-block{
 background-color:#e23f29;   
}

.newbox{
    background-color: #fff;
    box-shadow: 0 0 10px rgba(21,87,153,.08);
    padding: 25px 20px 19px;
    border-radius: 10px;
    transition: all .4s ease-in-out;
        margin-bottom: 30px;
}
.coltopmg{
    top: 60px;
    position: relative;
}
a{
    text-decoration: none;
}
.ft-20{
    font-size: 18px;
}


@media(min-width:992px){
    .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 50px!important;
    z-index: 1020;
}
}
   @media (max-width: 768px) {
      .hero h1 {
        font-size: 1.8rem;
      }
    }
    


