.readon.orange-btn.main-home{
  background: #cbaa66 !important;
  border-color: #cbaa66 !important;
}

.readon.orange-btn.main-home:hover {
    color: #ffffff;
    background: #171F32 !important;
    border-color: #171F32 !important;
}

.concolor{
    color: #cbaa66 !important;
}
/* ------------------------------------
    15. Team Section CSS
---------------------------------------*/

.rs-team.style1 .team-item {
  position: relative;
  overflow: hidden;
}
.rs-team.style1 .team-item img {
  width: 100%;
}
.rs-team.style1 .team-item .content-part {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  transition: all 0.3s ease;
  opacity: 0;
  width: 100%; /* Ensures the content spans the full width */
  padding: 10px; /* Adds spacing around the text */
  box-sizing: border-box; /* Ensures padding is included in width calculation */
}
.rs-team.style1 .team-item .content-part .name {
  margin-bottom: 8px;
  font-size: 22px;
  width: 100%; /* Makes sure the name spans the full width */
}
.rs-team.style1 .team-item .content-part .name a {
  color: #ffffff;
  display: block; /* Ensures the link spans the full width */
  width: 100%; /* Full width for clickable area */
}
.rs-team.style1 .team-item .content-part .name a:hover {
  color: #111111;
}
.rs-team.style1 .team-item .content-part .designation {
  color: #ffffff;
  margin-bottom: 16px;
  display: block;
  width: 100%; /* Ensures the designation spans the full width */
}
.rs-team.style1 .team-item .content-part .social-links li {
  display: inline;
  margin-right: 35px;
}
.rs-team.style1 .team-item .content-part .social-links li a {
  display: inline-block;
  color: #ffffff;
}
.rs-team.style1 .team-item .content-part .social-links li a:hover {
  color: #111111;
}
.rs-team.style1 .team-item .content-part .social-links li:last-child {
  margin: 0;
}
.rs-team.style1 .team-item:after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100%) scale(0.1);
  background: #cbaa66;
  opacity: 0;
  transition: all 0.3s ease;
}
.rs-team.style1 .team-item:hover .content-part {
  transform: translate(-50%, -50%);
  opacity: 1;
  width: 100%; /* Maintain full width on hover */
}
.rs-team.style1 .team-item:hover:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.9;
}
.rs-team.style1 .owl-item.center .team-item .content-part {
  transform: translate(-50%, -50%);
  opacity: 1;
  width: 100%; /* Full width in the centered item */
}
.rs-team.inner-style .team-item .content-part {
  background: #171f32;
  border-radius: 0; /* Set to 0 for rectangular style */
  padding-top: 30px;
  opacity: 1 !important;
  width: 100%; /* Ensures full width */
}
.rs-team.inner-style .team-item:hover .content-part {
  background: transparent;
  border-radius: 0; /* Remove rounded corners */
  padding-top: 0;
  opacity: 1 !important;
}
.rs-team.home11-style .team-item .team-thumbnail .team-img {
  border-radius: 0; /* Remove rounded corners */
}
.rs-team.home11-style .team-item .team-thumbnail .team-img .team-social-link {
  border-radius: 0; /* Remove rounded corners */
}
.rs-team.home-style15 .team-item .team-wrap .team-img {
  border-radius: 0; /* Remove rounded corners */
}
.rs-team.home-style15 .team-item .team-wrap .team-img .team-social-link {
  border-radius: 0; /* Remove rounded corners */
}
.contact-page-section .rs-quick-contact .form-group .btn-send {
  background: #cbaa66;
}
.footerbackground {
  background: #171f32;
}
.rs-footer .footer-bottom .footer-social li a {
  background: #cbaa66;
}

/* General Styling */
.custom-tabs-container {
  background-color: #f3f8f9 !important;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-section {
  text-align: center;
  margin-bottom: 30px;
}

.main-title {
  font-size: 32px;
  font-weight: bold;
  color: #171f32;
  margin-bottom: 10px;
}

.subtitle {
  color: #cbaa66;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0px;
  display: block;
  margin: 0;
}

/* Tabs Navigation */
.nav-tabs {
  border-bottom: 2px solid #cbaa66;
  margin-bottom: 30px;
}

