/** ADD YOUR AWESOME CODES HERE **/
:root {
  --primary: #095a83;
  --secondary:  #d4a81e;
  --light: #fff;
  --dark: var(--primary);
}

.bg-main{
  background-color: var(--primary);
}

.btn-main{
  background-color: var(--secondary);
  color: var(--light);
}


/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:  rgba(7, 82, 141, .6);
  z-index: 1;
}
/* Base Nav Item Styling */
.navbar-nav .nav-item {
    transition: background 0.3s ease;
    margin-right: 1rem;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    background-color: #f0f0f0;
    color: var(--primary);
    text-decoration: none;
}

/* Dropdown Toggle Indicator Styling */
.stylish-toggle::after {
    margin-left: 0.5rem;
    vertical-align: middle;
    content: "▾";
    font-size: 0.8rem;
}

/* Dropdown Menu Styling */
.stylish-dropdown {
    background-color: #fff;
    border-radius: 0.5rem;
    min-width: 220px;
    padding: 0.5rem 0;
    z-index: 1000;
}

.stylish-dropdown li {
    list-style: none;
}

.stylish-dropdown a {
    padding: 0.5rem 1.25rem;
    display: block;
    color: #333;
    font-weight: 400;
    transition: background-color 0.25s ease;
    text-decoration: none;
}

.stylish-dropdown a:hover {
    background-color: #f8f9fa;
    color: #0077b6;
}

/* Make dropdowns inside offcanvas stack nicely */
.nav-link[aria-expanded="true"] i.fa-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.offcanvas .dropdown-menu {
    position: static !important;       /* prevent floating */
    display: block !important;         /* always visible (you can toggle manually if needed) */
    background: none;
    border: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    box-shadow: none;
}

.offcanvas .nav-item.dropdown .nav-link.dropdown-toggle::after {
    float: right;
    content: '▸';
    transform: rotate(90deg);
    transition: transform 0.2s ease;
}

.offcanvas .nav-item.dropdown.open .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
}



.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background-color: var(--primary);
  border: 10px solid var(--primary);
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
      position: relative;
      min-height: 450px;
  }
  
  #header-carousel .carousel-item img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
}

/*** Top Feature ***/
@media (min-width: 991.98px) {
  .top-feature {
      position: relative;
      margin-top: -80px;
      z-index: 1;
  }
}


.card {
    transition: transform 0.3s ease;
  }
  .card:hover {
    transform: translateY(-5px);
  }
  .backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .hover-scale {
    transition: transform 0.3s ease;
  }
  .hover-scale:hover {
    transform: scale(1.05);
  }
  body {
    background: #f8f9fa;
    padding: 0px 20px;
}


/* Accordions */
.accordion-button:not(.collapsed)::after,
.accordion-button::after {
    background-image: unset !important;
}
.accordion-button {
    border-left: 5px solid #ffffff;
    background: none !important;
}
.accordion-button i{
    background: #2981B3;
    color: #fff;
}
.accordion-button:hover{
    border-left: 5px solid #FC0000;
    border-color: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.accordion-button:link, .accordion-button:active, .accordion-button:focus{
    background: none !important;
    border-left: 5px solid #2981B3;
    border-color: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: #2981B3;
}

.step-number {
    font-size: 2.0rem;
    box-shadow: 0 0 0 4px #e0e7ff;
    background-color: #095a83;
  }

  @import url('https://fonts.googleapis.com/css?family=Quicksand:400,500');


/* Container and grid setup */
section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* responsive grid */
  gap: 1rem;
  font-family: 'Quicksand', sans-serif;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 1rem;
}

/* Figure styles */
figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

/* Image styling */
figure img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* Figcaption (hidden initially on desktop) */
figure figcaption {
  background: rgba(250, 250, 250, 0.85);
  position: absolute;
  bottom: 0;
  width: 100%;
  color: black;
  padding: 1rem;
  transition: all 0.3s ease-in-out;
  max-height: 60px;
  overflow: hidden;
}

