html,
body {
  overflow-x: hidden;
  width: 100%;
}
.loader {
  width: 48px;
  height: 48px;
  margin: auto;
  position: relative;
}

.loader:before {
  content: "";
  width: 48px;
  height: 5px;
  background: #6b6666;
  opacity: 0.25;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.5s linear infinite;
}

.loader:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #070707;
  animation: bxSpin 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}

@keyframes bxSpin {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes shadow {
  0%,
  100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1);
  }
}

/* Regular */
@font-face {
  font-family: "Swiss";
  src: url("../font/Swiss.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

/* Lexend */
@font-face {
  font-family: "Lexend";
  src: url("../font/ttf/lexend-mega-latin-100-normal.ttf");
  font-weight: bold;
}
/* Lexend-nav */
@font-face {
  font-family: "Lexend-nav";
  src: url("../font/ttf/lexend-mega-latin-300-normal.ttf");
  font-weight: bold;
}

.text-block {
  line-height: 1.2;
}
@font-face {
  font-family: "Calibri";
  src: url("../font/calibri.ttf") format("woff2"),
    url("fonts/calibri.woff") format("woff");
}
body {
  font-family: "Calibri", sans-serif;
}
/* Visibility Logic (same as before) */
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.8s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.btn {
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-light);
}

.btn.btn-primary:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-light) !important;
  color: #005f52 !important;
}

.btn.btn-dark {
  box-shadow: inset 0 0 0 0 #005f52;
}

.btn.btn-dark:hover {
  box-shadow: inset 200px 0 0 0 #005f52;
  color: var(--bs-dark) !important;
}

/*** Topbar Start ***/

.search-btn {
  position: relative;
  width: 100%;
  padding: 0 0 0 25px;
}

.search-btn .form-group {
  width: 100%;
}

.search-btn button {
  position: absolute;
  right: 25px;
}

@media (max-width: 992px) {
  .search-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
  }
  .search-btn {
    display: none;
  }
  .topbar-info {
    flex-direction: column;
  }
  .topbar-info a {
    padding: 0 0 10px 0;
  }
  .topbar-icon {
    padding: 0 0 10px 0;
  }
}

@media (max-width: 576px) {
  .topbar-top {
    display: none;
  }
}

/*** Topbar End ***/

/*** Navbar Start ***/

.navbar {
  padding: 0.5rem 1rem;
  background: var(--bs-light);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Toggle Button - Stylish Hamburger */
.navbar-toggler {
  border: none;
  background: transparent;
  outline: none;
}

.navbar-toggler-icon {
  width: 30px;
  height: 3px;
  background-color: var(--bs-dark);
  display: block;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  width: 30px;
  height: 3px;
  background-color: var(--bs-dark);
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon::before {
  top: -10px;
}

.navbar-toggler-icon::after {
  bottom: -10px;
}

/* When toggler is open (JS class added via Bootstrap) */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Nav Links */
.navbar .navbar-nav .nav-link {
  padding: 15px;
  color: var(--bs-dark);
  font-weight: 500;
  font-size: small;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease-in-out;
}
.dropdown-item {
  font-size: small;
  text-transform: uppercase;
}
.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  height: 2px;
  width: 0;
  background-color: black;
  transition: width 0.3s;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Dropdown styles */
.navbar .dropdown-menu {
  background-color: var(--bs-light);
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: dropdownFade 0.3s ease-in-out;
}

@keyframes dropdownFade {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.dropdown .dropdown-menu a {
  padding: 10px 20px;
  color: var(--bs-dark);
  transition: background 0.3s;
}

.dropdown .dropdown-menu a:hover,
.dropdown .dropdown-menu a.active {
  background-color: var(--bs-dark);
  color: #fff;
}

/* Desktop Dropdown on Hover */
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    display: block;
    transition: all 0.3s ease-in-out;
    transform: translateY(10px);
  }

  .navbar .nav-item:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Navbar Collapse */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--bs-light);
    padding: 1rem;
  }

  .navbar-nav {
    margin-top: 1rem;
  }

  .navbar .nav-link {
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid #eee;
  }

  .navbar .dropdown-menu {
    margin-left: 1rem;
    box-shadow: none;
  }
}

/*** Navbar End ***/

/*** Carousel Start ***/

.carousel-item {
  position: relative;
}

.carousel-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
}

.carousel-caption {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: start;
  z-index: 1;
}