.nav-tabs .nav-link {
  background-color: #eef5f9;
  color: #171f32;
  font-size: 18px;
  font-weight: bold;
  margin-right: 5px;
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-tabs .nav-link.active {
  background-color: #cbaa66;
  color: #fff;
}

.nav-tabs .nav-link:hover {
  background-color: #cbaa66;
  color: #fff;
}

/* Tab Content */
.tab-content {
  width: 100%;
  max-width: 1200px;
}

/* Accordion Styling */
.custom-accordion {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.custom-accordion-item {
  margin-bottom: 15px;
}

.custom-accordion-header {
  background-color: #171f32; /* Dark teal */
  color: #fff;
  padding: 15px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.custom-accordion-header:hover {
  background-color: #cbaa66; /* Gold color */
  color: #fff; /* Contrast text */
}

.custom-accordion-header img {
  width: 30px;
  height: 30px;
}

.custom-accordion-content {
  background-color: #eef5f9;
  padding: 20px;
  display: none;
  border-radius: 0 0 5px 5px;
}

.custom-description {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px; /* Space between descriptions */
}

.custom-number-box {
  width: 40px;
  height: 40px;
  background-color: #171f32; /* Dark navy */
  color: #cbaa66; /* Gold text */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  border-radius: 5px;
}

.custom-description-text {
  flex: 1;
  font-size: 16px;
  color: #333;
}

/* Button Styling */
.custom-button {
  display: inline-block;
  background-color: #171f32; /* Dark teal, same as accordion */
  color: #fff; /* White text */
  font-size: 18px;
  font-weight: bold;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.custom-button:hover {
  background-color: #cbaa66; /* Gold color, same as hover on accordion */
  color: #fff; /* Contrast text */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive View */
@media (max-width: 768px) {
  .main-title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 16px;
  }

  .nav-tabs .nav-link {
    font-size: 16px;
  }

  .custom-accordion-header {
    font-size: 16px;
    padding: 10px;
  }

  .custom-accordion-content {
    font-size: 14px;
    padding: 10px;
  }

  .custom-number-box {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .custom-button {
    font-size: 16px;
    padding: 10px 20px;
  }
}


/* Buttons */ 

/* Button Container Styling */
.custom-buttons-container {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center; /* Center the buttons */
}

/* Shared Button Styling */
.custom-button {
  font-size: 18px;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

/* Inline Button Styling */
.inline-button {
  background-color: #171f32; /* Dark teal */
  color: #fff; /* White text */
  border: none;
}

.inline-button:hover {
  background-color: #cbaa66; /* Gold color on hover */
  color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Outline Button Styling */
.outline-button {
  background-color: transparent;
  color: #171f32; /* Dark teal text */
  border: 2px solid #171f32; /* Dark teal border */
}

.outline-button:hover {
  background-color: #171f32; /* Dark teal background */
  color: #fff; /* White text on hover */
}
/* End Buttons*/




#scrollUp i{
  background: #cbaa66;
}

#scrollUp i:hover{
  background: #171f32;
}
.fa-angle-down:before{
  content: none;
}
.full-width-header.home8-style4.main-home .menu-area .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover{
  color: #cbaa66 !important;
}

.sec-title .sub-title.primary{
  color: #cbaa66 !important;
      font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.rs-categories.style1 .categories-item{
      border: 1px solid #dfe9eb;
    background: #ffffff;
    overflow: hidden;
    padding: 30px;
    display: block;
    color: #505050;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.rs-categories.style1 .categories-item:hover{
  background: #cbaa66 !important;
  border-color: #cbaa66 !important;;
}
.contact-page-section .rs-quick-contact{
  background-color: #f3f8f9 !important;
}
.contact-page-section .rs-contact-wrap{
  background-color: #f3f8f9 !important;
}
.contact-page-section .inner-part .title{
  color: #031a3d !important;
}
.contact-page-section .rs-contact-wrap .address-item .address-icon i{
  color: #cbaa66;
}

.rs-slider.main-home .owl-nav .owl-next, .rs-slider.main-home .owl-nav .owl-prev{
  background: #cbaa66 !important;
}

.rs-slider.main-home .owl-nav .owl-next:hover, .rs-slider.main-home .owl-nav .owl-prev:hover{
  background: #171f32 !important;
}
.dark-red{
  background: #171f32 !important;
}
.rs-testimonial.home13-style .slick-part .slider .images-slide-single .content-part .name{
  margin: 0 0 13px;;
}
.customtitle{
  font-size: 15px !important;
}
.readon.orange-btn {
    color: #ffffff;
    background: #21a7d0;
    border-color: #21a7d0;
    border-radius: 5px 5px 5px 5px;
    outline: none;
    padding: 12px 35px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.readon.orange-btn:hover{
  background: #031a3d !important;
  border-color: #031a3d;
}

/* ------------------------------------
    21. Gallery Section CSS
---------------------------------------*/
.rs-gallery .gallery-item {
  padding: 0 30px 30px 0;
}
.rs-gallery .gallery-item .gallery-img a img {
  border-radius: 5px;
}
.rs-gallery .gallery-item .title {
  padding-top: 25px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #111111;
}
.rs-gallery.style2 .gallery-part {
  position: relative;
  overflow: hidden;
}
.rs-gallery.style2 .gallery-part .gallery-img {
  position: relative;
  overflow: hidden;
}
.rs-gallery.style2 .gallery-part .gallery-img a img {
  transform: scale(1);
  transition: all .8s ease;
  height: 400px;
  width: 100%;
}
.rs-gallery.style2 .gallery-part .gallery-img a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #171f32;
  opacity: 0;
  display: block;
  transition: all .8s ease;
  z-index: 1;
}
.rs-gallery.style2 .gallery-part:hover .gallery-img a img {
  transform: scale(1.1);
}
.rs-gallery.style2 .gallery-part:hover .gallery-img a:before {
  opacity: .4;
}
.rs-gallery.home11-style .gallery-part .gallery-img {
  position: relative;
}
.rs-gallery.home11-style .gallery-part .gallery-img img {
  border-radius: 30px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .content-part {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #4e49a1;
  padding: 5px 20px;
  display: inline-block;
  color: #fff;
  border-radius: 30px;
  right: 0;
  transition: all .4s ease;
}
.rs-gallery.home11-style .gallery-part .gallery-img .content-part .title {
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  color: #ffffff;
  padding: 15px 0 15px;
  margin: 0;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s ease;
  z-index: 1;
  text-align: center;
  width: 100%;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .title-part {
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #ffffff;
  padding-right: 60px;
  padding-left: 60px;
  margin-bottom: 15px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #ffffff;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a i {
  padding-left: 6px;
}
.rs-gallery.home11-style .gallery-part .gallery-img .gallery-info .btn-part a i:before {
  font-size: 16px;
}
.rs-gallery.home11-style .gallery-part .gallery-img:before {
  content: '';
  background: #4e49a1;
  position: absolute;
  visibility: hidden;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  opacity: 0;
  display: block;
  transition: all .4s ease;
  z-index: 1;
}
.rs-gallery.home11-style .gallery-part:hover .content-part {
  visibility: hidden;
  opacity: 0;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info {
  opacity: 1;
  visibility: visible;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info .title-part {
  color: #ffffff;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info p {
  color: #ffffff;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img .gallery-info .btn-part a {
  color: #ffffff;
}
.rs-gallery.home11-style .gallery-part:hover .gallery-img:before {
  visibility: visible;
  opacity: 0.9;
}

.rs-blog.style2 .blog-item .blog-content .title a{
  color: #031a3d !important;
  font-size: 15px;
}
.rs-blog.style2 .blog-item .blog-content .title a:hover{
  color: #cbaa66 !important;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.btn-part .readon-arrow{
  color: #031a3d !important;
}

.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.btn-part .readon-arrow:hover{
  color: #cbaa66 !important;
}
.rs-testimonial.home13-style .content .sub-title{
  color: #cbaa66 !important;
}
.rs-breadcrumbs .breadcrumbs-text .page-title,.profile-section .content-column .inner-column h4{
  color: #cbaa66 !important;
}
.readon.green-banner{
  background-color: #cbaa66 !important;
}
.readon.green-banner:hover{
  background-color: #031a3d !important;
}

/*Header */
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a {
    color: #111111 !important;
    padding-right: 5px !important;
}
.full-width-header.home8-style4.main-home .menu-area.menu-sticky.sticky .rs-menu-area .main-menu .rs-menu ul.nav-menu li a:hover{
    color: #cbaa66 !important;
    padding-right: 0px !important;
}
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a{
      font-size: 13px;
    font-weight: 500;
}

.rs-testimonial.home13-style .slick-part .slider button.slick-prev::before,.slick-prev {
  display: none !important;
}

.rs-testimonial.home13-style .slick-part .slider .images-slide-single .content-part p{
  padding: 0px 0px 0px 0px;
}

@media (max-width: 768px) { /* Adjust for screens smaller than 768px */
    .rs-cta.style2 .title {
        padding-bottom: 150px !important;
    }
}
.welcome{
  color: #fff !important;
}