/* TOP NAV BUTTON */
.topNavBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color:#F9CD05;
  color: black;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.topNavBtn:hover {
  background-color: var(--active-color);
}

/* NAVBAR DEKSTOP */
.navbar {
  background: white;
  font-family: var(--ff-nunito);
  position: sticky;
  z-index: 12;
  top: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.navbar:after {
  content: "";
  clear: both;
  display: table;
}
.navbar .logo {
  float: left;
  padding-left: 60px;
  padding-top: 12px;
}
.navbar .logo img {
  width: 180px;
}
.navbar ul {
  float: right;
  margin-right: 40px;
  list-style: none;
  position: relative;
}
.navbar ul li {
  display: inline-block;
  background: black;
  margin: 0 5px;
}
.navbar ul li a {
  color: var(--black-color);
  line-height: 70px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-size: var(--ts-md);
  font-weight: 500;
  padding: 8px 15px;
  transition: all 250ms ease-in-out;
}
.navbar ul li a:hover,
.navbar ul li a:focus {
  outline: none;
  background-color: var(--light-color);
}
.navbar ul li a.current {
  outline: none;
  color: white;
  background-color:#F9CD05;;
}
.navbar ul li a.current #search-icon {
  color: white;
}
.navbar ul ul {
  position: absolute;
  top: 90px;
  border-top: 4px solid var(--active-color);
  opacity: 0;
  visibility: hidden;
  transition: top 0.3s;
}
.navbar ul ul ul {
  border-top: none;
}
.navbar ul li:hover > ul {
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.navbar ul ul li {
  position: relative;
  margin: 0px;
  padding-left: 5px;
  width: 250px;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.navbar ul ul li a {
  line-height: 50px;
}
.show,
.icon,
.input {
  display: none;
}
.fa-plus {
  font-size: var(--ts-md);
  margin-left: 40px;
}
#search-icon {
  padding-left: 8px;
  color: var(--dark-color);
}

/* IMAGE SLIDER DESKTOP */
.img-slider {
  position: relative;
  width: 100%;
  height: 600px;
  background: #F9CD05;
}

.img-slider .slide {
  z-index: 1;
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.img-slider .slide.active {
  clip-path: circle(150% at 0 50%);
  transition: 2s;
  transition-property: clip-path;
}

.img-slider .slide img {
  z-index: 1;
  object-fit: cover;
  width: inherit;
  filter: brightness(0.5);
  height: 550px;
  border-radius: var(--border-radius);
}

.img-slider .slide .info {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: 50vw;
  color: var(--light-color);
  padding: 1rem 2rem;
}

.img-slider .slide .info h1 {
  padding-top: 100px;
  font-size: var(--hs-md);
  font-family: var(--ff-monts);
}

.img-slider .slide .info p {
  margin: 1rem 0;
  font-size: var(--ts-md);
  font-weight: 300;
  font-family: var(--ff-nunito);
}

.img-slider .navigation {
  z-index: 2;
  position: absolute;
  display: flex;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.img-slider .navigation .slide-nav-btn {
  background: #ffffffd5;
  width: 10px;
  height: 10px;
  margin: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.img-slider .navigation .slide-nav-btn.active {
  background: var(--active-color);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

/* CARD LIST MOBILE*/
.card-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1rem;
}

/* FOOTER */
.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 55px;
  color: black;
  background: #F9CD05;
}

.footer > * {
  flex: 1 100%;
}

.footer-left {
  margin-right: 1.25rem;
  margin-bottom: 1rem;
}

.footer-left img {
  width: 180px;
}
.footer h2 {
  font-weight: 600;
  font-size: var(--hs-vs);
  padding-bottom: 0.8rem;
  color: #000;
}

.footer ul {
  padding-left: 0;
}

.footer li {
  line-height: 2em;
  padding-bottom: 5px;
  font-size: var(--ts-sml);
}

.footer-right ul {
  padding-bottom: 25px;
}

.footer li a {
  transition: all 200ms ease-in-out;
  color: black;
}

.footer li:hover > a {
  color: #007EB8;
}

.footer-right {
  display: flex;
  flex-flow: row wrap;
}

.footer-right > * {
  flex: 1 100%;
}

.footer-bottom {
  text-align: center;
  color: black;
  font-size: var(--ts-sml);
  background: #F9CD05;
}

.footer-left p {
  padding-right: 20%;
}

.socials a {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 10px;
}

.socials a:nth-child(1):hover i {
  color: #3b5998;
}

.socials a:nth-child(2):hover i {
  color: #F9CD05;;
}

.socials a:nth-child(3):hover i {
  color: var(--tag-blue-color);
}

.socials a:nth-child(4):hover i {
  color: var(--tag-pink-color);
}

.socials a:nth-child(5):hover i {
  color: var(--tag-green-color);
}

.socials a:nth-child(6):hover i {
  color: var(--tag-yellow-color);
}



.socials a i {
  padding: 10px 12px;
  font-size: 20px;
  transition: all 200ms ease-in-out;
}

/* SEARCH BAR */

.box-container {
  margin: auto;
  width: 300px;
  height: 42px;
  background: white;
  border: 4px solid #F9CD05;;
  padding: 0px 10px;
  border-radius: 50px;
}
.search-table {
  width: 100%;
  height: 100%;
}
.search-input {
  border: none;
  height: 100%;
  width: 100%;
  padding: 0 5px;
  border-radius: 50px;
  font-size: var(--ts-md);
  color: var(--dark-color);
  font-weight: 500;
}
.search-input:focus {
  outline: none;
  border: none;
}

.filters {
  padding: 1rem;
  margin: auto;
  margin-top: 10px;
  border-radius: var(--border-radius);
  font-family: var(--ff-nunito);
  /* background-color: #fff; */
}

.filters div {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  margin-top: 10px;
}

.filters label {
  font-family: var(--ff-nunito);
  font-size: 0.95rem;
  padding-right: 10px;
  width: 80px;
  text-align: center;
}

.filters input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border: 2px #F9CD05 solid;
  background: #fff;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
}

.filters input[type="checkbox"]::after {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  font-size: 12px;
  display: none;
  color: white;
}

.filters input[type="checkbox"]:checked {
  background-color: #F9CD05;;
}

.filters input[type="checkbox"]:checked::after {
  display: block;
}

.filters select,
.filters input {
  width: 200px;
  padding: 8px;
  font-family: var(--ff-nunito);
  border-radius: var(--border-radius);
  border: 3px solid #F9CD05;;
  outline: none;
}

form button {
  cursor: pointer;
}

/* ARTICLE SECTION */
.page-container {
  display: flex;
  justify-content: center;
  grid-template-columns: 5fr 2fr;
  margin: 2rem 0;
  min-height: 100vh; /* Full screen height */
  width: 100%;
}




.page-container aside {
  display: grid;
  grid-template-rows: repeat(1fr);
  grid-gap: 1.5rem;
}

.card1 {
  background: #fff;
  padding: 1rem;
  overflow: hidden;
  box-shadow: 2px 1px 8px rgba(0, 0, 0, 0.268);
}
.card1 img {
  height: 200px;
  width: 90%;
  margin-left: 5%;
  object-fit: cover;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.article-heading {
  font-family: var(--ff-robo);
  font-size: var(--hs-sml);
  font-weight: 600;
  color: var(--black-color);
  letter-spacing: -2px;
  padding: 5px 15px;
}

.article .meta {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #eee;
  padding: 0.5rem;
  color: var(--black-color);
  font-size: var(--ts-sml);
  font-weight: 600;
  font-family: var(--ff-monts);
}

.article .meta i {
  color: black;
  padding: 10px;
}

.article .meta .tag {
  margin-top: 0.4rem;
}

.article .article-content {
  font-size: 1rem;
  padding: 15px 5px;
  font-family: var(--ff-nunito);
}



/* ASIDE CARD LIST */
.aside-title {
  color: var(--black-color);
  font-size: var(--ts-md);
  font-weight: 700;
  font-family: var(--ff-nunito);
  text-transform: uppercase;
  padding: 5px;
  text-decoration: underline;
}
.card2 {
  background: #fff;
  padding: 0.8rem;
  overflow: hidden;
  box-shadow: 2px 1px 8px rgba(0, 0, 0, 0.268);
  max-height: 650px;
}
.aside-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 2px solid var(--light-color);
  margin-bottom: 5px;
}

.aside-card:hover .aside-card-title {
  text-decoration: underline;
  color: black !important;
}

.aside-card:hover .aside-card-img img {
  transform: scale(1.1);
}
.aside-card-img {
  padding: 0;
  height: 90px;
  width: 250px;
  overflow: hidden;
  margin-right: 8px;
}
.aside-card-img img {
  padding: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 250ms ease-in-out;
}

.aside-card-title {
  color: var(--black-color);
  font-family: var(--ff-robo);
  font-size: 0.8rem;
  transition: all 200ms ease-in-out;
}

.aside-card-author,
.aside-card-date {
  padding-top: 10px;
  color: var(--black-color);
  font-family: var(--ff-robo);
  font-size: 0.8rem;
  display: none;
}

/* LOGIN & SIGNUP FORMS */

.forms-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.left,
.right {
  flex: 1;
  margin: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-title {
  text-align: center;
  padding: 1rem;
}

.form-title h4 {
  font-family: var(--ff-robo);
  font-size: var(--hs-sml);
  font-weight: 500;
  color: var(--dark-color);
}

.input-field {
  padding: 8px;
  height: 60px;
  width: 300px;
}

.input-field input,
.input-field textarea {
  height: 100%;
  width: 100%;
  outline: none;
  font-family: var(--ff-robo);
  padding-left: 15px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 17px;
}

.input-field input:focus,
.input-field textarea:focus {
  border-color: var(--black-color);
}

.input-field input::placeholder,
.input-field textarea::placeholder {
  color: var(--dark-color);
}

.input-field input:focus::placeholder {
  color: var(--dark-color);
}

.input-field textarea {
  padding: 10px;
  padding-left: 15px;
}

.input-field button {
  padding: 10px;
  margin-top: 10px;
  width: 100%;
  font-size: 17px;
  font-weight: 400;
  color: var(--light-color);
  background-color: #F9CD05;
  border: none;
  outline: none;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 200ms ease-in-out;
}

.input-field button:hover {
  color: var(--light-color);
  background-color: var(--active-color);
}

.form-errors {
  margin: 1.2rem 0;
}

.form-errors .errors {
  width: 75%;
  margin: auto;
  color:#F9CD05;
}




/* ------- */
/* Career */
/* ------- */

.career {
  background:#F9CD05;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* ---- */
/* FORM */
/* ---- */

.career form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.career form label {
  display: block;
}

.career form p {
  margin: 0;

    
}

.career form .full {
  grid-column: 1 / 3;
}

.career form button,
.career form input,
.career form textarea {
  width: 100%;
  padding: 1em;
  border: solid 1px #627EDC;
  border-radius: 4px;
}

.career form textarea {
  resize: none;
}

.career form button {
  background:#F9CD05;
  border: 0;
  color: #e4e4e4;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}

.career form button:hover,
.career form button:focus {
  background: #F9CD05;
  color: #ffffff;
  outline: 0;
  transition: background-color 2s ease-out;
}

/* ------------- */
/* GLOBAL STYLES */
/* ------------- */



ul {
  list-style: none;
  padding: 0;
}

.brand {
  text-align: center;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.brand span {
  color: #ffffff;
}

.wrapper {
  box-shadow: 0 0 20px 0 rgba(57, 82, 163, 0.7);
}

.wrapper > * {
  padding: 1em;
}

/* ------------------- */
/* COMPANY INFORMATION */
/* ------------------- */

.company-info {
  background:#F9CD05;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.company-info h3,
.company-info ul {
  text-align: center;
  margin: 0 0 1rem 0;
        color: #000;
}

/* ------- */
/* CONTACT */
/* ------- */

.contact {
  background:#F9CD05;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* ---- */
/* FORM */
/* ---- */

.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.contact form label {
  display: block;
}

.contact form p {
  margin: 1;

    
}

.contact form .full {
  grid-column: 1 / 3;
}

.contact form button,
.contact form input,
.contact form textarea {
  width: 100%;
  padding: 1em;
  border: solid 1px #627EDC;
  border-radius: 4px;
}

.contact form textarea {
  resize: none;
}

.contact form button {
  background: #F9CD05;
  border: 0;
  color: #e4e4e4;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}

.contact form button:hover,
.contact form button:focus {
  background: #F9CD05;
  color: #ffffff;
  outline: 0;
  transition: background-color 2s ease-out;
}

/* ------------- */
/* MEDIA QUERIES */
/* ------------- */

@media only screen and (min-width: 700px) {
  .wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }

  .wrapper > * {
    padding: 2em;
  }

  .company-info {
    border-radius: 4px 0 0 4px;
  }

  .contact {
    border-radius: 0 4px 4px 0;
  }

  .company-info h3,
  .company-info ul,
  .brand {
    text-align: left;
  }

.card01 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8);
  transition: 0.3s;
  padding: 10px 16px; /* Fixed duplicate padding */
  max-width: 800px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: white;
  text-align: justify;
  color: black;  
  font-family: Arial, sans-serif; /* Added fallback */
  border: 2px solid #fff; /* Fixed invalid color */
  border-radius: 25px;
}
    
/* Apply text-align: justify; specifically to article headings */
.article-heading {
  text-align: center;
}
    
    
.article-image {
  height: 300px;
  width: auto;
  display: block;  /* Ensures proper centering */
  margin: 10px auto; /* Centers the image horizontally */
  object-fit: cover;
  border-radius: 5px;
}
    
    
    
    

/********** Template CSS **********/
:root {
    --primary: #F9CD05;
    --secondary: #FFD33C;
    --light: #F3F3F3;
    --dark: #212121;
}

[class^=flaticon-]:before,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}

.btn {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 7px;
        top: -4px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        width: 100%;
        height: 1px;
        top: -1px;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.hero-header {
    background: url(../img/hero.jpg) top right no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

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

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

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px 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(2);
        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;
}

.service-item a i {
    position: relative;
    padding-left: 20px;
    transition: .3s;
}

.service-item a:hover i {
    padding-left: 50px;
}

.service-item a i::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    top: 50%;
    left: 10px;
    margin-top: -1px;
    background: var(--primary);
    transition: .3s;
}

.service-item a:hover i::after {
    width: 50px;
}

.product-item {
    padding: 30px;
}

.product-item .btn-action {
    position: absolute;
    width: 100%;
    bottom: -40px;
    left: 0;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .btn-action {
    bottom: -20px;
    opacity: 1;
}

.product-carousel .owl-nav {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 55px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.bg-offer {
    background: url(../img/offer.jpg) top right no-repeat;
    background-size: cover;
}

.price-carousel::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: var(--primary);
    border-radius: 8px 8px 50% 50%;
    z-index: -1;
}

.price-carousel .owl-nav {
    margin-top: 35px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.team-carousel .owl-nav {
    position: absolute;
    width: 50px;
    height: 160px;
    top: calc(50% - 80px);
    right: 0;
    z-index: 1;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.2);
}

.team-item .team-overlay {
    position: absolute;
    top: 45px;
    right: 45px;
    bottom: 45px;
    left: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(122, 183, 48, .8);
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-overlay {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
}

.bg-testimonial {
    background: url(../img/testimonial.jpg) top left no-repeat;
    background-size: cover;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 46px;
    top: calc(50% - 23px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

@media (min-width: 576px) {
    .blog-item .row {
        height: 300px;
    }
}

.blog-item a i {
    position: relative;
    padding-left: 20px;
    transition: .3s;
}

.blog-item a:hover i {
    padding-left: 50px;
}

.blog-item a i::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    top: 50%;
    left: 10px;
    margin-top: -1px;
    background: var(--primary);
    transition: .3s;
}

.blog-item a:hover i::after {
    width: 50px;
}
 
./* NAVBAR BASE STYLES */
.navbar {
  background: white;
  font-family: var(--ff-nunito);
  position: sticky;
  z-index: 12;
  top: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Ensures logo left, menu right */
  padding: 0 20px;
}

/* LOGO - STAYS ON THE LEFT */
.navbar .logo {
  display: flex;
  align-items: center;
}

.navbar .logo img {
  width: 80px;
}

/* MENU - STAYS ON THE RIGHT */
.navbar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end; /* Aligns menu items to the right */
  flex-grow: 1;
}

.navbar ul li {
  position: relative;
  padding: 2px 6px;
  background: white;
  color: black ;
  margin: 0;
  min-height: 20px;    
  transition: background 0.3s ease-in-out;
}

.navbar ul li a {
  color: black ;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.navbar ul li a i {
  margin-right: 6px;
  font-size: 12px;
}

.navbar ul li:hover {
  background: #F9CD05;

}
    
.navbar ul li:hover a {
  color: Black;
}

/* DROPDOWN MENU (First-Level) */
.navbar ul li ul {    
  position: absolute;
  top: 90%;
  left: 50%; /* Align submenu to start directly below parent */
  background: white;
  width: 250px; /* Adjust width for proper alignment */
  padding: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);  
  transition: opacity 0.2s ease-in-out, visibility 0.2s;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: 1fr; /* Makes items stack in tabular form */
}

/* Show submenu on hover */
.navbar ul li:hover > ul {
  opacity: 1;
  visibility: visible;
}


/* SUBMENU ITEMS */
.navbar ul li ul li {
  display: block;
  width: 100%;
  padding: 3px 5px;
  margin: 0; /* Remove extra spacing */
  font-size: 12px;
 
  background: white;
  min-height: 20px; 
     color: #555; /* Default color for sub-menu items */
  border-bottom: 1px solid #F9CD05;
  
}

.navbar ul li ul li:hover {
  background: #F9CD05;
  color: white;
}

/* MULTI-LEVEL SUBMENU */
.navbar ul li ul li ul {
  left: 100%; /* Ensures submenus open to the right */
  top: 0;
  position: absolute;
  background: white;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s;
  display: grid;
  grid-template-columns: 1fr; /* Ensures stacking for multi-level submenus */
}

.navbar ul li ul li:hover > ul {
  opacity: 1;
  visibility: visible;
}
    
    
/* Sub-submenu items (Second level dropdown) */
.navbar ul li ul li ul li {
  padding: 3px 5px;
  margin: 0;
  font-size: 12px;
  background: white;
  color: #777; /* Default color for sub-sub-menu items */
}

    /* Sub-submenu hover (Second level dropdown) */
.navbar ul li ul li ul li:hover {
  background: #F9CD05;
  color: white;
}
    
    
/* ACTIVE MENU ITEM */
.navbar ul li.active {
  background: #F9CD05;
  color: white;
}

/* MOBILE RESPONSIVE MENU */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 30px;
    right: 0; /* Align menu to the right */
    background: white;
    width: 100%;
    z-index: 1000;
  }

  .navbar ul.active {
    display: flex;
  }
    
  .navbar ul li {
    display: block;
    width: 100%;
    text-align: left;
  }

  .hamburger {
    display: block;
    background: none;
    border: none;
    color: black;
    font-size: 24px;
    cursor: pointer;
  }

  /* Mobile dropdown styling */
  .navbar ul li ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    box-shadow: none;
  }

  .navbar ul li ul li ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
  }

 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
   
 
