@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

body {
  font-family: "Roboto", sans-serif;
  color: #111;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0px;
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: #111;
}

h5 {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  color: #555;
}

.right-arrow a {
  color: #FFF;
}

button {
  padding: 0.75rem 1.5rem;
  background: #7aa93c;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.btn {
  padding: 12px 20px;
  background-color: #0466d6;
  color: #fff;
  background-color: transparent;
  color: #000;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
  letter-spacing: 0.9px;
}

.btn:hover {
  background: #7aa93c;
  color: #fff;
  border: 2px solid #7aa93c;
}

.btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: start;
}

.primary-btn {
  background: #7aa93c;
  color: #fff;
  border: 2px solid #7aa93c;
}

.primary-btn:hover {
  opacity: 0.8;
}

/**
** Header
*/
.header {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  padding: 15px 0;
  color: #fff;
  z-index: 99;
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

.logo img {
  height: auto;
  max-width: 190px;
}

.hero-image {
  display: none;
}

.logo .dot {
  color: #0f6cff;
}

/*  Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 1001;
  position: relative;
}

#navMenu>li>ul {
  display: block;
}

.menu-open {
  overflow: hidden !important;
  height: 100vh;
  position: fixed;
  width: 100%;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(52deg) translate(2px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-52deg) translate(4px, -7px);
}

/* Navigation - Mobile First */
.navbar ul {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(45, 45, 45, 0.98);
  padding: 80px 40px 40px;
  list-style: none;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.navbar ul.active {
  transform: translateY(0);
}

.navbar ul li {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
  position: relative;
}

.navbar ul.active li {
  opacity: 1;
  transform: translateY(0);
}

.navbar ul.active li:nth-child(1) {
  transition-delay: 0.1s;
}

.navbar ul.active li:nth-child(2) {
  transition-delay: 0.2s;
}

.navbar ul.active li:nth-child(3) {
  transition-delay: 0.3s;
}

.navbar ul.active li:nth-child(4) {
  transition-delay: 0.4s;
}

.navbar ul.active li:nth-child(5) {
  transition-delay: 0.5s;
}

.navbar ul.active li:nth-child(6) {
  transition-delay: 0.6s;
}

.navbar ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  display: block;
  padding: 10px 0;
  color: #fff;
}

.navbar ul li a:hover {
  color: #4caf50;
}

/* Mobile Subnav */
.navbar ul li ul {
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar ul li.active ul {
  max-height: 300px;
}

.navbar ul li ul li {
  margin-bottom: 8px;
  opacity: 1;
  transform: none;
}

.navbar ul li ul li a {
  font-size: 12px;
  text-transform: none;
  letter-spacing: 1px;
  border: none;
  padding: 5px 0;
  position: relative;
  padding-left: 15px;
}

.navbar ul li ul li a:hover {
  color: #4caf50;
}

.menu-close {
  position: absolute;
  top: 25px;
  right: 40px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 1002;
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}

.navbar ul.active .menu-close {
  opacity: 1;
}

.fixed-header {
  height: 60px;
  position: fixed;
  background: #262626;
  top: 0;
  z-index: 999;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
}

.fixed-header button {
  background-color: #7aa93c;
  color: #fff;
  padding: 10px 20px;
  margin-top: 0px;
  font-size: 14px;
  font-weight: 500;
}

.fixed-header button:hover {
  opacity: 0.8;
}

.fixed-header img {
  width: 100px;
}

/**
** Carousel
*/
.carousel-section {
  margin-top: 80px;
  position: relative;
}

.owl-carousel .slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
  user-select: none;
  -webkit-user-drag: none;
}

.content {
  max-width: 600px;
  animation: slideUp 1s ease-in-out;
}

.owl-carousel .owl-item .content {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.owl-carousel .owl-item.active .content {
  opacity: 1;
}

.tag {
  color: #66bb33;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.carousel-nav span {
  cursor: pointer;
  color: #888;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.carousel-nav span.active {
  color: #66bb33;
}

.carousel-nav {
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 20px;
  z-index: 100;
}

.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.owl-carousel .owl-nav,
.owl-carousel .owl-dots {
  display: none;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/**
** Section
*/
.section-left {
  max-width: 480px;
}

.section-left h6 {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
}

.section-left h1 {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  margin: 10px 0;
  position: relative;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.section-left h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #9db56c;
}

.section-left p {
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
}

.section-right {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  max-width: 700px;
}

/**
** About Us
*/
.about-us button {
  margin-top: 10px;
  padding: 14px 30px;
  background: #9db56c;
  border: none;
  color: #fff;
}

.about-us button:hover {
  opacity: 0.8;
}

.section-left button {
  margin-top: 10px;
  padding: 16px 35px;
  background: #9db56c;
  border: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.8px;
}

.section-left button:hover {
  opacity: 0.8;
}

/**
** Feature
*/
.feature {
  display: flex;
  flex-direction: column;
}

.feature img {
  width: 40px;
  margin-bottom: 10px;
}

.feature h4 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feature p {
  font-size: 13px;
  color: #ccc;
  line-height: 1.6;
}

.scroll-top-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #0466d6;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
}

.scroll-top-btn img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.team-section {
  padding: 40px 0px;
}

.images-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.text-content {
  text-align: center;
}

.text-content h4 {
  font-size: 0.9rem;
  color: #7a7a7a;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.text-content h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.text-content h2 span {
  display: block;
}

.text-content .line {
  width: 30px;
  height: 2px;
  background-color: #85c227;
  margin-bottom: 30px;
}

.text-content .subheading {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.text-content p {
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: #666;
  line-height: 1.6;
}

.signature {
  font-family: "Brush Script MT", cursive;
  font-size: 1.5rem;
  margin-top: 1rem;
  display: inline-block;
}

.recent-works {
  text-align: center;
}

.recent-works h5 {
  font-size: 0.75rem;
  color: #7a7a7a;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

.recent-works h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0.3rem 0 1rem;
}

.recent-works .blue-line {
  width: 30px;
  height: 3px;
  background-color: #9db56c;
}

.recent-works .filters {
  margin-bottom: 2rem;
  text-align: left;
}

.recent-works h2 {
  text-align: left;
}

.recent-works .filters a {
  margin: 0 0.5rem;
  text-decoration: none;
  font-size: 0.85rem;
  color: #7a7a7a;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
}

.recent-works .filters a:hover,
.recent-works .filters a.active {
  color: #000;
}

.recent-works .view-projects {
  font-size: 0.75rem;
  float: right;
  margin-top: -2rem;
  margin-right: 1rem;
  text-transform: uppercase;
  color: #7a7a7a;
}

/* Isotope Grid Styles */
.isotope-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  transition: all 0.3s ease;
}

.work-item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex: 1 1 100%;
  max-width: 100%;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 1;
  transform: scale(1);
}

.work-item.isotope-hidden {
  pointer-events: none;
  opacity: 0;
  transform: scale(0.001);
}

.work-item img {
  width: 100%;
  display: block;
  height: auto;
  transition: transform 0.3s ease;
}

.work-item:hover img {
  transform: scale(1.05);
}

.work-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.work-item-overlay span {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #999;
  display: block;
}

.work-item-overlay h4 {
  margin: 0.5rem 0 0 0;
  font-size: 1rem;
  color: #111;
}

.work-item:hover .work-item-overlay {
  transform: translateY(0%);
  opacity: 1;
}

.owl-carousel .item {
  position: relative;
  overflow: hidden;
}

.owl-carousel .item img {
  width: 100%;
  display: block;
  height: auto;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  padding: 1rem;
  text-align: left;
}

.overlay span {
  font-size: 0.7rem;
  color: #7a7a7a;
  text-transform: uppercase;
}

.overlay h4 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.2rem;
  color: #111;
}

