:root {
	--primary-color: #000;
	--secondary-color: #ffffff;
	--text-color: #fff;
	--accent-color: #2ab0aa;
	/* --accent-color-two		: #506CD7; */
	--accent-color-two: #102132;
	--white-color: #FFFFFF;
	--divider-color: #55617124;
	--dark-divider-color: #FFFFFF24;
	--error-color: rgb(230, 87, 87);
	--default-font: "DM Sans", sans-serif;
}


.text-primary {
  color:#062a4d ;
}
.arrow-section {
  position: relative;
  display: flex;
  align-items: center;
 
    margin-top: 40px;
  color: #fff;


}

.arrow-content {
  display: flex;
  
  align-items: center;
  text-align: left;
  gap: 40px;
}
/* Arrow style */
.arrow-content i {
  font-size: 60px;
  
  animation: arrowMove 1.5s infinite ease-in-out;
}

/* Arrow animation */
@keyframes arrowMove {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* Text style */
.arrow-content p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 600px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 60px;
}

.author-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 25px;
  font-weight: 600;
  color: #0a2239;
  margin: 0;
  padding-bottom: 5px;
}

.author-role {
  font-size: 20px;
  color: #888;
  margin: 0;
}
.category-section {
  padding: 80px 0;
}

.category-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-card {
  position: relative;
  width: 270px;
  height: 400px;
  background-size: cover;
  background-position: center;

  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  
  transition: background 0.4s ease;
  z-index: 1;
}


.category-card:hover::after {
  background: rgba(0, 0, 0, 0.25);
}

/* Common text element setup */
.category-card h3,
.category-card span,
.category-card p {
  position: absolute;
  color: #fff;
  margin: 0;
  z-index: 2;
  transition: all 0.4s ease;
  left: 20px; /* 👈 Unified alignment */
}

/* Initially visible: h3 only */
.category-card h3 {
  bottom: 25px;
  font-size: 22px;
  font-weight: 700;
  opacity: 1;
}

/* Initially hidden elements */
.category-card span,
.category-card p {
  opacity: 0;
  transform: translateY(15px);
}

/* On Hover */
.category-card:hover span {
  opacity: 1;
  top: 20px;
  transform: translateY(0);
}

.category-card:hover p {
  opacity: 1;
  bottom: 25px;
  transform: translateY(0);
}

.category-card:hover h3 {
  bottom: 65px;
  opacity: 0.9;
}

/* Text Styles */
.category-card span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

.category-card p {
  font-size: 15px;
  font-weight: 400;
  max-width: 80%;
}


.modern-doors{
    padding-top: 100px ;
    background-color:#f0f7f8;
}
.modern-doors-left-section img {
    height: auto;
    max-width: 500px;
    margin: auto;
    

}
.modern-doors-right-section-image {
  position: relative;
  display: inline-block;
}

.modern-doors-right-section-image img {
  height: 600px;
  max-width: 600px;
  margin: auto;
  padding-top: 120px;
  display: block;
  padding-bottom: 30px;
}

/* Pause Button Style */
.pause-btn {
  position: absolute;
  top: calc(50% + 60px); /* 👈 offset by padding-top visually */
  left: 50%;
  transform: translate(-50%, -50%);
   background: rgba(255, 255, 255, 0.9);
  
  color: #030303;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.pause-btn:hover {
 background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  transform: translate(-50%, -50%) scale(1.1);
}

.Play_image {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

}

/* Ensure the container handles positioning */
.play_image-box {
  position: relative;
  width: 100%;
  max-width: 100%; /* adjust as needed */
  overflow: hidden;

}

/* Make the image responsive and maintain aspect ratio */
.play_image-box img {
  width: 100%;
  height: 600px;          /* maintain natural proportions */
  display: block;
  object-fit: cover;     /* crop nicely if needed */
}

/* Play/Pause Button */
.pause-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

/* Hover effect */
.pause-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  transform: translate(-50%, -50%) scale(1.1);
}



/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: none; /* So mouse events pass through */
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}


.brand-section {
  background-color: var(--primary-color); /* soft pale background */
  padding: 20px 0 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.brand-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
  max-width: 1300px;
  width: 100%;


  
}

/* Logo images */
.brand-container img {
  
  background: var(--white-color);
  width: 200px;
  padding: 4px;
  /* height: 80px; */
  transition: all 0.4s linear;  


}

.brand-container img:hover {
  opacity: 1;
  transform: scale(1.05);
 
}
.brand-section-content h2{
  color: var(--accent-color);
  text-align: left;
  margin-top: 40px;
  font-size: 36px;
  font-weight: 700;
  max-width: 300px;

}

