a {
    color: #5B3A29;
    /* Bright blue color for links */
    text-decoration: none;
  }
  .topic {
    background: linear-gradient(to right, #C49A6A, #A68B5D);
    /* Light brown gradient */
    color: #fff;
    /* White text for contrast */
    padding: 20px 0;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }


  a:hover {
    text-decoration: underline;
  }

  /* Main Heading */
  h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: #5B3A29;
    /* Darker color for main headings */
    text-align: center;
    margin-bottom: 30px;
    transition: color 0.3s ease;
  }

  h1:hover {
    color: #A68B5D;
    /* Blue color on hover */
  }

  /* Subheadings */
  h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    color: #5B3A29;
    /* Slightly lighter than main heading color */
    text-align: center;
    margin-bottom: 20px;
  }

  /* Paragraph */
  /* p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #A68B5D;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
  } */

  .wrk_container {
    background-color: #999999;
    padding: 40px;
    text-align: center;
  }

  .wrk_container h2 {
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
  }

  .wrk_container p {
    font-style: italic;
    color: #5B3A29;
  }

  .btn-box {
    margin-top: 20px;
  }

  .btn-box a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5B3A29;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .btn-box a:hover {
    background-color: #5d6063;
    color: #fff;
  }

  .head_container h2,
  .head_container1 h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .head_container1 p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #ecf0f1;
    line-height: 1.6;
  }

  /* Buttons */

  .btn-box1 {
    text-align: center;
    margin-top: 20px;
  }


  .btn-box1 a {
    display: inline-block;
    padding: 12px 24px;
    background-color: #5B3A29;
    /* Bright blue for buttons */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }


  .btn-box1 a:hover {
    background-color: #A68B5D;
    transform: scale(1.05);
    /* Slight zoom effect on hover */
  }

  /* Section Styles */
  .sectiontitle {
    text-align: center;
    margin-bottom: 50px;
  }

  .sectiontitle h6.heading {
    font-size: 2.2rem;
    color: #5B3A29;
    margin-bottom: 15px;
  }

  .sectiontitle p {
    font-size: 1.2rem;
    color: #A68B5D;
  }

  /* Article Styles */
  article {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
  }

  article:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }

  article a.ringcon {
    display: block;
    font-size: 2.5rem;
    color: #A68B5D;
    /* Blue color for icons */
    margin-bottom: 15px;
  }

  article a.ringcon:hover {
    color: #5B3A29;
  }

  article h6.heading {
    font-size: 1.8rem;
    margin: 10px 0;
    color: #5B3A29;
  }

  article p {
    font-size: 1rem;
    color: #A68B5D;
  }
  .footer {
    text-align: center;
    padding: 20px 0;
    background: #5B3A29;
    /* Dark brown */
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  /* Responsive Layout */
  .group {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .one_third {
    width: 30%;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  .one_third i {
    color:dodgerblue;
    font-size: 30px;
  }

  .one_third.first {
    margin-left: 0;
  }

  @media (max-width: 768px) {
    .one_third {
      width: 100%;
      margin-bottom: 20px;
    }
  }

  .nospace {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .nospace li {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .nospace li:hover {
    background-color: #ecf0f1;
    /* Light gray background on hover */
    transform: translateY(-5px);
    /* Lift effect on hover */
  }

  .nospace li a i {
    font-size: 2.5rem;
    color: #A68B5D;
    /* Blue color for icons */
    display: block;
    margin-bottom: 10px;
  }

  .nospace li h6.heading {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #5B3A29;
  }

  .nospace li p {
    font-size: 1rem;
    color: #A68B5D;
  }

  /* Image Styles */
  figure img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }

  .imgover img {
    transition: opacity 0.3s ease;
  }

  .imgover:hover img {
    opacity: 0.8;
    transform: scale(1.02);
    /* Slight zoom effect */
  }

  /*** service Start ***/
  .service .service-item {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
  }

  .service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
  }

  .service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
  }

  .service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
    background-color: #A68B5D;
  }

  .service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
  }

  .service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
  }

  .service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
  }

  .service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
  }

  .service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
  }

  .service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
  }

  .service .service-item .service-inner .service-img img {
    transition: 0.5s;
  }

  .service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
  }

  .img-fluid {
    width: 100px;
    height: 300px;
  }

  .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
  }

  .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
    color: #5B3A29;
  }

  .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
  }

  .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
  }

  .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #5B3A29;
  }

  .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
  }

  .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
  }

  /*** Service End ***/

  /*** training Start ***/
  .training .training-item .training-inner {
    position: relative;
    margin-top: 20px;
  }

  .training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
  }

  .training .training-item .training-inner .training-title-name .btn{
    background: rgba(210, 212, 214, 0.5);
  } 

  .training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }

  .training .training-item:hover .training-inner .training-title-name {
    background: #5B3A29;
  }

  .training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
  }

  .training .training-item .training-inner img {
    transition: 0.5s;
  }

  .training .training-item:hover .training-inner img {
    transform: scale(1.3);
  }

  .training .training-item .training-content {
    position: absolute;
    background-color: #A68B5D;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
  }

  .training .training-item:hover .training-content {
    bottom: 0;
  }

  /*** training End ***/
  .contact {
  padding: 30px 0;
}

.contact .heading h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.contact .heading h2 span {
  color: #A68B5D;
}

.contact .heading p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #999999;
  margin: 20px 0 60px;
  padding: 0;
  text-align: center;
}

.contact .form-control {
  padding: 25px;
  font-size: 13px;
  margin-bottom: 10px;
  background: #f0e7d4;
  border: 0;
  border-radius: 10px;
}

.contact button.btn {
  padding: 10px;
  border-radius: 10px;
  font-size: 15px;
  background: #A68B5D;
  color: #ffffff;
}

.contact .title h3 {
  font-size: 18px;
  font-weight: 600;
}

.contact .title p {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  line-height: 1.6;
  margin: 0 0 40px;
}