.carousel-control-prev {
  width: 80px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--bs-primary);
  border-radius: 0 30px 30px 0;
  transition: 0.5s;
  opacity: 1;
}

.carousel-control-next {
  width: 80px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 0;
  background: var(--bs-primary);
  border-radius: 30px 0 0 30px;
  transition: 0.5s;
  opacity: 1;
}

#carouselId .carousel-indicators li,
#carouselId .carousel-indicators li {
  width: 24px;
  height: 24px;
  background: var(--bs-dark);
  border: 2px solid var(--bs-primary);
  border-radius: 24px;
  margin: 0 10px 30px 10px;
}

#carouselId .carousel-indicators li.active {
  background: var(--bs-primary) !important;
}

@media (max-width: 768px) {
  .carousel-item {
    width: 100%;
    height: 400px;
  }

  .carousel-item img {
    height: 400px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-2.jpg) center center no-repeat;
  background-size: cover;
  margin-bottom: 6rem;
}

/*** Carousel End ***/

/*** About Start ***/

.about-img {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 30px 30px 30px 30px;
  overflow: hidden;
}

.about-img::before {
  content: "";
  width: 100%;
  height: 40%;
  background: var(--bs-dark);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.about-img::after {
  content: "";
  width: 100%;
  height: 60%;
  background: var(--bs-primary);
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.rotate-left {
  width: 150px;
  height: 100px;
  position: absolute;
  top: 28%;
  left: -10%;
  rotate: 25deg;
  z-index: 2;
}

.rotate-right {
  width: 150px;
  height: 100px;
  position: absolute;
  top: 28%;
  right: -10%;
  rotate: -25deg;
  z-index: 2;
}

.about-img img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
}

.experiences {
  width: 160px;
  height: 200px;
  position: absolute;
  top: -0;
  right: 0;
  padding: 35px 35px;
  text-align: center;
  border-radius: 10px;
  z-index: 3;
  animation: mymove 5s infinite;
  animation-timing-function: ease-in-out;
}

@keyframes mymove {
  from {
    top: -202px;
  }
  to {
    top: 102%;
  }
}

/*** About End ***/

/*** Services Start ***/
.services-inner-icon {
  width: 130px;
  height: 130px;
  background: var(--bs-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  position: relative;
}

.services-inner-icon::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 62px;
  top: 50%;
  left: 50%;
  transition: 0.5s;
}

.services-item:hover .services-inner-icon::after {
  width: 100%;
  height: 100%;
  margin-top: -50%;
  margin-left: -50%;
  background: var(--bs-primary);
  color: var(--bs-dark);
}

.services-item i {
  text-align: center;
  transition: 0.5s;
}

.services-item:hover i {
  color: var(--bs-dark) !important;
  z-index: 1;
  rotate: 360deg;
}

.services-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*** Services Start ***/

/*** Project Start ***/
.project-item {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 30px 30px 30px 30px;
  overflow: hidden;
}

.project-item::before {
  content: "";
  width: 100%;
  height: 40%;
  background: var(--bs-dark);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.project-item::after {
  content: "";
  width: 100%;
  height: 60%;
  background: var(--bs-primary);
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.project-left {
  width: 180px;
  height: 70px;
  position: absolute;
  top: 22%;
  left: -18%;
  rotate: 30deg;
  z-index: 2;
}

.project-right {
  width: 180px;
  height: 70px;
  position: absolute;
  top: 22%;
  right: -18%;
  rotate: -30deg;
  z-index: 2;
}

.project-item img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-item a {
  position: absolute;
  padding: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0) rotate(-360deg);
  border-radius: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  opacity: 0;
}

.project-item:hover a {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  background: var(--bs-primary);
  color: var(--bs-dark) !important;
  opacity: 1;
}

/*** prohect Start ***/

/*** Blog Start ***/

.blog-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next {
  position: absolute;
  width: 60px;
  height: 48px;
  background: #00796b;
  color: #fff;
  top: -58px;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-carousel .owl-nav .owl-prev {
  left: 0;
}

.blog-carousel .owl-nav .owl-next {
  right: 0;
}

.blog-carousel .owl-nav .owl-prev:hover,
.blog-carousel .owl-nav .owl-next:hover {
  background-color: #005f52; /* darker teal on hover */
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.blog-carousel .owl-prev,
.blog-carousel .owl-next {
  transition: 0.3s ease;
}

/*** Blog End ***/

/*** Pricing Start ***/
.pricing-item {
  transition: 0.5s;
}

.pricing-item:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  margin: -20px 0 20px 0;
}

.pricing-label {
  border-bottom: 20px solid var(--bs-light);
  border-radius: 0 0 300px 300px;
  transition: 0.5s;
}

.pricing-item:hover .pricing-label {
  border-color: rgba(0, 0, 0, 0.5);
}

.pricing-item:hover .pricing-label.pricing-featured {
  border-color: rgba(255, 255, 255, 0.5);
}

/*** Pricing End ***/

/*** Call To Action start ***/

.call-to-action {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

/*** Call To Action End ***/

/*** Team Start ***/
.team-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.team-item .team-icon {
  position: absolute;
  top: 15px;
  right: -80px;
  rotate: -30deg;
  transition: 0.5s;
  visibility: hidden;
}

.team-item:hover .team-icon {
  visibility: visible;
  margin-right: 95px;
  rotate: 0deg;
}

.team-item .team-icon .btn {
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
}

.team-item .team-content {
  box-shadow: inset 0 0 0 0 var(--bs-dark);
  transition: 1s;
}

.team-item:hover .team-content {
  box-shadow: inset 550px 0 0 0 var(--bs-dark);
  color: var(--bs-primary) !important;
}
/*** Team End ***/

/*** testimonial Start ***/

/* Testimonial Section */
.testimonial {
  background: linear-gradient(145deg, #f0f4f4, #ffffff);
  font-family: "Calibri";
}

.testimonial .testimonial-content {
  background: #ffffff;
  border-left: 5px solid #00796b;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial .testimonial-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.testimonial .testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  font-family: "Lato";
  color: #333;
}

.testimonial h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #00796b;
  font-family: "Lato";
}

.testimonial p.mb-1 {
  font-size: 0.9rem;
  color: #777;
}

.testimonial .fa-star {
  color: #f5a623 !important;
  font-size: 14px;
}

/* Carousel Navigation Styling */
.testimonial-carousel .owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
}

.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next {
  background: #00796b;
  color: #fff;
  border: none;
  padding: 10px 16px;
  margin: 0 5px;
  border-radius: 6px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.testimonial-carousel .owl-nav button:hover {
  background: #005f52;
  transform: scale(1.05);
}

/* /////  */
.testimonial-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bs-light);
  z-index: 1;
}

.testimonial-content::before {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50px;
  bottom: -15px;
  rotate: 45deg;
  z-index: -5;
  background: var(--bs-light);
}

.testimonial-carousel {
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 60px;
  height: 40px;
  background: #005f52;
  color: var(--bs-light);
  font-size: 22px;
  top: 14%;
  left: 0px;
  border-radius: 30px 0 0 30px;
  box-shadow: inset 0 0 0 0 var(--bs-dark);
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-dark);
  color: var(--bs-light) !important;
}

.testimonial-carousel .owl-nav .owl-next {
  left: auto;
  right: 0px;
  border-radius: 0 30px 30px 0;
}

.testimonial-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-dark);
  color: var(--bs-light) !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #babbbb;
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: #005f52;
}