/* Responsive for small screens */
@media (max-width: 768px) {
  
  .corporate-profile {
    padding: 20px 0 !important;
  }
  .brand-container {
    gap: 12px;
  }
  .image-stack{
    height: 65vh;
  }
  .our-expertise{
    padding: 16px 12px;
  }

  .brand-container img {
    /* width: 80px; */
    height: 60px;
  }

}
@media (max-width: 576px) {
.image-stack .img-main{
  height: 60vh;
}
 .corporate-profile {
    padding: 20px 0 !important;
  }
}

.news-card {
  background: #fff;
  transition: all 0.4s ease;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-6px);
}

.news-image {
  overflow: hidden;
  border-radius: 4px;
}

.news-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-meta {
  margin-top: 15px;
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.news-meta .news-category {
  color: #05bdb1;
}

.news-meta .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #ccc;
}

.news-title {
  margin-top: 10px;
  font-size: 20px;
  color: #002147;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s;
}

.news-title:hover {
  color: #05bdb1;
}
/* --- Layout --- */
.main-container {
  display: flex;
  height: 670px;
  max-width: 1500px;
  padding-bottom: 50px;
  margin: auto;
}

/* --- Left: Social icons --- */
.social-container {
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  border-right: 1px solid #e0e0e0;


}

.social-sidebar a {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
  font-size: 15px;
 
  transform: rotate(180deg);
  gap: 10px;
   /* Flip whole link */
}

.social-sidebar a span {
  writing-mode: vertical-rl; /* Vertical text */
  text-orientation: mixed;
  font-weight: 700;
  color: var(--text-color); 
  
}

/* Fix icon orientation */
.social-sidebar a i {
  transform: rotate(180deg);
  color: var(--text-color);
}

.social-sidebar a:hover span {
  color: #2ab0aa;
}

/* .social-sidebar a:hover i{
  color: #2ab0aa;
} */



/* --- Right: Slider --- */
.slider-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

/* --- Slides --- */
.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(60%) scale(0.5);
  opacity: 0;
}

/* --- Smooth Jump + Scale --- */
@keyframes smoothJumpScale {
  0% {
    transform: translateY(60%) scale(0.5);
    opacity: 0.6;
  }
  30% {
    transform: translateY(-2%) scale(0.8);
    opacity: 1;
  }
  70% {
    transform: translateY(0) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.swiper-slide-active .slider-image {
  animation: smoothJumpScale 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

/* --- Caption --- */
.slider-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 2.5rem;
  padding: 10px 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 1s;
  line-height: 40px;
}

.swiper-slide-active .slider-caption {
  opacity: 1;
  transform: translateY(0);
}



/* --- Pagination --- */


.swiper-pagination-bullets {
  bottom: 35px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  transition: all 0.3s;
  display: none;
}

.swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.3);
  
}

