@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  font-family: "poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  position: relative;
}

a {
  text-decoration: none !important;
  color: inherit;
}

/* Navbar */
.custom-navbar {
  background-color: transparent;
  width: 100%;
  padding: 10px 0;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

ul.nav-links {
  display: flex;
  align-items: center;
  justify-content: end;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.nav-links li {
  position: relative;
}

ul.nav-links a {
  text-decoration: none;
  color: #2b1673;
  font-weight: 500;
  font-size: 17px;
  padding: 20px 15px;
  display: block;
}

ul.nav-links a:hover {
  color: #019640;
}

.dropdown-menu {
  position: absolute;
  top: 95%;
  left: 0;
  background: #2b1673;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  padding: 0;
  flex-direction: column;
  min-width: 250px;
  z-index: 999;
}

.dropdown-menu a {
  padding: 7px 12px !important;
  font-size: 16px !important;
  border-bottom: 1px solid #fff;
  color: #fff !important;
}

.dropdown-menu a:hover {
  background: #fff;
  color: #2b1673 !important;
}





/* Subdropdown */
.has-subdropdown {
  position: relative;
}

.subdropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #2b1673;
  display: none;
  padding: 0;
  flex-direction: column;
  min-width: 200px;
  width: max-content;
  border-radius: 4px;
  list-style: none;
}

.subdropdown-menu a {
  padding: 7px 12px !important;
  font-size: 16px !important;
  border-bottom: 1px solid #fff;
  color: #fff !important;
}

.subdropdown-menu a:hover {
  background: #fff;
  color: #2b1673 !important;
}

/* === DESKTOP ONLY: Show dropdown on hover === */
@media (min-width: 992px) {
  .has-dropdown:hover .dropdown-menu {
    display: flex;
  }


  .has-subdropdown:hover>.subdropdown-menu {
    display: flex;
  }

}

/* === MOBILE STYLES === */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }

  ul.nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    background-color: #fff;
    margin-top: 10px;
    gap: 0;
    max-height: 100vh;
    overflow-y: auto;
  }

  ul.nav-links.show {
    display: flex;
  }

  ul.nav-links li {
    width: 100%;
  }

  ul.nav-links a {
    padding: 12px 10px;
    border-bottom: 1px solid #ccc;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    border: none;
  }

  .dropdown-menu a {
    padding: 8px 8px 8px 23px !important;
    font-size: 16px !important;
  }

  .has-dropdown .dropdown-menu {
    display: none;
  }

  .has-dropdown.show .dropdown-menu {
    display: flex;
  }


  .subdropdown-menu {
    position: static;
    display: none;
    background: #2b1673;
    border: none;
    border-radius: 0;
    width: 100%;
    box-shadow: none;
  }

  .subdropdown-menu.show {
    display: flex;
  }

  .subdropdown-menu a {
    padding: 10px 20px 10px 30px !important;
    border-bottom: 1px solid #333;
    font-size: 14px !important;
    color: #fff !important;
  }
}







/* service section  */

.section-title h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
}

@media(max-width:768px) {
  .section-title h2 {
    font-size: 24px;
  }
}


/* services */

.custom-card {
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  padding: 4px;
  border-radius: 10px;
  background: #fff;
}

.custom-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  height: 300%;
  background: rgba(255, 255, 255, 0.2);
  transition: none;
}

.custom-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.custom-card:hover::after {
  width: 200%;
  background: transparent;
  visibility: hidden;
  transition: all 1s ease;
}

.image-overlay {
  position: relative;

  overflow: hidden;
  border-radius: 10px;
}

.image-overlay img {
  transition: all 1s ease;
  width: 100%;
  filter: grayscale(1);
  aspect-ratio: 3/2;

  object-fit: cover;
}

.custom-card:hover img {
  filter: grayscale(0);
}

.card-img-overlay-custom {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;

  flex-direction: column;
  padding: 1.5rem;
}

.card-title {
  color: white;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s ease;
  text-overflow: ellipsis;
}

.custom-card:hover .card-title {
  font-size: 2rem;
}


.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-heading h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 150px;
  height: 4px;
  background: linear-gradient(135deg, #224fa3, #5907bd);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 1.8rem;
    text-transform: capitalize;
  }

  .section-heading h2::before {
    width: 100px;
    height: 3px;
  }
}




/* gallery */

