body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #050404;
}

/* ================= COLORS ================= */
:root {
  --purple: #6f31cf;
  --orange: #73198c;
  --white: #fff;
}

/* ================= TOP BAR ================= */
.top-bar {
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
}

.top-bar a {
  color: var(--white);
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.contact-inline i {
  margin-right: 6px;
  color: var(--white);
}

/* ================= NAVBAR ================= */
.navbar {
  background: var(--white) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.logo-img {
  width: 110px;
  height: auto;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: #000 !important;
  padding: 7px 12px;
  border-radius: 4px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: var(--purple);
  color: var(--white) !important;
}

.dropdown-menu {
  min-width: 260px;
  border-top: 4px solid var(--purple);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.dropdown-item:hover {
  background: var(--purple);
  color: var(--white);
}

.download-btn {
  background: var(--purple);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.download-btn:hover {
  background: var(--orange);
  color: var(--white);
}

/* MOBILE */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .logo-img {
    width: 65px;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  background: linear-gradient(rgba(115, 25, 140, 0.75), rgba(115, 25, 140, 0.75)),
    url("../img/inner-banner.webp") center/cover no-repeat;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
}

/* Corner Shapes */
.corner-shape {
  position: absolute;
  width: 120px;
  height: 120px;
  background: #ffffff20;
}

.corner-top-left {
  top: 0;
  left: 0;
  border-bottom-right-radius: 120px;
}

.corner-bottom-right {
  bottom: 0;
  right: 0;
  border-top-left-radius: 120px;
}

/* Breadcrumb */
.breadcrumb {
  padding: 15px 20px;
  background: #f5f5f5;
  font-size: 15px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.breadcrumb a {
  color: #73198c;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb span {
  margin: 0 6px;
}

.breadcrumb .current {
  color: #333;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .hero {
    height: 200px;
  }

  .hero h1 {
    font-size: 28px;
  }
}


/* ===== Carousel base ===== */
.carousel {
  position: relative;
}

/* ===== Images ===== */
.carousel-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Indicators (dots) ===== */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: 0.3s;
}

.carousel-indicators .active {
  background-color: var(--purple);
  transform: scale(1.2);
}

/* ===== Arrow buttons ===== */
.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--purple), var(--orange));
  border-radius: 50%;
  opacity: 1;
  transition: 0.3s;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  transform: translateY(-50%) scale(1.08);
}

/* ===== Arrow icons ===== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

  .carousel-control-prev,
  .carousel-control-next {
    width: 38px;
    height: 38px;
  }

  .carousel-indicators {
    bottom: 10px;
  }
}

/* ===============================
   ABOUT SECTION
================================ */
.about-section {
  position: relative;
  padding: 120px 0;
  background: #f9f9ff;
  overflow: hidden;
}

.about-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#4f46e5 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .05;
}

.about-bg-circle {
  position: absolute;
  left: -100px;
  top: -100px;
  width: 320px;
  height: 320px;
  background: #73198c;
  border-radius: 50%;
  opacity: .15;
  animation: floatY 6s ease-in-out infinite;
}

/* IMAGE AREA */
.about-media-wrapper {
  position: relative;
  z-index: 3;
}

.about-main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
}

.about-main-image img {
  width: 100%;
  display: block;
}

.about-overlay-circle {
  position: absolute;
  bottom: -60px;
  left: 40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
  animation: floatX 6s ease-in-out infinite;
}

.about-overlay-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.about-text-content {
  position: relative;
  color: #020203;
}

.about-title {
  font-size: 38px;
  font-weight: 700;
  color: #020203;
}

.about-title span {
  color: #73198c;
}

.about-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
}

.read-more-btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background: var(--purple);
  transform: translateY(-2px);
}

/* ANIMATIONS */
@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatX {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(15px);
  }
}

/* ================= RESPONSIVE ================= */