/* --- Responsive --- */
@media (max-width: 992px) {

    .corporate-profile {
    padding: 40px 0 !important;
  }
  .main-container {
    flex-direction: column;
  }
  .image-stack{
    margin-bottom: 100px;
  }
  .image-stack .img-main{
    width: 100%;
  }

  .social-container {
    width: 100%;
    height: 60px;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .social-sidebar {
    flex-direction: row;
    writing-mode: horizontal-tb;
    gap: 20px;
  }

  .slider-caption {
    font-size: 1.2rem;
    padding: 20px 25px;
  }
 
}




/****************************************************************
                           about-us single page start
*****************************************************************/
.image-stacks {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 600px;
}

/* ==== Main Image ==== */
.image-stacks .img-mains {
  width: 65%;
  height: 550px;
  margin-left: 200px;
  object-fit: cover;
  transition: all 0.4s ease;
}

/* ==== Overlay Image ==== */
.image-stacks .img-overlays {
  position: absolute;
  bottom: -20px;
  right: 160px;
  width: 75%;
  height: 300px;
  object-fit: cover;
 
  transition: all 0.4s ease;
}

/* ========================================= */
/* ✅ Tablet (768px – 991px) */
/* ========================================= */
@media (max-width: 991px) and (min-width: 768px) {
  .image-stacks {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .image-stacks .img-mains {
    width: 70%;
    height: 320px;
    margin-left: 0; /* Center align on tablet */
  
    object-fit: cover;
  }

  .image-stacks .img-overlays {
    position: absolute;
    bottom: -25px;
    right: 50px;
    width: 60%;
    height: 180px;
 
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
}


/* ========================================= */
/* ✅ Mobile (≤ 767px) */
/* ========================================= */
@media (max-width: 767px) {
  .image-stacks {
    height: 350px;
  }

  

  .image-stacks .img-mains {
    width: 80%;
    height: 280px;
    margin-left: 40px;
  }

  .image-stacks .img-overlays {
    width: 70%;
    height: 160px;
    bottom: -20px;
    right: 40px;
  }
}

/* ========================================= */
/* ✅ Small Mobile (≤ 480px) */
/* ========================================= */
@media (max-width: 480px) {
  .image-stacks {
    height: 300px;
    padding-top: 30px;
  }

  .image-stacks .img-mains {
    width: 85%;
    height: 220px;
    margin-left: 20px;
  }

  .image-stacks .img-overlays {
    width: 70%;
    height: 140px;
    bottom: -10px;
    right: 20px;
  }
}









/****************************************************************
                           about-us single page end
*****************************************************************/



/* Statistics Section */
.our-statistics {
  /* background-color: #f8f9fa; */
  padding: 40px 0;
  text-align: center;
}

.statistics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 0;
}

.statistics__item {
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statistics__item:hover {
  transform: translateY(-5px);
}

.statistics__title {
  font-size: 62px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.2;
}

.statistics__item-content {
  font-size: 19px;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 10px;
}

.text_primary_dark {
 color: var(--accent-color);
}

/* Optional styling for "years" or "+" suffix */
.statistics__title span + span {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .statistics__title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .our-statistics {
    padding: 20px 0;
  }

  .statistics__item {
    width: 100%;
  }
}











.play_image-box {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: 700px;
  /* adjust as needed */
}

.play_image-box img {
  width: 100%;
  height: auto;
  display: block;
  
}

/* Circle styling: centered by default using translate(-50%, -50%) */
.circle {
  position: absolute;
  width: 100px;
  height: 100px;
  background: transparent;
  border-radius: 50%;
  border: 2px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-shadow: 0 8px 25px rgba(0,0,0,0.15); */
  z-index: 10;
  pointer-events: none; /* let the button receive pointer events inside */
}

/* put the button on top of the circle so it receives pointer events */
.play-btn {
  position: relative;
  z-index: 11;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  color: #FFF;
  pointer-events: auto; /* button must receive pointer events */
}

/* small visual feedback when active */
.circle.active {
  /* box-shadow: 0 14px 40px rgba(0,0,0,0.25); */
  transform: translate(-50%, -50%) scale(1.02);
  transition: box-shadow 220ms ease, transform 220ms ease;
}





.work-example_about{
  padding: 80px 0;
} 
.light-section{
  color: var(--accent-color);
}



.light-section .section-title h3,
.light-section .section-title h2,
.light-section .section-title p,
.light-section .section-title span
{
  color: var(--accent-color);
}


.light-section .custom-control 

{
  background-color: var(--accent-color);
  color: #fff;
  border: 1px solid var(--accent-color);
}

/* SECTION SPACING */
.Huge_honor {
  padding: 50px 0;

}

/* ===============================
   VIEW ALL LINK – SLIDING ARROW
   =============================== */
.view-all-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  text-decoration: none;
}

.view-all-link .arrow {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.35s ease;
}

.view-all-link .arrow-main {
  opacity: 1;
  transform: translate(0, -50%);
}

.view-all-link .arrow-new {
  opacity: 0;
  transform: translate(-10px, -50%);
}

.view-all-link:hover .arrow-main {
  opacity: 0;
  transform: translate(12px, -50%);
}

.view-all-link:hover .arrow-new {
  opacity: 1;
  transform: translate(0px, -50%);
}

/* ===============================
   AWARD CARDS + HOVER OVERLAY
   =============================== */
.award-item {
  border: 1px solid #e1e7eb;
  padding: 40px;
  background: #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}

.award-item img {
  max-width: 70%;
  transition: 0.3s ease;
  object-fit: contain;
}

/* Overlay */
.award-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.35s ease;
  height: 100%;   /* ✅ make overlay cover full card */
}

.award-overlay h4 {
  font-size: 18px;
  color: #062a4d;
  margin-bottom: 5px;
}

.award-overlay p {
  font-size: 14px;
  color: #333;
}

/* HOVER INTERACTION */
.award-item:hover img {
  opacity: 0.3;
}

.award-item:hover .award-overlay {
  opacity: 1;
  transform: translateY(0);
}





.corporate-profile{
  padding: 70px 0;
  
}

.corporate-profile-content {
	margin-right: 30px;
}

.corporate-profile .section-title {
	text-align: left;
	margin-bottom: 30px;
	max-width: 100%;
}

.corporate-link {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Icon box */
.icon-div {
  height: 60px;
  width: 60px;
  /* background-color: #fff; */

  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--accent-color);
}

.icon-div i {
  color: var(--accent-color);
  font-size: 24px;
}

/* Phone text styling */
.phone-text p {
  margin: 0;
  font-weight: 600;
  color: var(--text-color);
}

.phone-text a {
  text-decoration: none;
  color: inherit;
}

.btnn {
	background-color:var(--accent-color);
	border: none;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	padding: 15px 30px;
}

.btnn:hover {
	background-color:#bdcc3e;
	color: #fff;

}


/* 
Premium Quality Section Start */


.premium-quality {
  padding: 80px 0;
 
}

.premium-quality .section-title {
  text-align: center;
  margin-bottom: 30px;
  max-width: 100%;
}

.premium-card-wrapper{
  padding-bottom: 50px;
}

/* Card Container */
.premium-card {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  height: 450px;
}

/* Image Wrapper */
.premium-card-image-wrapper {
  width: 250px;
  height: 250px;
  margin: 0 auto 30px auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

/* Card Image */
.premium-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.premium-card-image-wrapper:hover .premium-card-image {
  transform: scale(1.07);
}

/* Text */
.premium-card-subtitle {
  color: var(--text-color);
  margin-bottom: 10px;
}

.premium-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
   margin-bottom: 10px;
}


.premium-card-desc {
  color: var(--text-color);
  margin-bottom: 30px;
  padding: 0 20px;
 
}


/* Arrow Button */
.premium-card-btn {
  width: 48px;
  height: 48px;
  border: 2px solid #dce2e6;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  color: var(--text-color);
  transition: all .3s ease;

}





/* Hovering the entire card */
.premium-card:hover .premium-card-btn {
  background: #2ab0aa;
  border-color: #2ab0aa;
  color: #fff;
  transform: scale(1.12); /* grow effect */
}




/* 
Premium Quality Section End */





/* Banner Section start  */

/* Banner Background */
.appointment-banner {
  background-color: var(--accent-color); /* green color from screenshot */
  padding: 50px 0;
}

/* Title */
.banner-title {
  font-size: 30px;
  font-weight: 700;
  color: #05294b;
  line-height: 1.3;
}

/* Buttons Shared Styles */
.banner-btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Primary Button (Blue) */
.primary-btn {
  background-color: #05294b;
  color: #fff;
}

.primary-btn:hover {
  background-color: #041f38;
}

/* Outline Button */
.outline-btn {
  border: 2px solid #05294b;
  color: #05294b;
}

.outline-btn:hover {
  background-color: #05294b;
  color: #fff;
}


/* Banner Section End  */



 /* Modern Solution section Start */



.modern-solution {
  padding: 80px 0;
 
}

/* LEFT COLUMN IMAGES */
.modern-left-side {
  display: flex;
  gap: 25px;
}

.modern-img-box {
  width: 100%;
  height: 520px;
  overflow: hidden;

}

.modern-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT SIDE CONTENT */
.modern-right-content {
  color: var(--text-color);
}

.modern-subtitle {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.modern-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color);
}

.modern-desc {
  color: var(--text-color);
  margin-bottom: 30px;
  max-width: 450px;
}

/* BUTTON */
.modern-btn {
  background-color: #33a6ab;
  padding: 14px 40px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;

  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.modern-btn:hover {
  background-color: #27888c;
}

/* Responsive Images */
@media (max-width: 991px) {
  .modern-left-side {
    margin-bottom: 40px;
  }
}














 /* Modern Solution section end */









/* Features  section Start */
.feature-section {

  padding: 80px 0;
}

.feature-card {
  padding: 30px 20px;
  transition: 0.4s ease;
  border-radius: 4px;
  position: relative;
}

/* ICON */
.feature-icon {
  height: 60px;
  width: 60px;
  margin: 0 auto 15px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}

.feature-icon i {
  font-size: 60px;
  color: #b8d335; /* green icon */
  transition: 0.35s ease;
}

.feature-card:hover .feature-icon i {
  color: var(--accent-color); /* darker green on hover */
}


/* TITLE */
.feature-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
  margin: 20px 0 10px;
  padding-bottom: 10px
}

/* DESCRIPTION */
.feature-desc {
  color: var(--text-color);
  max-width: 320px;
  margin: 0 auto 25px auto;
  padding-bottom: 5px;
}

/* ----------- READ MORE SECTION ----------- */


/* READ MORE WRAPPER */
.feature-readmore {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

/* HIDDEN READ MORE TEXT */
.feature-readmore .read-text {
  position: absolute;
  opacity: 0;
  transform: translateX(-8px);   /* small left shift */
  transition: 0.35s ease;
  white-space: nowrap;
}

/* VISIBLE ARROW (centered) */
.feature-readmore .read-arrow {
  display: inline-block;
  font-size: 18px;
  transition: 0.50s ease;
  transform: translateX(0);
}

/* ------------ HOVER EFFECTS ------------ */

/* Show Read More IN THE CENTER */
.feature-card:hover .feature-readmore .read-text {
  opacity: 1;
  transform: translateX(0);      /* moves into center */
}

/* Slide Arrow slightly forward */
.feature-card:hover .feature-readmore .read-arrow {
  transform: translateX(60px);    /* subtle slide right */
}


/* testinomial section start */

.our_testimonials {
 
  max-width: 1500px;
  margin: auto;
}

.testi-subtitle {
  color: #3c7a89;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testi-title {
  color: #062a4d;
  font-weight: 700;
  margin-top: 5px;
}

/* CARD */
/* .testi-card {
 
  padding: 60px 25px;
  
  box-shadow: 0 8px 20px rgba(58, 179, 155, 0.25);
  min-height: 370px;
  transition: 0.3s ease;
  width: 320px;
  
} */


/* CARD */
.testi-card {
  background: #3b3b3b; /* matches black body */
  padding: 60px 25px;
  min-height: 370px;
  width: 320px;
  border-radius: 18px;

  /* Border-like shadow all sides */
  box-shadow:
    12px 12px 12px rgba(0, 255, 200, 0.18),  /* outer glow around entire card */
    12px 12px 25px rgba(0, 255, 200, 0.08);  /* softer layer for depth */

  border: 1px solid rgba(0, 255, 200, 0.15); /* subtle border visible on dark */

  transition: all 0.35s ease;
}

/* HOVER EFFECT */
.testi-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 18px rgba(0, 255, 200, 0.5),
    0 0 45px rgba(0, 255, 200, 0.35);

  border-color: rgba(0, 255, 200, 0.5); /* brighter border on hover */
}


/* STARS */
.stars {
  color: #2ab0aa;
  font-size: 25px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  padding-bottom: 20px;
}

/* TEXT */
.testi-text {
  font-size: 18px;
  color:var(--text-color);
  margin-bottom: 18px;
  padding-bottom: 10px;
  line-height: 1.6;
}

/* NAME */
.testi-name {
  color:var(--text-color);
  font-weight: 700;
  margin-bottom: 2px;
}

/* LOCATION */
.testi-location {
  color: var(--text-color);
  font-size: 14px;
}

/* Hover Effect */
/* .testi-card:hover {
  transform: translateY(-6px);
 box-shadow: 0 8px 20px rgba(46, 209, 177, 0.25);
} */

.myTestimonialSlider .swiper-slide {
  width: 280px !important;   /* fixed card width */
}

.myTestimonialSlider {
  padding-left: 20px;
  padding-right: 20px;
}

/* Pagination container */
.swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 40px;
  text-align: center;
}