/* Paragraphs inside caption */
figure figcaption p {
  margin-top: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Hover effect on larger screens */
@media screen and (min-width: 768px) {
  figure:hover figcaption {
    max-height: 100%;
  }

  figure:hover figcaption p {
    opacity: 1;
  }
}

/* Show all content on small screens */
@media screen and (max-width: 767px) {
  figure figcaption {
    position: relative;
    max-height: none;
  }

  figure figcaption p {
    opacity: 1;
  }
}

.why-we-do-it-section {
  background: linear-gradient(145deg, #07528d, #053e6a); /* Secondary tone */
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.glass-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.glass-box:hover {
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.4);
}

.text-primary {
  color: #fff !important;
}

.text-secondary {
  color: #07528d !important;
}

.text-tertiary {
  color: #d4a81e !important;
  font-size: 40px;
  font-weight: 700;
  padding: 0 0 15px 0;
  margin: 0 0 30px 0;
  font-family: 'Raleway', sans-serif;
  position: relative;
}

.founder-glass-section {
  background: url('https://images.unsplash.com/photo-1543269865-cbf427effbad?auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.glass-card {
  background: rgba(7, 82, 141, 0.3); /* Semi-transparent secondary color */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-img {
  width: 100%;
  max-width: 220px;
  border: 4px solid #d4a81e; /* Tertiary color border */
  transition: transform 0.3s ease;
}

.founder-img:hover {
  transform: scale(1.05);
}

.text-tertiary {
  color: #d4a81e !important;
}

.text-tertiary {
  color: #d4a81e !important;
}
.bg-tertiary {
  background-color: #d4a81e !important;
}
.border-tertiary {
  border-color: #d4a81e !important;
}

.cta-btn-primary {
  background-color: #2981B3;
  color: #ffffff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(41, 129, 179, 0.3);
}
.cta-btn-primary:hover {
  background-color: #07528d;
  box-shadow: 0 8px 20px rgba(7, 82, 141, 0.4);
  transform: translateY(-2px);
}

.cta-btn-outline {
  background-color: transparent;
  color: #07528d;
  border: 2px solid #07528d;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.cta-btn-outline:hover {
  background-color: #07528d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 82, 141, 0.2);
}

.accommodation-option {
  cursor: pointer;
  transition: all 0.3s ease;
}
.accommodation-option.active {
  border: 2px solid #2981B3;
  background-color: #eaf5fb;
}

.form-check:hover {
  background-color: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
/* Custom Styles for Total Cost Display */
#totalCost {
  font-size: 3rem;
  font-weight: 700;
  color: #2981B3; /* Match your theme's primary color */
}

.card {
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.25rem;
  color: #6c757d;
}

.card-body {
  text-align: center;
}

.card .btn {
  border-radius: 30px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.card .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card .btn-primary {
  background-color: #2981B3;
  border-color: #2981B3;
}

.card .btn-secondary {
  background-color: #07528d;
  border-color: #07528d;
}

.card .btn i {
  font-size: 1.2rem;
}

/* Tooltip Styling */
[data-bs-toggle="tooltip"] {
  font-size: 0.875rem;
}

/* Parallax Effect Styles */
.vr-section {
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.vr-section::before {
  content: "";
  position: absolute;
  background: rgba(0,0,0,0.5);
  inset: 0;
  z-index: 1;
}

.vr-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
}

.vr-content h1, .vr-content h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  animation: fadeUp 1.2s ease-out forwards;
  opacity: 0;
}

.vr-content p {
  font-size: 1.25rem;
  animation: fadeIn 2s ease-out forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/*** Service ***/
.service-item {
  position: relative;
  text-align: center;
}

.service-item .service-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.service-item .service-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  transform: scale(1.2);
  transition: .3s;
  z-index: -1;
}

.service-item:hover .service-img img {
  transform: scale(1);
}

.service-item .service-text {
  background: #FFFFFF;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  transition: .3s;
}

.service-item:hover .service-text {
  background: rgba(7, 82, 141, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
  transition: .3;
}

.service-item:hover .service-text h4 {
  color: #FFFFFF;
}

.service-item:hover .service-text p {
  color: var(--light);
}

.service-item .service-text .btn-square {
  width: 100px;
  height: 100px;
  background: transparent;
  transition: .5s;
}

.service-item:hover .service-text .btn-square {
  background: var(--light);
}

.service-item .service-text .btn {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  color: var(--dark);
  background: var(--light);
  white-space: nowrap;
  overflow: hidden;
  transition: .3s;
}

.service-item:hover .service-text .btn {
  width: 112px;
}

.facts,
.quote {
    background:  rgba(7, 82, 141, .8)
}

.testimonial-section {
  background: rgba(7, 82, 141, .6);
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
}

.testimonial-box {
  max-width: 700px;
  margin: 0 auto;
}


/*** Project Portfolio ***/
#portfolio-flters {
  display: inline-block;
  background: var(--light);
  padding: 10px 15px;
}

#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  transition: .5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--dark);
  border-color: rgba(7, 82, 141);
}

.portfolio-inner {
  position: relative;
  overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(7, 82, 141, .6);
  transition: .5s;
}

.portfolio-inner::after {
  left: auto;
  right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
  width: 50%;
}

.portfolio-inner .portfolio-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .5s;
  z-index: 3;
  opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
  transition-delay: .3s;
  opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
  background: var(--light);
  color: rgba(7, 82, 141);
}

.portfolio-inner .portfolio-text .btn:hover {
  background: rgba(7, 82, 141);
  color: var(--light);
}
.portfolio-inner img {
  width: 575px;
  height: 376px;
  object-fit: cover;
  transition: .5s;
}
.portfolio-item {
  margin-bottom: 30px;
}

/*********** FAQs CSS **********/
/*******************************/
.faqs {
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.faqs .row {
  position: relative;
}

.faqs .row::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: calc(50% - .5px);
  background: var(--secondary);
}

.faqs #accordion-1 {
  padding-right: 15px;
}

.faqs #accordion-2 {
  padding-left: 15px;
}