/* Large Tablet */
@media (max-width: 1199px) {
  .about-section {
    padding: 100px 0;
  }

  .about-title {
    font-size: 34px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .about-text-content {
    margin-top: 60px;
    text-align: center;
  }

  .about-overlay-circle {
    bottom: -50px;
    left: 30px;
    width: 150px;
    height: 150px;
  }

  .about-title {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-section {
    padding: 70px 0;
  }

  .about-title {
    font-size: 26px;
  }

  .about-subtitle {
    font-size: 16px;
  }

  .about-description {
    font-size: 15px;
  }

  .about-overlay-circle {
    width: 120px;
    height: 120px;
    left: 15px;
    bottom: -40px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-title {
    font-size: 22px;
  }

  .about-overlay-circle {
    width: 100px;
    height: 100px;
    left: 10px;
    bottom: -30px;
  }

  .read-more-btn {
    padding: 9px 18px;
    font-size: 13px;
    margin: 15px;
  }
}

/* counter */
.counter-one {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
  background: #0b0210;
}

.counter-one_pattern {
  position: absolute;
  inset: 0;
  background-image: url("../img/counter.webp");
  background-position: center bottom;
  background-repeat: repeat-x;
  animation: slideBackground 15s linear infinite;
  z-index: 1;
}

/* BLACK OPACITY LAYER */
.counter-one_pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  /* adjust opacity */
}


/* CONTENT */
.counter-one_container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* GRID */
.counter-one_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* COUNTER BLOCK */
.counter-block_one:nth-child(odd) {
  transform: translateY(60px);
}

.counter-block_one-inner {
  position: relative;
  padding-left: 40px;
}

/* LINE */
.counter-block_one-outline {
  position: absolute;
  left: 0;
  top: 20px;
  width: 2px;
  height: 150%;
  background: linear-gradient(to bottom, #999, #f1ecec, #750375, #34032c);
}

.counter-block_one-outline::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f1ecec;
  outline: 1px dashed #750375;
  outline-offset: 6px;
}

/* NUMBER */
.counter-block_one-count {
  font-size: 56px;
  font-weight: 700;
  color: #750375;
  margin-bottom: 10px;
  font-family: "Lexend Deca", sans-serif;
}

/* TEXT */
.counter-block_one-text {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* BACKGROUND KEYFRAMES */
@keyframes slideBackground {
  from {
    background-position: 0 bottom;
  }

  to {
    background-position: -1200px bottom;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .counter-one_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-block_one:nth-child(odd) {
    transform: none;
  }
}

@media (max-width: 576px) {
  .counter-one_grid {
    grid-template-columns: 1fr;
  }

  .counter-block_one-count {
    font-size: 42px;
  }
}

/* products section */
.product-section {
  padding: 60px 6%;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-item {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  padding: 20px;
}

.product-item:hover {
  transform: translateY(-6px);
}

.product-image-box {
  position: relative;
}

.product-image-box img {
  width: 100%;
  height: 220px;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* CONTENT */
.product-item h3 {
  padding: 20px 20px 10px;
  font-size: 15px;
  color: var(--purple);
  font-weight: 800;
}

.product-item p {
  font-size: 15px;
  color: #070708;
  line-height: 1.6;
}

/* ==============================
   PRODUCT ACTION BUTTONS
============================== */
.product-actions {
  display: flex;
  gap: 12px;
}

.product-actions>a,
.product-actions>button {
  flex: 1;
}

/* ==============================
   SHARED BUTTON STYLES
============================== */
.btn-outline-primary,
.btn-quote {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==============================
   OUTLINE BUTTON
============================== */
.btn-outline-primary {
  border: 1px solid var(--orange);
  color: var(--purple);
  background: transparent;
}

.btn-outline-primary:hover {
  background: rgba(79, 70, 229, 0.06);
}

.btn-quote {
  background-color: var(--purple);
  color: var(--white);
  font-weight: 600;
  border: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-quote:hover {
  background-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-quote:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn-quote:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(111, 49, 207, 0.4);
}

@media (max-width: 480px) {
  .product-actions {
    flex-direction: column;
  }

  .product-actions>a,
  .product-actions>button {
    width: 100%;
  }

  .product-section h2 {
    font-size: 26px;
  }

  .product-image-box img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .product-image-box img {
    height: 200px;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .product-card-grid {
    grid-template-columns: 1fr;
  }
}

/* company content */
.company-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* Floating shapes */
.company-section::before,
.company-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}

.company-section::before {
  width: 350px;
  height: 350px;
  background: #6a1b9a;
  top: -100px;
  left: -50px;
  animation: floatOne 12s ease-in-out infinite alternate;
}

.company-section::after {
  width: 500px;
  height: 500px;
  background: #9c27b0;
  bottom: -150px;
  right: -100px;
  animation: floatTwo 15s ease-in-out infinite alternate;
}

@keyframes floatOne {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(30px) rotate(15deg);
  }
}

@keyframes floatTwo {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(-50px) rotate(-20deg);
  }
}

/* Container */
.layout-container {
  position: relative;
  z-index: 1;
}

/* Card */
.company-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  margin-bottom: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s ease;
}

.company-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.company-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Titles */
.company-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #6a1b9a;
  position: relative;
}

.company-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #6a1b9a;
  border-radius: 2px;
  margin-top: 8px;
}

/* Text */
.company-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* List */
.company-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-list li {
  position: relative;
  padding-left: 40px;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 12px;
  color: #040404;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s ease;
}

.company-list li.visible {
  opacity: 1;
  transform: translateX(0);
}

.company-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #6a1b9a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Images */
.company-media img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.company-media img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .company-heading {
    font-size: 28px;
  }

  .company-text,
  .company-list li {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .company-card {
    padding: 25px;
    margin-bottom: 25px;
  }

  .company-heading {
    font-size: 24px;
  }
}

.fancy-heading {
  position: relative;
  display: inline-block;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 auto;
  /* CENTER */
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(90deg,
      #111 0%,
      #df4afd 40%,
      #6a1b9a 60%,
      #111 100%);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: gradientMove 6s ease infinite;
}

/* Underline */
.fancy-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 70%;
  height: 4px;
  background: linear-gradient(90deg, #5b61e6, #6a1b9a);
  border-radius: 50px;
  transform: translateX(-50%);
  animation: underlinePulse 2.5s ease-in-out infinite;
}

/* Animations */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes underlinePulse {

  0%,
  100% {
    width: 50%;
    opacity: 0.6;
  }

  50% {
    width: 80%;
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .fancy-heading {
    font-size: 32px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .fancy-heading {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .fancy-heading {
    font-size: 22px;
    letter-spacing: 1px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .fancy-heading {
    font-size: 20px;
  }
}

/* ================= GALLERY SECTION ================= */

.gallery-section {
  background-color: #f8f9fc;
  padding: 60px 80px;
}

/* Heading spacing */
.gallery-section .fancy-heading {
  margin-bottom: 40px;
}

/* ================= GRID ================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ================= CARD ================= */

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
  /* Equal height */
  background: #fff;
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

/* ================= IMAGE ================= */

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Full card fill */
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

/* ================= BADGE ================= */

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--purple);
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  z-index: 2;
  letter-spacing: 0.3px;
}

/* ================= RESPONSIVE ================= */

/* Large Tablet */
@media (max-width: 1199px) {
  .gallery-section {
    padding: 50px 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .gallery-section {
    padding: 40px 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-section {
    padding: 30px 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .badge {
    font-size: 11px;
    padding: 6px 10px;
  }
}

/* ================= CLIENTS SECTION ================= */
.clients-section {
  width: 100%;
  overflow: hidden;
  padding: 50px 20px 60px;
  /* top reduced */
}

/* Header */
.clients-header {
  text-align: center;
  margin-bottom: 45px;
}

.clients-header h2 {
  margin: 0;
}

/* ================= SLIDER ================= */

.slider-wrapper {
  width: 100%;
  position: relative;
}

.clients-slider {
  display: flex;
  align-items: center;
  gap: 40px;
  width: fit-content;
  animation: infiniteScroll 35s linear infinite;
}

.slider-wrapper:hover .clients-slider {
  animation-play-state: paused;
}

/* ================= CLIENT CARD ================= */

.client-card {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 5px 18px;
  transition: all 0.4s ease;
}

.client-card:hover {
  transform: scale(1.12);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Logo */
.client-card img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

/* ================= ANIMATION ================= */

@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {

  .clients-section {
    padding: 45px 20px 55px;
  }

  .clients-slider {
    gap: 30px;
  }

  .client-card {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {

  .clients-section {
    padding: 40px 15px 50px;
  }

  .clients-slider {
    gap: 25px;
  }

  .client-card {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {

  .clients-section {
    padding: 35px 10px 45px;
  }

  .client-card {
    width: 80px;
    height: 80px;
  }
}


/* about us */
.company-about-sec {
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

/* Container spacing */
.company-about-sec {
  padding-left: 8%;
  padding-right: 8%;
  box-sizing: border-box;
}

/* ===== Text Box ===== */
.company-about-text {
  padding: 35px;
  border-left: 6px solid #73198c;
}

/* Title */
.company-about-title {
  font-size: 32px;
  font-weight: 700;
  color: #020203;
  margin-bottom: 18px;
  line-height: 1.4;
}

.company-about-title span {
  color: #73198c;
}

/* Paragraph */
.company-about-text p {
  font-size: 15.5px;
  color: #100e0e;
  line-height: 1.85;
  margin: 0;
}

/* ===== Image Box ===== */
.company-about-img {
  background: #ffffff;
  padding: 20px;
  border: 1px solid #e5e5e5;
  text-align: center;
}

/* Image */
.company-about-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Laptop ===== */
@media(max-width:1200px) {

  .company-about-sec {
    padding-left: 5%;
    padding-right: 5%;
  }

}

/* ===== Tablet ===== */
@media(max-width:992px) {

  .company-about-sec {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .company-about-title {
    font-size: 26px;
  }

}

/* ===== Mobile ===== */
@media(max-width:768px) {

  .company-about-sec {
    padding: 50px 20px;
  }

  .company-about-text {
    padding: 25px;
  }

  .company-about-title {
    font-size: 22px;
  }

  .company-about-text p {
    font-size: 14.5px;
    line-height: 1.75;
  }

}

/* ===== Small Mobile ===== */
@media(max-width:480px) {

  .company-about-title {
    font-size: 20px;
  }

  .company-about-text {
    padding: 20px;
  }

}

/* mission and vision */
.vm-section-wrap {
  width: 100%;
  padding: 80px 6%;
  background: #f1f5f9;
}

/* ===== Title ===== */
.vm-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.vm-section-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1f2d3d;
}

.vm-section-title span {
  color: #73198c;
}

/* ===== Content Row ===== */
.vm-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

/* Alternate Layout */
.vm-content-row:nth-child(3) {
  direction: rtl;
}

.vm-content-row:nth-child(3) .vm-text-card {
  direction: ltr;
}

/* ===== Text Card ===== */
.vm-text-card {
  background: #ffffff;
  padding: 30px;
  border: 1px solid #e4e7ec;
}

/* Heading */
.vm-text-card h2 {
  font-size: 24px;
  color: #6f31cf;
  margin-bottom: 15px;
  border-bottom: 2px solid #73198c;
  display: inline-block;
  padding-bottom: 5px;
}

/* Paragraph */
.vm-text-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #070606;
}

/* ===== Image Box ===== */
.vm-image-box {
  background: #ffffff;
  padding: 15px;
  border: 1px solid #e4e7ec;
}

.vm-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Tablet ===== */
@media(max-width:992px) {

  .vm-section-title h2 {
    font-size: 28px;
  }

  .vm-content-row {
    grid-template-columns: 1fr;
  }

  .vm-content-row:nth-child(3) {
    direction: ltr;
  }

}

/* ===== Mobile ===== */
@media(max-width:768px) {

  .vm-section-wrap {
    padding: 60px 20px;
  }

  .vm-text-card {
    padding: 22px;
  }

  .vm-text-card h2 {
    font-size: 20px;
  }

  .vm-text-card p {
    font-size: 14.5px;
  }

}

/* ===== Small Mobile ===== */
@media(max-width:480px) {

  .vm-section-title h2 {
    font-size: 22px;
  }

  .vm-text-card {
    padding: 18px;
  }

}

/* certificate */
.cert-wall {
  width: 100%;
  padding: 70px 20px;
  background: #f5f7fa;
}

.cert-wall-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== Title ===== */
.cert-wall-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1f2d3d;
}

/* ===== Grid ===== */
.cert-wall-grid.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ===== Card ===== */
.cert-card {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 14px;
  padding: 12px;
}

/* Image */
.cert-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* ===== Tablet ===== */
@media (max-width:992px) {

  .cert-wall {
    padding: 60px 20px;
  }

  .cert-wall-grid.two-col {
    gap: 25px;
  }

  .cert-wall-title {
    font-size: 28px;
  }

}

/* ===== Mobile ===== */
@media (max-width:768px) {

  .cert-wall-grid.two-col {
    grid-template-columns: 1fr;
  }

  .cert-card {
    padding: 10px;
  }

}

/* ===== Small Mobile ===== */
@media (max-width:480px) {

  .cert-wall {
    padding: 50px 15px;
  }

  .cert-wall-grid.two-col {
    gap: 20px;
  }

  .cert-wall-title {
    font-size: 24px;
  }

}

/* contact us */
.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: url("../img/contact-bg.png") center/cover no-repeat;
  border-radius: 10px;
}


/* LEFT BOXES */
.contact-left {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  background: #e6cff3;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card i {
  font-size: 40px;
  color: #73198c;
  margin-bottom: 15px;
}

.contact-card h4 {
  margin-bottom: 10px;
  font-size: 15px;
}

/* RIGHT FORM */
.contact-right {
  flex: 1;
  background: #73198c;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-right h2 {
  text-align: center;
  margin-bottom: 25px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
}

.contact-right textarea {
  height: 120px;
}

.contact-right button {
  padding: 12px 30px;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
  display: block;
  margin: auto;
}

.contact-right button {
  padding: 12px 30px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all .3s ease;
}

.contact-right button:hover {
  background: #ffffff;
  color: #060708;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* MAP */
.map-section iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-left {
    grid-template-columns: 1fr;
  }
}

/* market area */
.market-area {
  text-align: center;
  padding: 80px 20px;
}

.market-area h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #73198c;
  margin-bottom: 70px;
  position: relative;
  display: inline-block;
}

.market-area h2::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #73198c;
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 2px;
  animation: lineGrow 2s ease infinite alternate;
}

@keyframes lineGrow {
  from {
    width: 40%;
  }

  to {
    width: 100%;
  }
}

/* ===== Grid Layout ===== */
.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 68px;
  max-width: 1224px;
  margin: 0 auto;
}

/* ===== Boxes ===== */
.market-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(8, 21, 82, 0.15);
  transition: all 0.5s ease;
  text-decoration: none;
  color: #73198c;
  position: relative;
  overflow: visible;
  perspective: 1000px;
  transform-style: preserve-3d;
}

/* Floating shadow under card */
.market-box::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 80%;
  height: 10px;
  background: rgba(8, 21, 82, 0.1);
  border-radius: 50%;
  filter: blur(8px);
  transform: translateX(-50%);
  transition: all 0.5s ease;
}

/* ===== Floating Icon Circle ===== */
.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8fafb;
  border: 3px solid #6f31cf;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.6s ease;
  box-shadow: 0 0 15px rgba(8, 21, 82, 0.15);
  z-index: 2;
}

/* ===== Title Area ===== */
.market-box h4 {
  margin-top: 40px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: color 0.4s ease, letter-spacing 0.4s ease;
}

/* ===== Hover Effects ===== */
.market-box:hover {
  transform: translateY(-12px) rotateX(8deg) rotateY(8deg) scale(1.05);
  box-shadow: 0 15px 25px rgba(8, 21, 82, 0.3),
    0 25px 50px rgba(8, 21, 82, 0.2),
    0 35px 75px rgba(8, 21, 82, 0.1);
}

.market-box:hover::after {
  width: 90%;
  height: 15px;
  background: rgba(8, 21, 82, 0.2);
  filter: blur(12px);
}

.market-box:hover h4 {
  color: #73198c;
  letter-spacing: 2px;
}

/* ===== Flag Icon Hover (Indian Flag SVG remains) ===== */
.flag-icon {
  transition: transform 0.6s ease;
}

.market-box:hover .flag-icon {
  transform: rotate(360deg) scale(1.2);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .market-area h2 {
    font-size: 1.8rem;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
    top: -30px;
  }

  .market-box {
    padding: 25px 15px 20px;
  }

  .market-box h4 {
    font-size: 0.9rem;
  }
}

/* ================= FOOTER ================= */
.tensile-footer {
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Curved Line Background */
.tensile-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at 80% 30%,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 2px,
      transparent 18px);
  opacity: 0.4;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
  padding: 70px 20px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ---------- Company Info ---------- */
.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.company-info p {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

/* products pages */
/* SECTION */
.tensile-section {
  padding: 80px 20px;
}

/* HEADER */
.tensile-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeDown 1s ease;
}

.ts-heading-main {
  font-size: 38px;
  color: #6a1b9a;
  font-weight: 700;
}

.ts-subheading {
  color: #040303;
  margin-top: 10px;
}

/* TOP PRODUCT */
.top-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  animation: fadeUp 1s ease;
}

.tp-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: .4s;
}

.tp-img:hover {
  transform: scale(1.05);
}

.tp-content {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.tp-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(#6a1b9a, #8a5ded);
}

/* CONTENT BLOCK */
.content-block {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  animation: fadeUp 1s ease;
}

.ts-heading {
  font-size: 22px;
  color: #6a1b9a;
  margin-bottom: 15px;
  font-weight: 600;
}

.ts-text {
  color: #040404;
  line-height: 1.8;

}

/* LIST */
.ts-list {
  padding-left: 18px;
  margin-top: 10px;
}

.ts-list li {
  margin-bottom: 8px;
  color: #0a0909;
}

/* CHECK LIST */
.check-list li {
  list-style: "✔️ ";
  padding-left: 8px;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:992px) {
  .top-product {
    grid-template-columns: 1fr;
  }
}

/* Social Icons */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: #7a1cff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  transform: translateY(-5px) scale(1.05);
  background: #9c4dff;
}

/* ---------- Footer Columns ---------- */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 22px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #7a1cff;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
}

/* Tick Circle */
.footer-col ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background: #7a1cff;
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #7a1cff;
}

/* ---------- Contact Info ---------- */
.contact-info p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #ccc;
  line-height: 1.6;
}

.contact-info i {
  color: var(--purple);
  margin-right: 10px;
}

/* ---------- Bottom Bar ---------- */
.footer-bottom {
  position: relative;
  z-index: 2;
  padding: 16px 30px;
  background: #2b2b2b;
  color: var(--purple);
  border-radius: 40px 40px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom span {
  color: var(--white);
  font-weight: 900;
}

/* ---------- Responsive ---------- */
@media(max-width:992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
    gap: 10px;
    border-radius: 20px 20px 0 0;
  }
}

/* sitemap */
.sitemap-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  background: #fff;
  padding: 35px 25px;
  border-radius: 10px;
 box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

/* Title */
.sitemap-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #73198c;
  margin-bottom: 30px;
}