/* Event Glimpses Section */
.event-glimpses {
  padding: 40px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item img {
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #000;
  border: 4px solid #fff;
}

.overlay i {
  color: white;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay i {
  transform: scale(1.2);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.lightbox-image.loaded {
  opacity: 1;
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.close-btn:hover {
  color: #ff6b6b;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;

  justify-content: center;

}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.prev-btn {
  left: 30px;
  z-index: 1001;
}

.next-btn {
  right: 30px;
}

.image-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-btn {
    padding: 10px 15px;
    font-size: 20px;
    width: 50px;
    height: 50px;
    top: 80%;
  }

  .prev-btn {
    left: 15px;
  }

  .next-btn {
    right: 15px;
  }

  .close-btn {
    font-size: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .lightbox-content {
    padding: 10px;
  }

  .nav-btn {
    padding: 8px 12px;
    font-size: 18px;
    width: 45px;
    height: 45px;
  }
}


model box .contact-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 52px;
  z-index: 999;
}

.contact-sidebar .sidebar-btn {
  width: 50px;
  height: 200px;
  margin-bottom: 15px;
  border: none;
  color: #fff;
  font-size: 1.2em;
  font-family: Arial, sans-serif;
  font-weight: 500;
  text-align: center;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-sidebar .sidebar-btn .vertical-text {
  transform: rotate(-90deg);
  /* Rotates the text to read from bottom to top on the right side */
  white-space: nowrap;
  position: relative;
  display: block;
}

.contact-sidebar .sidebar-btn:active,
.contact-sidebar .sidebar-btn:focus {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.17);
  outline: none;
}

.contact-sidebar .book-appointment {
  /* background: #ea5ba8; */
  border: 2px solid #2b1673;
}

.contact-sidebar .book-appointment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2b1673;
  transition: all 0.3s ease;
}

.contact-sidebar .book-appointment:hover::before {
  width: 0;
}

.contact-sidebar .book-appointment:hover .vertical-text {
  color: #2b1673;
}



/* Form container */
#formContainer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  /* transform: translate(-50%, -50%); */
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  height: 100%;
  width: 100%;
}

.con {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-2 {
  max-width: 500px;
  width: 100%;
  margin: 0 !important;
  position: relative;
  /* margin: auto auto; */
}

/* Hidden class to hide the form */
.form-hidden {
  display: none;
}


.form-close {
  background-color: #2b1673;
  height: 30px;
  width: 30px;
  padding: 6px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  border-radius: 7px;
}






/* video banner */

.banner-video {
  overflow: hidden;
  position: relative;
}

.banner-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg,
      rgba(0, 0, 0, 0.2) 13%,
      rgba(0, 0, 0, 0.5) 69%);
  z-index: -1;
}

.banner-form-heading {
  margin-bottom: 50px;
}

.banner-form-heading span {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.banner-form-heading h1 {
  font-size: 64px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.banner-form-heading p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}

.banner-form-heading a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background-color: #2b1673;
  padding: 13px 45px 15px;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 2px solid #2b1673;
}

.banner-form-heading a:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid #2b1673;
}

#myVideo {
  max-width: 100%;
  position: absolute;
  z-index: -10;
  top: 0;
  left: 0;
  aspect-ratio: 4/3;
  object-fit: cover;
}

@media (max-width: 768px) {
  #myVideo {
    min-width: 100%;
    height: 100%;
  }

  .banner-form-heading h1 {
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
  }
}

.bg-trans {
  background-color: transparent;
}



/* form ateration  */
.form-input,
.form-group {
  margin-bottom: 15px;
}

.form-input input,
.form-input textarea,
.form-group input,
.form-group textarea {
  background-color: transparent;
  padding: 12px;
  width: 100%;
  border: 2px solid #ffffff6c;
  border-radius: 10px;
  outline: none;
  color: #fff;
}

.form-input input::placeholder,
.form-input textarea::placeholder {
  color: #fff;
}

.form-btn {
  display: flex;
  justify-content: start !important;
  margin-bottom: 15px;
}

.form-group button,
.form-btn button {
  padding: 12px 20px;
  background: #2b1673;
  border-radius: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  border: 2px solid #2b1673;
  margin-top: 15px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer !important;

  &:hover {
    background-color: transparent;
    color: #2b1673;
    border: 2px solid #2b1673;
  }
}

.form-group input,
.form-group textarea {
  border: 2px solid #2b1673 !important;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 3px 3px 0px #2b1673;
  color: #333 !important;
}



/* counter  */

.counter-section {
  background-color: #019640;
}

.banner-progression-counter .progress-item {
  text-align: center;
  padding: 20px;
  background: #eee;
  border-radius: 10px;
  border: 4px solid #fff;
  box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.15),
    inset 5px 5px 10px rgba(0, 0, 0, 0.25),
    inset -10px -10px 15px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.progress-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #019640;
  margin-bottom: 10px;
}

.progress-title h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333333;
}



/* product specific section */


.product-specific {
  height: 100%;
  background-color: #2b1673;
  padding: 60px 30px 30px;
}


@media(max-width:768px) {
  .product-specific {
    padding: 40px 12px 20px;
  }
}

.product-specific h2 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.product-specific h2::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #019640;
  top: -15px;
  left: 0;
}

.product-specific h2::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #fff;
  top: -10px;
  left: 0;
}

.product-specific h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-specific p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.theme-m-btn {
  background-color: #019640;
  color: #fff;
  padding: 10px 40px 10px 20px;
  border: 2px solid #019640;
  display: inline-block;
  font-weight: 600;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.theme-m-btn:hover {
  background-color: #fff;
  color: #019640;
  text-decoration: none;
}


.theme-m-btn i {
  margin-left: 8px;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}


.theme-m-btn i.bt-ik-1 {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
}


.theme-m-btn i.bt-ik-2 {
  position: absolute;
  top: 50px;
  right: 60px;
}

.theme-m-btn:hover i.bt-ik-1 {

  top: -50px;
  right: -50px;
}

.theme-m-btn:hover i.bt-ik-2 {
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
}

.pro-img img {
  width: 100%;
  border: 2px solid #019640;
  background: #fff;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
}

.precision-engineered-img {
  position: relative;
  overflow: hidden;
}

.precision-engineered-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  height: 300%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.2);
  transition: none;
}