/* Dots styling */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #b3c7d1;
  opacity: 1;
  margin: 0 6px !important;
  border-radius: 50%;
}



.swiper-pagination-bullet{
  background-color: #fff !important;
}

/* testinomial section end*/

.swiper-pagination-bullet .swiper-pagination-bullet-active{
  background-color: var(--accent-color);
}


/* Our-team-section start */


.team-card {
  text-align: left;
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform .4s ease;
}

.team-card:hover .team-image {
  transform: scale(1.05);
}

/* SOCIAL ICONS (hidden at start) */
.team-social {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;

  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;

 
}

.team-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  color: #062a4d;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: 0.3s ease;
}

.team-social a:hover {
  background: var(--accent-color);
  color: #fff;
}

/* Hover Reveal Effect */
.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

/* TEXT */
.team-name {
  margin-top: 20px;
  font-size: 26px;
  font-weight: 700;
  color:var(--text-color);
}

.team-role {
  color: var(--text-color);
  margin-top: 4px;
  font-size: 20px;
}


/* Our-team-section end */

 /* FILTER BUTTONS */
        .filters {
            text-align: center;
            /* margin: 30px 0; */
        }

        .filter-btn {
            padding: 10px 20px;
            margin: 5px;
            margin-bottom: 2px;

            background: #ddd;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            font-size: 15px;
        }

        .filter-btn.active {
            background: #000;
            color: #fff;
        }

        /* MASONRY GRID */
        .grid {
            width: 90%;
            margin: auto;
        }

        .grid-sizer,
        .grid-item {
            width: 33.33%;
        }

        .grid-item {
            padding: 10px;
        }

        .grid-item img {
            width: 100%;
            display: block;
            border-radius: 10px;
        }

        /* Responsive */
        @media(max-width: 768px){
            .grid-sizer,
            .grid-item {
                width: 50%;
            }
        }
        @media(max-width: 500px){
            .grid-sizer,
            .grid-item {
                width: 100%;
            }
        }









