.section-padding {
  padding: 50px 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: var(--orange-dark);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background-color: var(--navy-light);
  color: var(--white);
}

.btn-white {
  display: inline-block;
  background-color: var(--white);
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-white:hover {
  background-color: var(--gray-light);
}

/* Navbar */
.navbar {
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.navbar-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.navbar-logo span {
  color: var(--orange);
}

.navbar-menu {
  display: none;
}

.navbar-menu.active {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: absolute;
  top: 100px;
  left: 0;
  background-color: var(--white);
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0;
}

.navbar-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-link:hover {
  color: var(--orange);
}

.navbar-actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.navbar-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--navy);
}

@media (min-width: 768px) {
  .navbar-container {
    padding: 1rem 2rem;
  }

  .navbar-menu {
    display: flex;
    align-items: center;
    position: static;
    width: auto;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  .navbar-links {
    flex-direction: row;
    gap: 2rem;
  }

  .navbar-actions {
    margin-top: 0;
    margin-left: 2rem;
    flex-direction: row;
    gap: 1rem;
  }

  .navbar-toggle {
    display: none;
  }
}

/* Hero Section */
.hero {
  /* background: linear-gradient(to right, var(--navy), var(--navy-light));
  color: var(--white); */
  /* background-image: url('/assets/images/home/banner.jpg');
  background-position: 0 100%;
  height: 85vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; */
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-category {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-category:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.hero-category-icon {
  color: var(--orange);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-category-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.hero-category-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  flex: 1 1 auto;
}

.hero-category-link {
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.875rem;
}

.hero-category-link:hover {
  color: var(--orange-light);
}

@media (min-width: 768px) {

  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-content {
    text-align: left;
    margin-bottom: 0;
    flex: 1;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .hero-categories {
    /* grid-template-columns: repeat(3, 1fr);
    flex: 1;
    padding-left: 2.5rem; */
  }
}

.section-header {
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.product-card {
  background-color: var(--white);
  /* border-radius: 0.5rem; */
  padding: 1.5rem;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  transition: box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.product-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.product-icon {
  color: var(--blue);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-title {
  font-size: var(--sub-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-description {
  margin-bottom: 5px;
  flex-grow: 1;
  font-size: var(--para);
}

.product-link {
  color: var(--blue);
  font-weight: var(--font-semibold);
  text-decoration: none;
  align-items: center;
  font-size: var(--para);
}

.product-link:hover {
  color: var(--blue-dark);
}

.product-link-icon {
  margin-left: 0.25rem;
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 2rem;
}

.feature-card {
  background-color: var(--gray-lightest);
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: box-shadow 0.3s;
  height: 100%;
}

.feature-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  color: var(--orange);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .about-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Projects Section */
.project-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  height: 100%;
}

.project-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.project-header {
  background-color: var(--gray-lightest);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-size: cover;
  position: relative
}

.project-icon {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 4;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 4;
  color: var(--white);
}

.project-category {
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 500;
}

.project-content {
  padding: 1rem 1.5rem;
}

.project-description {
  margin-bottom: 1rem;
}

.project-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.project-link {
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.project-link:hover {
  color: var(--blue-dark);
}

.project-link-icon {
  margin-left: 0.25rem;
  transition: transform 0.2s;
}

.project-link:hover .project-link-icon {
  transform: translateX(4px);
}

/* Team Section */

.team-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  height: 100%;
}

.team-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.team-image {
  width: 100%;
  background-color: var(--gray-light);
  height: 350px;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.team-content {
  padding: 1.25rem;
}

.team-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-position {
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-bio {
  height: 100px;
  overflow: auto;
  cursor: pointer;
}

.team-social {
  display: flex;
  gap: 0.75rem;
}

.team-social-link {
  color: var(--blue);
  transition: color 0.2s;
}

.team-social-link:hover {
  color: var(--blue-dark);
}

/* Blogs Section */
.blogs {
  background-color: var(--white);
}

.blog-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.blog-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.blog-image-container {
  position: relative;
}

.blog-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  background-color: var(--gray-light);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--orange);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.blog-content {
  padding: 1.5rem;
  flex: 1 1 auto;
  padding-bottom: 0;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--gray-dark);
  margin-bottom: 0.75rem;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-excerpt {
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-link {
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.blog-link:hover {
  color: var(--blue-dark);
}

.blog-link-icon {
  margin-left: 0.25rem;
  transition: transform 0.2s;
}

.blog-link:hover .blog-link-icon {
  transform: translateX(4px);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.pagination-list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.375rem;
  background-color: var(--white);
  color: var(--gray-dark);
  text-decoration: none;
  transition: all 0.2s;
}

.pagination-link:hover {
  background-color: var(--gray-light);
}

.pagination-link.active {
  background-color: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}

/* Testimonials */
.testimonials {
  background-color: var(--blue);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.rating-star {
  color: var(--orange);
  font-size: 1.25rem;
}

.testimonial-text {
  margin-bottom: 1.5rem;
  color: var(--gray-dark);
  flex: 1 1 auto;
}

.testimonial-author {
  font-weight: 600;
  color: var(--gray-dark);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--gray-dark);
}

.testimonials-action {
  text-align: center;
  margin-top: 3rem;
}

.testimonials-link {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.testimonials-link:hover {
  background-color: var(--white);
  color: var(--blue);
}

.testimonials-link-icon {
  margin-left: 0.5rem;
}

/* Contact Form */
.contact {
  background-color: var(--white);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info-text {
  margin-bottom: 1.5rem;
}

.contact-method {
  margin-bottom: 20px;
    position: relative;
    padding-left: 5rem;
    text-align: left;
}

.contact-method-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--orange-light);
  color: var(--orange);
  font-size: 1.25rem;
  position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

.contact-method-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-method-content a {
  color: var(--gray-dark);
  text-decoration: none;
}

.contact-method-content a:hover {
  color: var(--orange);
}

.contact-form {
  background-color: var(--white);
  padding: 20px;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-button {
  width: 100%;
  background-color: var(--orange);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.form-button:hover {
  background-color: var(--orange-dark);
}


/* CTA Section */
.cta {
  background-color: var(--navy);
  color: var(--white);
}

.cta-card {
  background: linear-gradient(to bottom right, var(--navy-light), var(--navy));
  padding: 2rem;
  border-radius: 0.75rem;
  height: 100%;
}

.cta-icon-container {
  width: 4rem;
  height: 4rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-icon {
  color: var(--orange);
  font-size: 2rem;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.cta-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Footer */
.footer {
  background-color: var(--navy);
  color: rgba(255, 255, 255, 0.7);
}

.footer-container {
  display: grid;
  /* grid-template-columns: 1fr;
  gap: 2rem; */
}

.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-logo span {
  color: var(--orange);
}

.footer-about {
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.2s;
}

.footer-social-link:hover {
  background-color: var(--orange);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link a:hover {
  color: var(--orange);
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--orange);
  font-size: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-copyright {
  text-align: center;
  margin-bottom: 0
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-bottom-link:hover {
  color: var(--orange);
}

@media (min-width: 768px) {
  .footer-container {
    /* grid-template-columns: 2fr 1fr 1fr 1fr; */
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-copyright {
    text-align: left;
  }
}
.ed-about__features-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.testi-profile img{
  border-radius: 500%;
    width: 60px;
    height: 60px;
}
.testimonials-c-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonials-c-footer p{
  margin-bottom: 0;
}
.footer-contact-item a{
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer-contact-item a:hover{
  color: var(--orange);
}
.ul-list{
  padding-left: 0;
}
.ul-list li{
  list-style: none;
  margin-bottom: 8px;
}
.ul-list li a{
  color: var(--white);
  text-decoration: none;
}
.about-features{
  position: sticky;
  top: 100px;
}
header .sticky-wrapper {
  transition: height .5s ease;
  -webkit-transition: height .5s ease;
  -moz-transition: height .5s ease;
  -ms-transition: height .5s ease;
  -o-transition: height .5s ease;
  background-color: var(--white);
}
.stuck .navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
.testimonials-grid .swiper-slide{
  height: auto;
}
.team-bio::-webkit-scrollbar {
  width: 2px; /* thin scrollbar */
}

.team-bio::-webkit-scrollbar-thumb {
  background-color: var(--orange); /* red thumb */
  border-radius: 10px;
}

.team-bio::-webkit-scrollbar-track {
  background: transparent; /* optional: background of the track */
}
.ed-about__features-list ul{
  padding-left: 0;
}
.serviceSwiper .product-content{
  flex: 1 1 auto;
}
.projects-grid .project-header h3{
  color: var(--white);
  position: relative;
  z-index: 4;
}
.team-content .title-sm h6{
  color: var(--orange);
}
.testimonials-content{
  flex: 1 1 auto;
}
.blog-wrap{
  height: 100%;
  padding: 5px;
}
.blog-c-footer{
  padding: 1.5rem;
  padding-top: 0;
}
.product-wrap{
  height: 100%;
  padding: 5px;
}
.hero-content-sec{
  flex: 1 1 auto;
}
.cta-info a{
  color: var(--white);
  text-decoration: none;
}
.hero-wrapper{
  z-index: 3;
  position: relative;
}
.hero-wrapper .hero-content h1{
  color: var(--white);
}
.hero-wrapper .hero-content p{
  color: var(--white);
}
.hero-wrapper .hero-category p{
  color: var(--white);
}
.hero-swiper .swiper-slide {
  position: relative;
  height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bannerSwiper .swiper-slide{
  height: auto;
}
.slide-1 {
  background-image: url('/assets/images/home/banner-1.jpg');
}
.slide-2 {
  background-image: url('/assets/images/home/banner-2.jpg');
}
.slide-3 {
  background-image: url('/assets/images/home/banner-3.jpg');
}
.slide-4 {
  background-image: url('/assets/images/home/banner-4.jpg');
}

#backBTn {
    position: fixed;
    z-index: 99;
    right: 30px;
    bottom: 30px;
    height: 45px;
    width: 45px;
    line-height: 41px;
    text-align: center;
    background: var(--orange);
    border: 0;
    color: #ffffff;
    font-size: 22px;
    border-radius: 100%;
    -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.1);
    -webkit-animation: bounceIn 0.8s ease-in-out 1 both;
    animation: bounceIn 0.8s ease-in-out 1 both;
    display: none;
}
 .project-icon img{
  width: 50px;
 }
 .blog-detail .img-box img{
    display: block;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
 .blog-details-inner {
    padding: 60px 0;
    border-radius: 10px;
}
.blog-details-area ul li {
    line-height: 30px;
    margin-bottom: 15px;
}
.blog-image-wrapper {
    margin: 1rem 0 1rem;
    text-align: center;
}
.blog-image-wrapper img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clockpicker-popover {
          position: absolute !important;
      }