/*** testimonial End ***/

/*** Contact Start ***/
.contact-link a i,
.contact-link a h5,
.contact-link a.h5 {
  transition: 0.5s;
}

.contact-link a i:hover,
.contact-link a h5:hover,
.contact-link a.h5:hover {
  color: var(--bs-primary) !important;
}

/*** Contact End ***/

.text-responsive {
  text-align: justify;
}

@media (min-width: 992px) {
  .text-responsive {
    text-align: center;
  }
}

.our-work-section {
  background-color: #f8f9fa;
}

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

.gallery-img {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 121, 107, 0.2);
}

.blog-item h4 {
  font-size: 1.2rem;
  font-family: "Calibri";
}

.blog-carousel .btn {
  font-weight: 600;
  border-radius: 50px;
}

.blog-carousel .btn:hover {
  background-color: #005f52 !important;
}

/* Section Styling */
.achievements-section {
  background: linear-gradient(to bottom right, #f7f9fc, #ffffff);
  font-family: "Calibri";
}

.section-title {
  font-family: "Lato", serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #111;
}

.section-subtitle {
  font-size: 0.8rem;
  display: inline-block;
  background: #00796b;
  color: #ffff;
  padding: 6px 20px;
  /* border-radius: 999px; */
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gray {
  color: gray;
}

/* Modern Minimal Banner */
.modern-banner-minimal {
  position: relative;
  min-height: 70vh;
  background: linear-gradient(135deg, #f4f4f4 0%, #e0e0e0 100%);
  overflow: hidden;
  color: #000;
}

/* Accent Color */
.text-accent {
  color: #111;
  background: linear-gradient(90deg, #000, #444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tag Style */
.section-tag {
  background: #000;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Base Shapes */
.shape-line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
}

.shape-circle,
.shape-circle-2 {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.08);
}

.shape-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #000;
  opacity: 0.2;
}

/* Sizes */
.shape-triangle.small {
  border-left-width: 25px;
  border-right-width: 25px;
  border-bottom-width: 40px;
}

.shape-circle.small,
.shape-circle-2.small {
  width: 80px;
  height: 80px;
}

.shape-circle,
.shape-circle-2 {
  width: 150px;
  height: 150px;
}

/* Positioning */
.shape-triangle {
  top: 10%;
  right: 40%;
  animation: zigzag 3s ease-in-out infinite;
}
.shape-triangle.small {
  top: 60%;
  left: 20%;
  animation: zigzagReverse 2.8s ease-in-out infinite;
}

.shape-line {
  top: 0;
  left: 10%;
  animation: pulseLine 3s ease-in-out infinite;
}
.shape-line.line-2 {
  left: 80%;
  animation: pulseLine 2.5s ease-in-out infinite;
}

.shape-circle {
  bottom: -60px;
  right: 15%;
  animation: floatSpin 3.2s ease-in-out infinite;
}
.shape-circle-2 {
  bottom: 90px;
  right: 60%;
  animation: floatBounce 3s ease-in-out infinite;
}
.shape-circle.small {
  top: 20%;
  left: 5%;
  animation: floatSpinReverse 2.5s ease-in-out infinite;
}
.shape-circle-2.small {
  top: 70%;
  left: 80%;
  animation: floatBounce 2.7s ease-in-out infinite;
}

/* Animations */
@keyframes floatBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

@keyframes floatSpin {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(20deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes floatSpinReverse {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(15px) rotate(-20deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes zigzag {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(15px, -10px);
  }
  50% {
    transform: translate(0, -20px);
  }
  75% {
    transform: translate(-15px, -10px);
  }
}

@keyframes zigzagReverse {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-15px, 10px);
  }
  50% {
    transform: translate(0, 20px);
  }
  75% {
    transform: translate(15px, 10px);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1.05);
  }
}

/* About Animation css  */

/* Apply Animations */
.modern-banner-minimal h1 {
  animation: slideInDown 0.8s ease forwards;
}

.modern-banner-minimal p {
  animation: fadeIn 1.2s ease forwards;
}

.shape-line,
.shape-circle {
  animation: floatShape 4s ease-in-out infinite;
}

.founder-section {
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
  position: relative;
  overflow: hidden;
}

.founder-image-wrapper {
  position: relative;
  display: inline-block;
}

.founder-image {
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.founder-image-wrapper:hover .founder-image {
  transform: scale(1.03);
}

/* Decorative shapes */
.shape-dot {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 15px;
  height: 15px;
  background: #000;
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.shape-ring {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  border: 3px solid #000;
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* footer style  */
.footer-modern {
  background: linear-gradient(135deg, #f4f4f4 0%, #e0e0e0 100%);
  position: relative;
  overflow: hidden;
}

/* Floating shapes - light gray */
.footer-shape {
  position: absolute;
  opacity: 0.15;
  background: #0a0a0a;
  z-index: 0;
  animation: float 12s infinite ease-in-out;
}

/* Shapes */
.shape-triangle {
  width: 140px;
  height: 140px;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  top: 15%;
  left: -60px;
}

.shape-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  bottom: 20%;
  right: -70px;
  animation-delay: 3s;
}

.shape-small-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 60%;
  right: 25%;
  animation-delay: 6s;
}

.shape-blob {
  width: 150px;
  height: 150px;
  clip-path: ellipse(60% 40% at 50% 50%);
  top: 40%;
  left: 35%;
  animation-delay: 4s;
}

.shape-rectangle {
  width: 100px;
  height: 40px;
  border-radius: 6px;
  top: 75%;
  left: 10%;
  animation-delay: 2s;
}

/* Floating animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Footer text underline */
.footer-modern h4 {
  position: relative;
  padding-bottom: 8px;
}

.footer-modern h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #050505;
}

/* Footer links */
.footer-link {
  color: #007b77;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #005f52;
}

/* Social buttons */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #000000;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #7d7e7e;
  color: #fff;
}