/* Tree Structure */
.tree ul {
  padding-left: 20px;
  position: relative;
}

.tree ul::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-left: 2px solid #73198c;
}

.tree li {
  list-style: none;
  padding: 8px 0 8px 25px;
  position: relative;
}

/* Horizontal line */
.tree li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 20px;
  border-top: 2px solid #73198c;
}

/* Links */
.tree a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  background: #f9f9f9;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #eee;
  display: inline-block;
  transition: 0.3s;
}

.tree a:hover {
  color: #73198c;
  background: #f4e8f8;
  border-color: #73198c;
}

/* Responsive */
@media (max-width: 768px) {
  .sitemap-wrapper {
    padding: 20px 15px;
  }

  .tree a {
    font-size: 14px;
  }
}

/* terms and conditions */
.disclaimer-wrapper {
  max-width: 1100px;
  margin: 40px auto;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 10px;
 box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

/* Headings: h3 to h6 same style */
.disclaimer-wrapper h3,
.disclaimer-wrapper h4,
.disclaimer-wrapper h5,
.disclaimer-wrapper h6 {
  font-size: 22px;
  font-weight: 600;
  color: #73198c;
  margin-bottom: 10px;
  margin-top: 25px;
  border-left: 4px solid #73198c;
  padding-left: 12px;
}

/* Paragraph */
.disclaimer-wrapper p {
  font-size: 15.5px;
  margin-bottom: 15px;
  color: #555;
}

/* Lists */
.disclaimer-wrapper ul {
  margin-left: 18px;
  margin-bottom: 15px;
}

.disclaimer-wrapper ul li {
  margin-bottom: 8px;
  font-size: 15.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .disclaimer-wrapper {
    padding: 25px 18px;
    margin: 20px 12px;
  }

  .disclaimer-wrapper h3,
  .disclaimer-wrapper h4,
  .disclaimer-wrapper h5,
  .disclaimer-wrapper h6 {
    font-size: 18px;
  }

  .disclaimer-wrapper p,
  .disclaimer-wrapper ul li {
    font-size: 14.5px;
  }
}


 /* market area content */
    .market-area {
      max-width: 1370px;
      margin: 0 auto;
      padding: 20px 20px;
    }

    .market-content {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
      margin-bottom: 60px;
      padding: 50px 40px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      animation: fadeUp 1s ease forwards;
    }

    .market-content:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(184, 0, 0, 0.15);
    }

    .market-heading {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      position: relative;
    }

    /* ICON STYLE */
    .market-heading i {
      font-size: 1.8rem;
      background: #ffe6e6;
      color: #6f31cf;
      padding: 12px;
      border-radius: 50%;
      transition: 0.3s ease;
    }

    .market-heading h2,
    .market-heading h3,
    .market-heading h4 {
      margin: 0;
      font-size: 1.8rem;
      font-weight: 700;
      color: #6f31cf;
      line-height: 1.3;
    }

    .market-heading:hover i {
      background: #6f31cf;
      color: #fff;
    }

    .market-heading:hover {
      transform: translateX(3px);
      transition: 0.3s ease;
    }

    .market-text p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 15px;
      text-align: justify;
    }

    .market-text b {
      color: #6f31cf;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ========== RESPONSIVE DESIGN ========== */
    @media (max-width: 992px) {
      .market-area {
        padding: 60px 15px;
      }

      .market-heading {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 768px) {
      .market-heading {
        justify-content: center;
        text-align: center;
      }

      .market-heading::after {
        left: 50%;
        transform: translateX(-50%);
      }

      .market-text p {
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
      .market-heading {
        font-size: 1.6rem;
      }

      .market-heading i {
        font-size: 1.5rem;
      }

      .market-text p {
        font-size: 14px;
      }
    }