/* ============================================
   PROJECT PAGE (CLEAN + FIXED)
   ============================================ */

/* Section Background */
.our-projects,
.project-section {
    padding: 20px 0;
    /* background-color: #f0f7f8; */
}

/* --------------------------------------------
   CLICKABLE CARD LINK
-------------------------------------------- */
.project-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Enable pointer cursor even with custom cursor disabled */
body.no-cursor .project-link,
body.no-cursor .project-link *,
body.no-cursor .filter-btn,
body.no-cursor .sub-filters .filter-btn {
    cursor: pointer !important;
}

/* --------------------------------------------
   FILTERS (MAIN + SUBFILTERS)
-------------------------------------------- */
.filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.filter-group {
    position: relative;
}

/* Main + Sub filter button */
.filter-btn {
    background: #eeeeee;
    border: none;
    padding: 10px 22px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
}

.filter-btn.active {
    background: var(--accent-color);
    color: #fff;
}

/* Sub-filter dropdown */
.sub-filters {
    display: none;
    position: absolute;

    left: 0;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 20;
    gap: 10px;
    flex-wrap: wrap;
    min-width: 250px;
}

.filter-group:hover .sub-filters {
    display: flex;
}

/* --------------------------------------------
   MASONRY GRID
-------------------------------------------- */
.grid {
    width: 100%;
}