.precision-engineered-img:hover::after {
  width: 200%;
  background: transparent;
  transition: all 1s ease;
}



/* why choose us section   */


.global-services {
  padding-bottom: 60px;
}

.paddingcont {
  padding: 60px 30px;
}

@media (max-width: 768px) {
  .paddingcont {
    padding: 40px 20px;
  }
}

.services-heading h3 {
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: #000080;
  font-weight: 500;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .services-heading h3 {
    font-size: 30px;
  }
}

.service-card-cont {
  transition: all 0.3s;
}

.service-card {
  padding: 20px 10px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.25s;
}

.border-bottom008375 {
  border-bottom: 6px solid #008375;
  color: #008375;
}

.border-bottom65297c {
  border-bottom: 6px solid #65297c;
  color: #65297c;
}

.border-bottom4e9c45 {
  border-bottom: 6px solid #4e9c45;
  color: #4e9c45;
}

.border-bottomcea227 {
  border-bottom: 6px solid #cea227;
  color: #cea227;
}

.border-bottomc0733d {
  border-bottom: 6px solid #c0733d;
  color: #c0733d;
}

.border-bottoma91e1b {
  border-bottom: 6px solid #a91e1b;
  color: #a91e1b;
}

.border-bottom01669b {
  border-bottom: 6px solid #01669b;
  color: #01669b;
}

.border-bottom00B1D8 {
  border-bottom: 6px solid #00b1d8;
  color: #00b1d8;
}

.border-bottom000080 {
  border-bottom: 6px solid #000080;
  color: #000080;
}

.card-img {
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
}

.card-img span {
  padding: 10px;
  height: 80px;
  width: 98px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 200px;

  &:hover {
    transform: rotate(0);
  }
}

.bgc-1:hover {
  background-color: #008375;
}

.bgc-2:hover {
  background-color: #65297c;
}

.bgc-3:hover {
  background-color: #4e9c45;
}

.bgc-4:hover {
  background-color: #cea227;
}

.bgc-5:hover {
  background-color: #c0733d;
}

.bgc-6:hover {
  background-color: #a91e1b;
}

.bgc-7:hover {
  background-color: #01669b;
}

.bgc-8:hover {
  background-color: #00b1d8;
}

.bgc-9:hover {
  background-color: #000080;
}

.bgc-8 {
  width: 100px !important;
}

.service-card h3 {
  font-size: 22px;
  /* color: #005779; */
  text-align: center;
}



/* technology section   */

.refine-imaging-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 768px) {
  .refine-imaging-content h2 {
    font-size: 24px;
  }
}

.refine-imaging-content h2::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 80px;
  left: 0;
  top: -8px;
  background: #2b1673;
}

.refine-imaging-content h2::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 60px;
  left: 0;
  top: -12px;
  background: #019640;
}

.refine-imaging-content p {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.quality-imaging img {
  max-width: 128px;
  height: 64px;
  margin-bottom: 20px;
}


.quality-imaging p {
  font-size: 15px;
}

@media (max-width: 768px) {
  .quality-imaging img {
    max-width: 100px;
    height: 40px;
  }

  .quality-imaging p {
    font-size: 12px;
  }
}



/* product video  */

.product-img {

  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  margin: 15px 0;
  border-radius: 8px;
  border: 3px solid #fff;
  overflow: hidden;

  img {
    aspect-ratio: 4/3;
    object-fit: cover;
  }
}

.product-ttle h5 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #000;
  padding: 10px;
  margin: 0;
}

.precision-engineered-video video {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #000;
  border: 3px solid #fff;
}











/* footer  */

.footer {
  background: #2b1673;
  color: white;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="0.3" fill="white" opacity="0.08"/><circle cx="50" cy="10" r="0.4" fill="white" opacity="0.06"/><circle cx="10" cy="60" r="0.3" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.ftr-section-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.ftr-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.3));
  border-radius: 2px;
}

.footer-link {
  color: rgb(255, 255, 255);
  padding: 5px 8px;

  background: rgba(255, 255, 255, 0.05);
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 10px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.2), inset -5px -5px 10px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}


.footer-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.company-logo {
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 1.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.company-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: white;
}

.footer-about-text {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 1);
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.2), inset -5px -5px 10px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-contact-item i {
  width: 20px;
  margin-right: 8px;
  color: #f8f9fa;
  font-size: 1.1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 1rem;
  line-height: 1.5;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: 2px solid #fff;
  background: transparent;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.social-link i {
  font-size: 20px;
  margin: 0;
  color: #fff;
}

.social-link:hover {
  background: #fff;

  i {
    color: #373634;
  }
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 12px 1rem;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 0 0;
}

.copyright p {
  font-size: 20px;

  .small {
    font-size: 16px;
    color: inherit;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 3rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

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

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

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