.item:hover .overlay {
  transform: translateY(0);
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #85c226;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section {
  margin: auto;
}

section.section-light p {
  color: #000;
  margin-bottom: 16px;
}

.section-light {
  background-color: #f6f7fb;
  padding: 60px 0px;
  position: relative;
  margin-top: 20px;
}

section.section-light h2 {
  text-transform: uppercase;
  font-size: 24px;
}

.blue-line {
  width: 26px;
  height: 2px;
  background: #9db56c;
  margin-bottom: 2rem;
}

.clients-carousel .item img {
  max-width: 100px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.clients-carousel .item img:hover {
  filter: none;
  opacity: 1;
}

.testimonial-carousel .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
  padding: 1rem;
}

.testimonial-carousel .item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-carousel .quote {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.testimonial-carousel .author {
  margin-top: 0.5rem;
}

.testimonial-carousel .author-name {
  font-weight: bold;
  font-size: 0.9rem;
}

.testimonial-carousel .author-role {
  font-size: 0.75rem;
  color: #999;
}

.scroll-top:hover {
  opacity: 0.7;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #85c226;
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 20px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.scroll-top.show {
  display: flex;
}

.client-logos,
.features,
.pricing {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.pricing-wrapper {
  text-align: left;
}

.pricing-wrapper h6 {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-style: normal;
  color: #222a35;
}

.pricing-wrapper h2 {
  font-size: 24px;
  letter-spacing: 0.1px;
  line-height: 0.95em;
  font-weight: 700;
  position: relative;
  margin-top: 16px;
  text-transform: uppercase;
}

.pricing-wrapper h2:after {
  background-color: #0167da;
  content: "";
  display: block;
  width: 37px;
  height: 2px;

  margin-top: 10px;
}

.pricing-wrapper button {
  margin-top: 10px;
  padding: 16px 36px;
  background: #9db56c;
  border: none;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pricing-wrapper p {
  color: #7d8794;
  margin-bottom: 20px;
}

.pricing-wrapper button:hover {
  opacity: 0.7;
}

.pricing {
  padding: 20px 0px;
}

.client-logos img,
.features img {
  width: 80px;
  height: auto;
  opacity: 0.6;
}

.testimonial {
  display: flex;
  gap: 40px;
  justify-content: space-around;
  flex-wrap: wrap;
}

.testimonial-item {
  width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-item img {
  width: 60px;
  border-radius: 50%;
}

.about-us {
  color: #fff;
}

.about-text {
  max-width: 500px;
}

.about-text h2 {
  color: #fff;
  margin-bottom: 36px;
  position: relative;
  text-transform: uppercase;
  margin-top: 16px;

  font-size: 24px;
}

section.testimonials-wrapper h2 {
  text-transform: uppercase;
}

section.testimonials-wrapper {
  padding: 80px 0px;
  background: #fff;
  position: relative;
}

.about-text p {
  font-size: 14px;
  color: #b8bdc8;
  margin-bottom: 30px;
}

.about-text button {
  background: transparent !important;
  border: 1px solid #7d8794 !important;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.about-text h2:after {
  content: "";
  display: block;
  width: 37px;
  height: 3px;
  background-color: #9db56c;
  margin-top: 10px;
}

.about-map img {
  width: 100%;
}

.pricing-wrapper {
  margin-bottom: 20px;
}

.pricing-card {
  background: #fff;
  padding: 60px 20px;
  width: 250px;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
}

.pricing-card h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
}

.pricing-cards {
  height: 100%;
}

.pricing-card h6 {
  color: #929ca8;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 16px;
}

.price-per-month {
  position: relative;
  letter-spacing: -0.7px;
}

.price-per-month h2 {
  position: relative;
  color: #222a35;
  font-size: 40px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.price-per-month span {
  position: absolute;
  left: 70px;
  font-size: 14px;
}

.price-per-month p {
  font-size: 10px;
  bottom: 0px;
  position: absolute;
  right: 57px;
  color: #7d8794;
  margin: 0px !important;
}

.pricing-card p {
  margin: 10px 0px;
  color: #7d8794;
}

.pricing-card button {
  background: transparent;
  color: #7d8794;
  border: 1px solid #ecedf1;
  font-weight: 500;
  font-size: 13px;
  margin-top: 10px;
  padding: 12px 46px;
  text-transform: uppercase;
}

.pricing-card button:hover {
  color: #0457b4;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #66bb33;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50%;
  font-size: 20px;
  display: none;
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.feature-item i {
  color: #66bb33;
  font-size: 34px;
}

.feature-item h4 {
  color: #fff;
  margin: 10px 0px;
  font-size: 20px;
  font-weight: 600;
}

.feature-item p {
  color: #ffffff;
  font-size: 14px;
}

.feature-item {
  text-align: left;
}

.features-wrapper {
  background: #434f4b;
  padding: 20px 0px;
}

section.features {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #313a47;
}

/* News Section */
.news-section {
  padding: 2rem 1rem;
  text-align: center;
  background: #fff;
}

.news-subtitle {
  text-transform: uppercase;
  color: #929ca8;
  font-size: 12px;
  letter-spacing: 1px;
}

.news-title {
  font-size: 26px;
  margin-top: 20px;
  margin-bottom: 30px;
  position: relative;
  text-transform: uppercase;
  font-weight: 800;
}

.news-title::after {
  content: "";
  width: 28px;
  height: 2.5px;
  background-color: #0073ff;
  display: block;
  margin: 0.5rem auto;
}

.news-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news-card {
  background: #fff;
}

.news-card img {
  width: 100%;
  height: auto;
  position: relative;
}

.news-tag {
  display: inline-block;
  background: #6eb52f;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  margin-top: 0.8rem;
  border-radius: 3px;
  cursor: pointer;
}

.news-tag:hover {
  color: #fff;
  background: #2d2f33;
}

.news-heading {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.news-text {
  color: #666;
  font-size: 0.875rem;
}

button.more-posts-btn:hover {
  opacity: 0.7;
}

.more-posts-btn {
  margin: 2rem auto;
  padding: 16px 26px;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  color: #2d2f33;
}

/* Footer Section */
.footer {
  background-color: #2d2f33;
  color: #fff;
}

.footer-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer-top {
  background: #7a9b5d;
  color: #fff;
  padding: 60px 12px;
  display: flex;
  align-items: center;
  flex-grow: 1;
  height: 154px;
}

.footer-top p {
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.footer-top h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-bottom {
  padding: 40px 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  flex-grow: 2;
  background-color: #2d2f33;
}

.footer-column {
  flex: 1;
}

.footer-column.brand img {
  margin-bottom: 20px;
}

.right-arrow {
  text-align: right;
  font-size: 20px;
}

.right-arrow i {
  cursor: pointer;
}

.right-arrow i:hover {
  opacity: 0.7;
}

.footer-column.brand img {
  max-width: 100%;
  width: 160px;
}

.footer-logo {
  font-weight: bold;
  font-size: 1.2rem;
}

.footer-logo span {
  color: #0073ff;
}

.footer-column h5 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column ul {
  padding-left: 20px;
}

.footer-column li a {
  font-size: 12px;
  color: #b8bdc8;
  margin-bottom: 0.25rem;
  cursor: pointer;
  text-decoration: none;
}

.footer-column ul li::marker {
  color: #6fb72f;
}

.footer-column li a:hover {
  color: #6fb72f;
}

.footer-column.brand p a {
  color: #b8bdc8;
  text-decoration: none;
  cursor: pointer;
}

span.submenu-arrow {
  font-size: 12px !important;
}

.footer-column.brand p a:hover {
  color: #6fb72f !important;
}

.footer-bar {
  border-top: 1px solid #444;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.5rem;
  background-color: #2d2f33;
  height: 60px;
}

.footer-column.newsletter {
  position: relative;
}

.footer-column.newsletter p {
  color: #b8bdc8;
  font-size: 12px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.footer-column.newsletter a {
  color: #b8bdc8;
  font-size: 12px;
  text-decoration: none;
}

.footer-column.newsletter a:hover {
  color: #6fb72f;
}

.footer-column.brand p {
  font-size: 14px;
  color: #b8bdc8;
}

.footer-column.newsletter p:after {
  content: "";
  position: absolute;
  background: #b8bdc8;
  height: 1px;
  width: 110px;
  bottom: 0px;
  left: 0px;
}

.social-icons span {
  margin: 0 10px;
  font-size: 1rem;
  color: #ccc;
  cursor: pointer;
}

.footer-bar p,
.footer-bar p a {
  font-size: 12px;
  color: #b8bdc8;
}

.footer-bar p a {
  text-decoration: none;
  cursor: pointer;
}

.footer-bar p a:hover {
  text-decoration: none;
  color: #6fb72f;
}

.social-icons {
  text-align: left;
  gap: 12px;
}

.contacts_info a {
  color: #b8bdc8;
  text-decoration: none;
  font-size: 12px;
}

.contacts_info a:hover {
  color: #6fb72f;
  text-decoration: none;
}

.social-icons span {
  font-size: 15px;
  color: #b8bdc8;
}

.social-icons span:hover {
  color: #6fb72f;
}

#backToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #6eb52f;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.8rem;
  font-size: 1rem;
  z-index: 1000;
}

.testimonial-nav button,
.clients-nav button {
  font-size: 20px;
}

button.clients-prev:hover,
button.clients-next:hover,
button.testimonial-prev:hover,
button.testimonial-next:hover,
button.clients-prev:active,
button.clients-next:active,
button.testimonial-prev:active,
button.testimonial-next:active {
  background: none !important;
  color: #000 !important;
  border: none !important;
  opacity: 0.6;
}

.clients-items {
  position: relative;
  overflow: hidden;
  background: #ffff;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

section.section-light .owl-carousel {
  margin-top: 60px;
  overflow: hidden;
}

section.testimonials-wrapper .owl-carousel {
  overflow: hidden;
}

section.recent-works {
  padding-top: 40px;
  background: #fff;
}

.team-desc {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}

.team-desc i {
  margin-top: 6px;
  color: #66bb33;
}

section.about-wrapper {
  background: #222a35;
  padding: 60px 0px;
}

section.about-page-wrapper {
  background: #fff;
  padding: 120px 0px;
}

.feature i {
  font-size: 30px;
  color: #66bb33;
}

.feature h4 {
  margin-top: 15px;
  color: #fff;
}

img.main-image {
  display: none;
}

.carousel-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.home-page-banner-wrapper {
  height: 100%;
}

.home-page-banner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .slide-1 {
  background: url("../images/banner1.png") no-repeat center center/cover;
}

.slide-2 {
  background: url("../images/banner1.png") no-repeat center center/cover;
}

.slide-3 {
  background: url("../images/banner1.png") no-repeat center center/cover;
} */

/* Slide Content */
.slide-content {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
  padding: 140px 20px 80px 20px;
  text-align: center;
  color: #fff;
}

.content-animation {
  opacity: 0;
  text-align: left;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.owl-item.active .content-animation {
  opacity: 1;
  transform: translateY(0);
  animation: slideUpFade 0.8s ease forwards;
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-content h1,
.slide-content h2 {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-top: 5px;
  text-transform: uppercase;
  color: #345744;
}

.slide-content h6 {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #88a665;
  margin-left: 3px;
}

.content-animation h1 {
  color: #000;
}

.content-animation p {
  font-size: 12px;
  color: #000;
}

.slide-content p {
  font-size: 22px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #88a665;
}

/* Fixed Carousel Navigation */

.nav-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;

  color: #fff;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-number:hover,
.nav-number.active {
  transform: scale(1.1);
}

.section-right {
  margin-top: 40px;
}

.text-content {
  margin-top: 0px;
}

.testimonial-nav.text-end.my-3,
.clients-nav.text-end.my-3 {
  position: absolute;
  top: 40%;
  right: 10px;
}

.testimonial-nav.text-end.my-3 {
  top: 16% !important;
}

.feature-item {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
}

.pricing {
  background: #f5f6fa;
}

/**
** News Card
**/
.image-container {
  position: relative;
  width: 300px;
  height: 200px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.plus-icon {
  color: #fff;
  font-size: 48px;
  transform: scale(0.8);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.image-container:hover .overlay {
  opacity: 1;
}

.news-card-item {
  margin-bottom: 30px;
}

.image-container:hover .plus-icon {
  opacity: 1;
  transform: scale(1);
}

.image-container {
  position: relative;
  z-index: 1;
}

.news-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.news-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.plus-icon {
  height: 50px;
  width: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 26px;
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;
  opacity: 0;
}

.news-card:hover .news-overlay {
  opacity: 1;
}

.news-card:hover .plus-icon {
  opacity: 1;
  transform: scale(1);
}

/**
** Work Items
**/
.recent-work-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.recent-work-items-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.work-item img {
  width: 100%;
  height: 100%;
}

.overlay-image {
  width: 100%;
}

.text-content h4 {
  margin-top: 20px;
}

.text-content {
  text-align: left;
}

.footer-column.brand {
  margin-bottom: 20px;
}

.navbar ul li ul {
  background: transparent;
  position: relative;
  top: 111px;
  overflow-y: auto;
  height: auto;
  max-height: 200px;
  padding: 0;
}

.social-icons a {
  text-decoration: none;
  margin: 0 20px;
  color: #b8bdc8;
}

.social-icons a:hover {
  color: #6fb72f;
}

.pricing-cards .col-sm-6 {
  text-align: center;
  display: flex;
  justify-content: center;
}

/* Desktop and Tablet Styles */
@media (min-width: 768px) {
  .hero-image {
    display: flex;
    justify-content: flex-end;
  }

  .hero-image img {
    max-width: 80%;
    height: auto;
  }

  .pricing-cards .col-sm-6 {
    justify-content: flex-start;
  }

  .slide-content {
    padding: 0 20px;
  }

  .home-page-banner {
    height: 100vh;
  }

  .home-page-banner-wrapper {
    height: 100vh;
  }

  .carousel-wrapper {
    height: 100vh;
  }

  span.submenu-arrow {
    display: none;
  }

  .section-light {
    margin-top: 0px;
  }

  .mobile-social {
    display: none;
  }

  .text-content h4 {
    margin-top: 0px;
  }

  #navMenu>li>ul {
    display: none;
  }

  #navMenu.active>li>ul.open {
    display: block;
  }

  .pricing-card {
    width: 250px;
  }

  .footer-column h5 {
    margin-bottom: 10px;
  }

  .footer-column.brand {
    margin-bottom: 0px;
  }

  .footer-top {
    padding: 60px 0px;
  }

  .news-card-item {
    margin-bottom: 0px;
  }

  .social-icons {
    text-align: right;
  }

  .footer-bar {
    text-align: center;
  }

  .testimonial-nav button,
  .clients-nav button {
    font-size: 28px;
  }

  section.section-light h2 {
    font-size: 22px;
  }

  .pricing-wrapper h2:after {
    margin-top: 28px;
  }

  .pricing-wrapper h2 {
    font-size: 30px;
  }

  .about-text h2 {
    font-size: 36px;
  }

  .about-text h2:after {
    margin-top: 36px;
  }

  .clients-items {
    width: 270px;
  }

  .text-content h2 {
    font-size: 28px;
  }

  .section-light {
    padding: 120px 0px;
  }

  .menu-toggle {
    display: none;
  }

  section.about-wrapper,
  section.about-page-wrapper {
    padding: 120px 0px;
  }

  .section-right {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-left h1 {
    font-size: 26px;
  }

  .logo img {
    max-width: 100%;
    width: 200px;
  }

  .navbar ul {
    position: static;
    top: auto;
    height: auto;
    background: transparent;
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: auto;
    padding: 0;
    overflow: visible;
    transform: none;
  }

  .navbar ul li {
    opacity: 1;
    transform: none;
    margin-bottom: 0;
    position: relative;
  }

  .navbar ul li a {
    font-size: 14px;
    border: none;
    padding: 10px 0;
    letter-spacing: 1px;
    color: #000;
  }

  .navbar ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(45, 45, 45, 0.95);
    min-width: 200px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    max-height: none;
    overflow: visible;
    border-radius: 2px;
    padding-left: 30px;

    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .navbar ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar ul li ul li {
    margin-bottom: 0px;
    opacity: 1;
    transform: none;
  }

  .navbar ul li ul li a {
    padding: 8px 0;
    display: block;
    text-shadow: none;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 0;
  }

  .navbar ul li ul li a:before {
    display: none;
  }

  .navbar ul li ul li a:hover {
    color: #4caf50;
  }

  .mobile-social {
    display: none;
  }

  .menu-close {
    display: none;
  }

  .slide-content {
    text-align: left;
  }

  .slide-content h1 {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 800;
  }

  .slide-content h6 {
    font-size: 16px;
    font-weight: 600;
  }

  .slide-content p {
    font-size: 16px;
    margin-left: 0;
    margin-right: 0;
    color: #395d46;
  }

  .btn-wrapper {
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .images-container {
    flex: 1;
    margin-bottom: 0;
  }

  .text-content {
    flex: 1;
    text-align: left;
  }

  .text-content h2 {
    font-size: 2.5rem;
  }

  .recent-works h2 {
    font-size: 2.5rem;
  }

  .testimonial-carousel .item {
    flex-direction: row;
    align-items: center;
  }

  .main-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .news-cards {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-bar {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  img.main-image {
    display: block;
  }

  .pricing {
    padding: 120px 0px;
  }

  .feature-item {
    margin-bottom: 0px;
  }

  .features-wrapper {
    padding: 120px 0px;
  }

  .testimonial-nav.text-end.my-3,
  .clients-nav.text-end.my-3 {
    position: absolute;
    top: 87px;
    right: 116px;
  }

  .recent-work-items-wrapper {
    flex-direction: row;
  }

  .work-item img {
    height: 400px;
  }

  .pricing {
    margin-bottom: 0px;
    background: #fff;
  }

  .recent-works .filters {
    margin-bottom: 1rem;
  }

  section.recent-works {
    padding-top: 40px;
  }

  .recent-works h2 {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 800 !important;
  }

  .text-content h2 {
    font-size: 24px;
  }

  .text-content {
    margin-top: 20px;
    text-align: left;
  }

  .news-heading {
    padding: 0px 50px;
  }

  .news-text {
    padding: 0 28px;
  }

  .team-section {
    padding: 120px 0px;
  }

  .section-right {
    margin-top: 0px;
  }

  .section-left h1 {
    font-size: 36px;
  }

  .carousel-nav {
    display: block;
  }

  .fixed-header img {
    width: 100%;
  }

  .overlay-image {
    position: absolute;
    bottom: -90px;
    right: -55px;
    width: 70%;
    max-width: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 900px) {
  .work-item {
    flex: 1 1 calc(25% - 1rem);
  }
}

@media (min-width: 1024px) {
  .slide-content p {
    font-size: 20px;
  }

  .carousel-nav {
    right: 50px;
  }
}

@media (min-width: 1440px) {
  .section {
    flex-direction: column;
    padding: 60px 30px;
  }
}