.grid-item {
    width: 33.33%;
    padding: 10px;
}

.grid-sizer {
    width: 33.33%;
}

@media (max-width: 768px) {
    .grid-item,
    .grid-sizer {
        width: 50%;
    }
}

@media (max-width: 500px) {
    .grid-item,
    .grid-sizer {
        width: 100%;
    }
}

/* --------------------------------------------
   PROJECT CARD + HOVER TEXT
-------------------------------------------- */
.project-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project-box img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

/* Hover text */
.project-hover {
    position: absolute;
    left: -100%;
    bottom: 20px;
    width: 80%;
    margin-left: 20px;
    padding: 15px 20px;
    background: var(--primary-color);
    color: var(--text-color);
    opacity: 0;
    transition: all 0.35s ease;
    border-radius: 6px;
}

.project-box:hover .project-hover {
    left: 0;
    opacity: 1;
}






/************************************/
/***       Latest News css     ***/
/************************************/




.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 40px 0;
}

.blog-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-image {
    width: 100%;
    height: 350px;
    overflow: hidden;

}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}

.blog-card:hover img {
    transform: scale(1.04);
}

.blog-meta {
    font-size: 14px;
    color: var(--text-color);
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    text-transform: uppercase;
}

.blog-meta .cat {
    letter-spacing: 1px;
}

.blog-title {
    margin-top: 10px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--text-color);
}


/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}












/* Outer section */
.contact-section {
  
    padding-top: 50px;
}

/* 2-column grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

/* LEFT SIDE */
.contact-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
}

.contact-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
}

.contact-text {
    margin: 20px 0 30px;
    color:var(--text-color);
    max-width: 450px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-color);
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* RIGHT SIDE FORM */
.contact-form {
    width: 100%;
}

/* FORM GRID */
.form-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

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

/* FORM LINE — icon + input in a row */
.form-line {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid #cfd8dc;
    padding-bottom: 30px;
    transition: border-color .3s ease;
}

/* Hover or focus → border turns black */
.form-line:hover,
.form-line:focus-within {
    border-bottom-color: #000;
}

/* ICON STYLE */
.form-line label i {
    font-size: 18px;
    width: 22px;
    color: var(--text-color);
    display: block;
}

/* INPUT STYLE */
.form-line input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    padding: 0;
    color: var(--text-color);
}

.form-line input::placeholder {
    color: #8a96a0;
}