@media(max-width: 767.98px) {
  .faqs .row::after {
      display: none;
  }
  
  .faqs #accordion-1,
  .faqs #accordion-2 {
      padding: 0;
  }
  
  .faqs #accordion-2 {
      padding-top: 15px;
  }
}

.faqs .card {
  margin-bottom: 15px;
  border: none;
  border-radius: 0;
}

.faqs .card:last-child {
  margin-bottom: 0;
}

.faqs .card-header {
  padding: 0;
  border: none;
  background: #ffffff;
}

.faqs .card-header a {
  display: block;
  padding: 10px 25px;
  width: 100%;
  color: #121518;
  font-size: 16px;
  line-height: 40px;
  border: 1px solid rgba(0, 0, 0, .1);
  transition: .5s;
}

.faqs .card-header [data-bs-toggle="collapse"][aria-expanded="true"] {
  background: var(--secondary);
}

.faqs .card-header [data-bs-toggle="collapse"]:after {
  font-family: 'font Awesome 5 Free';
  content: "\f067";
  float: right;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  transition: .5s;
}

.faqs .card-header [data-bs-toggle="collapse"][aria-expanded="true"]:after {
  font-family: 'font Awesome 5 Free';
  content: "\f068";
  float: right;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  transition: .5s;
}

.faqs .card-body {
  padding: 20px 25px;
  font-size: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .1);
  border-top: none;
}


/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
  position: relative;
  margin: 45px 0;
  height: 100%;
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video .btn-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--secondary);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play:hover:after {
  background-color: darken(var(--secondary), 10%);
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--primary);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
0% {
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
  opacity: 1;
}
100% {
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
  opacity: 0;
}
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** About ***/
.about-experience {
  position: absolute;
  width: 100%;
  height: 100%;
  right: -45px;
  bottom: -45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 5px;
  left: -40px;
  background: var(--primary);
  z-index: -1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 2px;
  bottom: 6px;
  left: -60px;
  background: var(--primary);
  z-index: -1;
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}

/*******************************/
/********* Service CSS *********/
/*******************************/


.programs .programs-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.programs .programs-img {
    position: relative;

}

.programs .programs-img img {
    width: 100%;

}

.programs .programs-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.programs .programs-item:hover .programs-overlay {
    opacity: 1;
}

.programs .programs-overlay p {
    margin: 0;
    color: #ffffff;
}

.programs .programs-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: var(--primary);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.programs .programs-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 16px;
    font-weight: 500;
    color: var(--light);
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.programs .programs-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: var(--primary);
    background: var(--secondary);
    border-radius: 0;
    transition: .3s;
}

.programs .programs-item:hover a.btn {
    color: #ffffff;
}

/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-title {
    display: flex;
    align-items: center;
    height: 60px;
    background: var(--primary);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: var(--primary);
    background: var(--secondary);
    border-radius: 0;
    transition: .3s;
}

.blog .blog-item:hover a.btn {
    color: #ffffff;
}

.blog .blog-meta {
    position: relative;
    padding: 25px 0 10px 0;
    background: #f3f6ff;
}

.blog .blog-meta::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    left: calc(50% - 50px);
    bottom: 0;
    background: var(--secondary);
}

.blog .blog-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #666666;
}

.blog .blog-meta p a {
    margin-left: 5px;
    font-style: normal;
}

.blog .blog-text {
    padding: 10px 25px 25px 25px;
    background: #f3f6ff;
}

.blog .blog-text p {
    margin: 0;
    font-size: 16px;
}

.blog .pagination .page-link {
    color: var(--primary);
    border-radius: 0;
    border-color: var(--secondary);
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: var(--secondary);
    background: var(--primary);
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary);
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: var(--secondary);
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: var(--primary);
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: var(--secondary);
    background: var(--primary);
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: var(--primary);
    background: var(--secondary);
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary);
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .tag-widget a:hover {
    color: var(--secondary);
    background: var(--primary);
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .single-tags a:hover {
    color: var(--secondary);
    background: var(--primary);
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 400;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--secondary);
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: var(--secondary);
    background: var(--primary);
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    color: var(--primary);
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: var(--secondary);
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form .btn {
    padding: 15px 30px;
    color: var(--primary);
    background: var(--secondary);
}

.single .comment-form .btn:hover {
    color: var(--secondary);
    background: var(--primary);
}
