:root{
--logo-black: rgb(100 95 100);
--dark-black:rgb(59 57 59);
--primary-black:#20282d;
--dark-red:hsl(356.79deg 75.1% 48.82%);
--yellow:rgb(244 137 36);
--light-red:rgb(223 69 57);
--linear-gradient:linear-gradient(135deg,hsl(356.79deg 75.1% 48.82%),rgb(244, 137, 36));

}

.partner-breadcrumb.product-details-banner
{
    background-image:none;
    /* height: 477px; */
}
.product-details-banner {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.2s ease-in-out;
}

/* Current slide */
.slide.active {
    opacity: 1;
    z-index: 2;
    animation: zoomSmooth 4s linear forwards;
}

/* Outgoing slide */
.slide.prev {
    opacity: 0;
    z-index: 1;
}

/* Smooth zoom */
@keyframes zoomSmooth {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* Text animation */
.content {
    position: absolute;
    bottom: 30%;
    left: 10%;
    color: #fff;
    max-width: 600px;
    opacity: 0;
    transform: translateY(25px);
}
.content h1{
    color: white;
    font-weight: 600 !important;
    margin-bottom: 0px;
    font-size: 50px;

}
.content .step
{
    background:var(--linear-gradient) ;
    border-radius: 16px;
    padding: 5px 12px;
    font-size: 12px;
}
.content p{
    text-transform: capitalize;
    color: white;
    font-size: 14px;
}
.slide.active .content {
    animation: textFadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

@keyframes textFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* ------------------------------------------------------------------------------------------------------------------------------- */

/* our product section css start from here */
/* --------------------------------------------------------------------------------------------------- */


























/* -------------------------------------------------------------------------------------------------------------- */
/* key points section */
/* -------------------------------------------------------------------------------------------------------------- */
.product-showcase {
  padding: 80px 0;
  background: #fff;
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 30px;
}
.card {
  position: relative;
  background: #fff;
  border: 3px solid #000;
  border-radius: 4px;
}
.card-long {
  grid-column: span 2;
}

/* .card-long.left {
  grid-column: 1 / span 2;
}

.card-long.right {
  grid-column: 2 / span 2;
} */
.hexagon {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 3px solid #000;
  clip-path: polygon(
    25% 0%, 75% 0%, 
    100% 50%, 
    75% 100%, 25% 100%, 
    0% 50%
  );
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.arrow {
  position: absolute;
  width: 30px;
  height: 12px;
}

.left-arrow {
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.right-arrow {
  left: -15px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  background: #000;
}

.arrow::before {
  width: 30px;
  height: 4px;
  top: 4px;
  left: 0;
}

.arrow::after {
  width: 10px;
  height: 10px;
  border-right: 4px solid #000;
  border-top: 4px solid #000;
  transform: rotate(45deg);
  right: 0;
  top: 1px;
}



/* listing */
.shape-top-right.move-top-down
{
    top: -20px;
}
.shape-top-right.move-top-down img
{
    height: 200px;
     /* animation: breatheGlow 4s ease-in-out infinite; */
}




.product-listing.top-fixed-bar
{
      box-shadow: 0 0px 10px rgba(0, 0, 0, 0.29);
}
/* .scalable-img img{
    transform: rotate(90deg);

}
.shape-bottom-left.scalable-img
{
    bottom: 0px;
    left: 0px;
} */

.shape-top-middle{
    position:absolute;
    top: 80px;
    left: 45%;
}
.shape-top-middle img
{
    height: 100px;
      animation: upDown 4s ease forwards infinite;
    
}
.footer-8-area-bg
{
    position: relative;
    z-index: 9;
}

.shape-bottom-left.scalable-img {
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: visible;
}

/* Image animation */
.scalable-img img {
    transform: rotate(90deg) scale(0);
    opacity: 0;
    animation: glowScaleIn 4s ease-out forwards infinite;
     animation-delay: 0.4s;
}

/* Glow + scale animation */
@keyframes glowScaleIn {
    0% {
        transform: rotate(90deg) ;
        opacity: 0;
        filter: blur(12px);
    }
    60% {
        transform: rotate(90deg);
        opacity: 0.8;
        filter: blur(2px);
    }
    100% {
        transform: rotate(90deg) ;
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes breatheGlow {
    0%, 100% {
        transform: rotate(90deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(90deg) scale(1.04);
        opacity: 0.95;
    }
}
@keyframes upDown {
  0% {
    transform: translateY(0);
    opacity: .8;
  }
  50% {
    transform: translateY(14px);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.side-left-middle 
{
    position: absolute;
    top: 230px;
        left: -10px;
    transform: rotate(45deg);
    animation: upDown 4s ease forwards infinite;
    animation-delay: 1s;
}
.side-left-middle  img{
    height: 90px;
}







/* ----------------------------------------------------------------------------------------------------------------- */
.modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        /* Modal Container */
        .product-modal {
            background: white;
            width: 100%;
            max-width: 1115px;
            max-height: 90vh;
            border-radius: 12px;
            overflow: hidden;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .modal-overlay.active .product-modal {
            transform: scale(1);
        }

        /* Modal Header */
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            border-bottom: 1px solid #e0e0e0;
            background-color: #f8f9fa;
        }

        .modal-header h3 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
            color: #333;
        }

        .modal-close-btn {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #666;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .modal-close-btn:hover {
            background-color: #e0e0e0;
            color: #333;
        }

        /* Modal Body */
        .modal-body {
            overflow-y: auto;
            max-height: calc(90vh - 80px);
            padding: 0;
        }

        /* Video Section */
        .modal-video-section {
            position: relative;
            width: 100%;
            padding-bottom: 39%; /* 16:9 Aspect Ratio */
            background-color: #000;
        }

        .modal-video-section iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Content Section */
        .modal-content-section {
            padding: 30px;
        }

        .modal-content-section h4 {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .modal-content-section p {
            font-size: 16px;
            line-height: 1.7;
            color: #666;
            margin-bottom: 25px;
        }

        /* Key Points Section */
      
        /* Key Points Section */
        .key-points-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .key-point-box {
            background-color: #ffffff;
            border-radius: 8px;
            padding: 20px;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .key-point-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .key-point-box .icon {
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            background: var(--linear-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
        }

        .key-point-box .icon i {
            font-size: 32px;
        }

        .key-point-box .contents {
            flex: 1;
        }

        .key-point-box .stat-number {
            font-size: 28px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 5px;
            display: block;
            line-height: 1;
        }

        .key-point-box h5 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
            margin-top: 0;
        }

        .key-point-box p {
            font-size: 14px;
            color: #666;
            margin: 0;
            line-height: 1.5;
        }

        /* Enquiry Button */
        .enquiry-btn-wrapper {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }

        .enquiry-btn {
            display: inline-block;
            padding: 15px 40px;
            background-color:var(--dark-red);
            color: white;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(205, 125, 13, 0.3);
        }
        .enquiry-btn:hover{
            color: white;
        }
        

        

        /* Responsive Design */
        @media (max-width: 768px) {
            .modal-header {
                padding: 15px 20px;
            }

            .modal-header h3 {
                font-size: 20px;
            }

            .modal-content-section {
                padding: 20px;
            }

            .key-points-wrapper {
                grid-template-columns: 1fr;
            }
        }

        /* Scrollbar Styling */
        .modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .modal-body::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .modal-body::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: #555;
        }







.ambient-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.float-item {
  position: absolute;
  opacity: 0.35;
  will-change: transform, opacity;
}
.circle-shape {
  background: radial-gradient(circle at 30% 30%, #ffb74d, #ff9800);
  border-radius: 50%;
  animation: bubbleFloat ease-in-out infinite;
}

/* Bubble animation */
@keyframes bubbleFloat {
  0% {
    transform: translateY(0) scale(0.7);
    opacity: 0.2;
  }
  40% {
    transform: translateY(-120px) scale(1.1);
    opacity: 0.6;
  }
  70% {
    transform: translateY(-240px) scale(1.3);
    opacity: 0.9;
  }
  100% {
    transform: translateY(-360px) scale(0.9);
    opacity: 0;
  }
}
.square-shape {
  background: linear-gradient(135deg, #ec830c, #d67c58);
  animation: squareDrift linear infinite;
}

/* Square animation */
@keyframes squareDrift {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.8);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-350px) rotate(180deg) scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-720px) rotate(360deg) scale(0.3);
    opacity: 0.6;
  }
}
.big {
  width: 80px;
  height: 80px;
}

.medium {
  width: 50px;
  height: 50px;
}

.small {
  width: 30px;
  height: 30px;
}
.float-item:nth-child(1) {
  left: 9%;
  bottom: -100px;
  animation-duration: 14s;
}

.float-item:nth-child(2) {
  left: 25%;
  bottom: -120px;
  animation-duration: 18s;
}

.float-item:nth-child(3) {
  left: 50%;
  bottom: -90px;
  animation-duration: 16s;
}

.float-item:nth-child(4) {
  left: 70%;
  bottom: -140px;
  animation-duration: 20s;
}

.float-item:nth-child(5) {
  left: 85%;
  bottom: -100px;
  animation-duration: 22s;
}

.float-item:nth-child(6) {
  left: 35%;
  bottom: -130px;
  animation-duration: 19s;
}


.ambient-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.float-item {
  position: absolute;
  opacity: 0.35;
  will-change: transform, opacity;
}
.circle-shape {
  background: radial-gradient(circle at 30% 30%, #ffb74d, #ff9800);
  border-radius: 50%;
  animation: bubbleFloat ease-in-out infinite;
}

/* Bubble animation */
@keyframes bubbleFloat {
  0% {
    transform: translateY(0) scale(0.7);
    opacity: 0.2;
  }
  40% {
    transform: translateY(-120px) scale(1.1);
    opacity: 0.6;
  }
  70% {
    transform: translateY(-240px) scale(1.3);
    opacity: 0.9;
  }
  100% {
    transform: translateY(-360px) scale(0.9);
    opacity: 0;
  }
}
.square-shape {
  background: linear-gradient(135deg, #ec830c, #d67c58);
  animation: squareDrift linear infinite;
}

/* Square animation */
@keyframes squareDrift {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.8);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-350px) rotate(180deg) scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-720px) rotate(360deg) scale(0.3);
    opacity: 0.6;
  }
}
.big {
  width: 80px;
  height: 80px;
}

.medium {
  width: 50px;
  height: 50px;
}

.small {
  width: 30px;
  height: 30px;
}
.float-item:nth-child(1) {
  left: 9%;
  bottom: -100px;
  animation-duration: 14s;
}

.float-item:nth-child(2) {
  left: 25%;
  bottom: -120px;
  animation-duration: 18s;
}

.float-item:nth-child(3) {
  left: 50%;
  bottom: -90px;
  animation-duration: 16s;
}

.float-item:nth-child(4) {
  left: 70%;
  bottom: -140px;
  animation-duration: 20s;
}

.float-item:nth-child(5) {
  left: 85%;
  bottom: -100px;
  animation-duration: 22s;
}

.float-item:nth-child(6) {
  left: 35%;
  bottom: -130px;
  animation-duration: 19s;
}




.axp-project-showcase {
  padding: 120px 0;
  background: radial-gradient(circle at top, #1f2a30, #141b20);
  color: #fff;
}

.axp-project-container {
  max-width: 1200px;
  margin: auto;
}

.axp-project-header {
  text-align: center;
  margin-bottom: 60px;
}

.axp-project-header .pre {
  letter-spacing: 2px;
  font-size: 13px;
  opacity: 0.7;
}

.axp-project-header h2 {
  font-size: 40px;
  margin-top: 10px;
}

.axp-project-slide {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.axp-project-card {
  background: #fff;
  color: #1c2539;
  padding: 50px;
  border-radius: 20px;
}

.axp-project-card h3 {
  font-size: 26px;
  margin: 18px 0 6px;
}

.axp-project-tag {
  font-size: 14px;
  color: #6b7280;
}

.axp-project-card p {
  font-size: 15px;
  line-height: 1.7;
  margin: 22px 0;
}

.axp-project-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  background: #20282d;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.axp-project-image img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

/* NAV */
.axp-project-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.axp-prev,
.axp-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.axp-project-count {
  font-size: 14px;
  opacity: 0.8;
}

/* MOBILE */
@media (max-width: 900px) {
  .axp-project-slide {
    grid-template-columns: 1fr;
  }
}
/* FORCE WHITE TEXT FOR PROJECT SLIDER */
.axp-project-showcase {
  color: #ffffff;
}

.axp-project-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  color: #ffffff;
}

.axp-project-card h3 {
  color: #ffffff;
}

.axp-project-tag {
  color: rgba(255,255,255,0.75);
}

.axp-project-card p {
  color: rgba(255,255,255,0.85);
}

.axp-project-btn {
  background: #ffffff;
  color: #20282d;
  font-weight: 500;
}

.axp-project-btn:hover {
  background: var(--yellow);
  color: #000;
}

/* NAV BUTTONS */
.axp-prev,
.axp-next {
  color: #ffffff;
  border-color: rgba(255,255,255,0.4);
}

.axp-prev:hover,
.axp-next:hover {
  background: rgba(255,255,255,0.15);
}

/* FIX SWIPER CLICK AREA */
.axp-project-slider {
  overflow: hidden;
  position: relative;
}

.swiper-slide {
  pointer-events: auto;
}
.bg-content.blurr-text{
      -webkit-text-stroke-color: rgb(255 255 255 / 12%);
}

/* Base – Mobile first */
.axp-project-showcase {
    color: #ffffff;
    padding: 20px 15px; /* mobile friendly */
}

/* ≥ 576px (large mobiles) */
@media (min-width: 576px) {
    .axp-project-showcase {
        padding: 30px 20px;
    }
}

/* ≥ 768px (tablets) */
@media (min-width: 768px) {
    .axp-project-showcase {
        padding: 40px 30px;
    }
}

/* ≥ 992px (small desktops) */
@media (min-width: 992px) {
    .axp-project-showcase {
        padding: 50px 40px;
    }
}

/* ≥ 1200px (large desktops / 1366px) */
@media (min-width: 1200px) {
    .axp-project-showcase {
        padding: 60px 60px;
        /* max-width: 1400px; */
        margin: 0 auto; /* center content */
    }
}
/* TOP BAR WRAPPER FIX */
.solutions-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* TABS */
.solutions-tabs {
  display: flex;
  flex-wrap: wrap; /* desktop wrap */
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* MOBILE BEHAVIOR */

/* FIX: remove second underline on active tab (tablet & mobile only) */
@media (max-width: 991px) {
  
}
/* FIX: center Download Brochure on tablet & mobile only */
@media (max-width: 991px) {
  .brochure-btn {
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
    align-items: center;
  }
}



/* MOBILE DISABLE */
@media (max-width: 991px) {
    .header-float {
        display: none;
    }
}
ul li {
    font-size: 16px;
    line-height: var(--line-height-b1);
    margin-top: 10px;
    margin-bottom: 10px;
    color: #000000;
}
.pt-0 {
  padding-bottom: 60px;
}