/* FOOTER */
.contact-footer {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Button */
.btn-primary {
    background: var(--accent-color);
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
}
.btn-primary:hover{
  background-color: #9aad2b;
	color: #fff 	!important;
   
}


.btn-primary i {
    margin-right: 8px;
    font-size: 25px;
}

.btn-primary i.fa-telegram {
    color: var(--text-color);
    margin-top: 5px;
}

/* Policy */
.policy {
    font-size: 14px;
    color: #777;
}

.policy a {
    color: var(--text-color);
    text-decoration: underline;
}

/* Map */
.contact-map {
    margin-top: 60px;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* ==========================================================
   RESPONSIVE RULES
========================================================== */

/* Tablet (900px and below) */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr; /* stack left + form */
    }

    .form-two {
        grid-template-columns: 1fr; /* stack inputs */
        gap: 35px;
        margin-bottom: 40px;
    }

    .contact-title {
        font-size: 32px;
    }
}

/* Mobile (500px and below) */
@media (max-width: 500px) {

    .contact-title {
        font-size: 28px;
    }

    .form-line {
        gap: 10px;
        padding-bottom: 20px;
    }

    .form-line label i {
        font-size: 16px;
        width: 18px;
    }

    .form-line input {
        font-size: 15px;
    }

    .contact-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .policy {
        font-size: 13px;
        line-height: 1.4;
    }

    .contact-map {
        height: 350px; /* smaller map on mobile */
    }
}



#rotate{
transform: rotate(90deg);
}


.client{
  padding-top: 50px;
}










/* BANNER */
.sb-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* HEADER SECTION (floating white box) */
.sb-header-section {
    width: 100%;
    position: relative;
}

/* CENTER THE WHITE BOX EXACTLY LIKE THE IMAGE */
.sb-header-box {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 850px;

    /* SAME FLOATING EFFECT */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -120px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

/* CATEGORY TAG */
.sb-category {
    background: #c6e26d;
    padding: 5px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
}

/* TITLE */
.sb-title {
    font-size: 42px;
    margin: 25px 0;
    font-weight: 800;
    color: #05386b;
    line-height: 1.3;
}

/* META DETAILS */
.sb-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 14px;
}

.sb-author-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.sb-dot {
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
}

/* CONTENT AREA */
.sb-content-section {
    padding-top: 220px; /* perfect spacing below floating card */
    padding-bottom: 50px;
}

.sb-content {
    max-width: 850px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
}



/* ================= TAGS & SHARE ================= */

.sb-tags-share-section {
    margin-top: 40px;
    margin: auto;
    max-width: 600px;
}

.sb-tags-wrapper {
    max-width: 850px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sb-tags {
  
   display: flex;
    gap: 30px;
    max-width: 600px;
    margin: auto;
    
}

.sb-tag {
    padding: 6px 18px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #d6d6d6;
    font-size: 13px;
    color: #555;
}

/* Like button */
.sb-like-box {
    display: flex;
    align-items: center;
    gap: 8px;
    color:var(--text-color);
    font-size: 18px;
}

.sb-like-box i {
    font-size: 22px;
    color: var(--text-color);
}

/* Social share icons */
.sb-share a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    font-size: 18px;
    margin-left: 6px;
    color: #444;
}

.sb-share a i{

   color: #444;
}



/* Divider line */
.sb-divider {
    max-width: 850px;
    margin: 20px auto;
    border: none;
    border-top: 1px solid #dcdcdc;
}

/* ================= PREVIOUS / NEXT ================= */
.sb-prev-next-section {
    margin-top: 50px;
    padding: 40px 0;
    max-width: 600px;
    margin: auto;
}

.sb-prev-next-grid {
    max-width: 850px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sb-nav-heading {
    font-size: 12px;
    text-transform: uppercase;
    color: #7d9eb2;
    letter-spacing: 0.5px;
    margin-right: 10px;
    text-align: end;
}

.sb-nav-heading i{
  font-size: 10px;
  
  color: var(--text-color);

}
.sb-prev-post a,
.sb-next-post a {
    display: block;
    margin-top: 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
}

.sb-next-post{
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.sb-prev-post a:hover,
.sb-next-post a:hover {
    text-decoration: underline;
}

/* ----------- MOBILE FIX ----------- */
@media (max-width: 768px) {
    .sb-prev-next-grid {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    .sb-header-box{
      max-height: 300px;
    } 
    .sb-title{
      font-size: 20px;
      margin: 0px;
    }
    .sb-meta{
      flex-direction: column;
      gap: 0px;
    }
    .sb-author-box{
      flex-direction: column;
    }
    .work-examples .section-title{
      text-align: left;
      padding-left: 15px;
    }
}

/* ================= AUTHOR BOX ================= */

.sb-author-section {
    padding: 40px 0;
    max-width: 600px;
    margin: auto;

}

.sb-author-box {
    max-width: 850px;
    background: var(--primary-color);
    border-radius: 12px;
    padding: 30px 40px;
    margin: auto;
    display: flex;
    gap: 25px;
    box-shadow: 2px 2px 2px 2px var(--accent-color);
}

.sb-author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.sb-author-label {
    color: var(--text-color);
    font-size: 12px;
}

.sb-author-text {
    color: var(--text-color);
    margin: 10px 0 15px;
    line-height: 1.6;
}

.sb-author-social a {
    margin-right: 14px;
  
  
  }

.sb-author-social a i {
   
    font-size: 22px;
    
    color: var(--text-color);
}

.sb-author-social a i:hover{
  color: var(--accent-color);
}



/* SECTION BACKGROUND */
.comment-section {
    
    padding: 50px 0;
    max-width: 600px;
    margin: auto;
}

.comment-container {
    max-width: 700px;
    margin: auto;
    padding: 10px;
}

/* TITLE */
.comment-container h2 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 25px;
}

/* FORM LAYOUT */
.comment-form .row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.comment-form .form-group {
    flex: 1;
}

.comment-form .form-group.full {
    width: 100%;
    margin-bottom: 25px;
}

/* INPUTS + TEXTAREA STYLE */
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #d1dce1;
    background: transparent;
    font-size: 16px;
    color: var(--text-color);
    outline: none;
}

.comment-form textarea {
    height: 120px;
    resize: none;
}

/* CHECKBOX */
.checkbox-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-line input {
    width: 18px;
    height: 18px;
}

.checkbox-line span {
    color: #6b7d87;
    font-size: 14px;
}

/* BUTTON */
.submit-btn {
    background: #54a6b1;
    border: none;
    padding: 12px 25px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: .3s ease;
}

.submit-btn:hover {
    background: #3b8f99;
}

/* MOBILE */
@media(max-width: 768px) {
    .comment-form .row {
        flex-direction: column;
    }
}


/* Section */
.ym-section {
   
    padding: 50px 0;
}

.ym-container {
    max-width: 600px;
    margin: auto;
    padding: 0 20px;
}

.ym-title-main {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Grid */
.ym-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* Cards */
.ym-card {
    display: flex;
    flex-direction: column;
}

/* Static image */
.ym-media img {
    width: 100%;
    display: block;
    border-radius: 4px;
}

/* Swiper container */
.ym-swiper {
    position: relative;
}

.ym-swiper img {
    width: 100%;
    border-radius: 4px;
}

/* Navigation buttons */
.ym-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 10;
    color: #000;
}

.ym-btn-prev {
    left: 12px;
}

.ym-btn-next {
    right: 12px;
}

/* Remove default swiper icons */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* Labels & Titles */
.ym-label {
    margin-top: 12px;
    font-size: 12px;
    color:var(--text-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.ym-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 6px;
}

/* Mobile */
@media(max-width: 768px) {
    .ym-grid {
        grid-template-columns: 1fr;
    }
}


@media (min-width: 576px) and (max-width: 767px) {
    /* Small tablets / large phones */

    .our-services .section-title {
      padding-top: 120px;
    }


        .image-stack .img-main{
          width: 80%;
        }

    .image-stack .img-overlay{
      
    }



}

/* details page */
.title_txt {
  font-size: clamp(32px, 4vw, 50px);
  line-height: normal;
  text-align: center;
}
.img_txt_box{
    /* width: 80%; */
    width: min(100%, 1140px);
    padding: 0 20px;
}

/* Small devices: width 90% */
@media (max-width: 576px) {

  .img_txt_box{
    /* width: 90%; */
}
}
.mt-100{
  margin-top: 100px;
}

/* .product-list li :hover{
background-color: var(--accent-color);

} */
  product-list nav-item icon:hover{
color: #9aad2b;

}
.nav-item a i:hover{
  color: #9aad2b !important;
}
.nav-item a i:hover .nav_icons_svg{
  color: #9aad2b;
}

/* .product-hover-box a:hover h4{
  color: var(--accent-color);
} */
/* 
.product-hover-box a:hover h4 span{
  color: var(--accent-color);
} */

.nav-item:hover  .product-hover-box a h4{
  color: #9aad2b;
}
.nav-item:hover  .product-hover-box span{
  color: #9aad2b;
}

.nav-item a i:hover{
  color: #9aad2b;
}
#mobile-nav-icons i:hover{
  color: #9aad2b !important;
}
