* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box:
}

body {
	overflow-x: hidden;
}

/* common css */


/* #download_btn i {
    font-size: 25px;
} */

/* =========================
GLOBAL SMOOTH SCROLL
========================= */
html {
    scroll-behavior: smooth;

    /* Firefox scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #6361EF #f1f1f1;
}

/* =========================
SCROLLBAR - WEBKIT (Chrome, Edge, Safari)
========================= */
::-webkit-scrollbar {
    width: 30px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(125deg, #5CBBEE, #6361EF, #BD90D5);
    border-radius: 10px;
    border: 2px solid #f1f1f1; /* floating effect */
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #1B336F;
}

/* =========================
TEXT SELECTION (GLOBAL)
========================= */

/* Chrome, Edge, Safari */
::selection {
    background: #6361EF;
    color: #ffffff;
}

/* Firefox */
::-moz-selection {
    background: #6361EF;
    color: #ffffff;
}

.back-to-top {
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: none;
    cursor: pointer;
    z-index: 9999;
}

/* rotate so progress starts from top */
.progress-ring {
    transform: rotate(-90deg);
}

/* background circle */
.progress-ring-bg {
    fill: none;
    stroke: rgba(255,255,255,0.2);
    stroke-width: 4;
}

/* progress circle */
.progress-ring-circle {
    fill: none;
    stroke: url(#gradientStroke);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 163.36; /* IMPORTANT */
    stroke-dashoffset: 163.36;
    transition: stroke-dashoffset 0.1s linear;
}

/* center button */
.back-to-top .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 40px;
    height: 40px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(125deg, #5CBBEE, #6361EF, #BD90D5);
    color: #fff;
    font-size: 18px;
}

.purple_bg {
	background: linear-gradient(125deg, #5CBBEE -6.43%, #6361EF 49.34%, #BD90D5 100%);
}

.card {
  position: relative !important;
  z-index: 1 !important;
  border: 1px solid #EF2853 !important; /* default border */
  transition: border-color 0.3s ease;
}

/* Corner squares */
.card::after {
  content: "";
  position: absolute;
  inset: -6px;
  pointer-events: none;

  /* 👇 NOW ALWAYS VISIBLE */
  opacity: 1;
  transition: all 0.3s ease;

  /* Default corner color */
  background:
    linear-gradient(#ef2953, #ef2953) top left / 10px 10px no-repeat,
    linear-gradient(#ef2953, #ef2953) top left / 10px 10px no-repeat,

    linear-gradient(#ef2953, #ef2953) top right / 10px 10px no-repeat,
    linear-gradient(#ef2953, #ef2953) top right / 10px 10px no-repeat,

    linear-gradient(#ef2953, #ef2953) bottom left / 10px 10px no-repeat,
    linear-gradient(#ef2953, #ef2953) bottom left / 10px 10px no-repeat,

    linear-gradient(#ef2953, #ef2953) bottom right / 10px 10px no-repeat,
    linear-gradient(#ef2953, #ef2953) bottom right / 10px 10px no-repeat;
}

/* 🔥 Hover effect */
/* .card:hover {
  border-color: #ef2953; 
}

.card:hover::after {
  background:
    linear-gradient(#ef2953, #ef2953) top left / 20px 2px no-repeat,
    linear-gradient(#ef2953, #ef2953) top left / 2px 20px no-repeat,

    linear-gradient(#ef2953, #ef2953) top right / 20px 2px no-repeat,
    linear-gradient(#ef2953, #ef2953) top right / 2px 20px no-repeat,

    linear-gradient(#ef2953, #ef2953) bottom left / 20px 2px no-repeat,
    linear-gradient(#ef2953, #ef2953) bottom left / 2px 20px no-repeat,

    linear-gradient(#ef2953, #ef2953) bottom right / 20px 2px no-repeat,
    linear-gradient(#ef2953, #ef2953) bottom right / 2px 20px no-repeat;
} */

#gradient_label {
    background: -webkit-linear-gradient(45deg, #ef2953 0%, #c43561 25%, #1a336f 100%);
}

/* Common CSS - Brand Color Version */

.elementor-button {
    background: linear-gradient(125deg, #5CBBEE -6.43%, #6361EF 49.34%, #BD90D5 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.elementor-button .elementor-button-content-wrapper {
	align-items:center;
}

.elementor-button i {
    font-size: 25px !important;
}

.elementor-button:hover {
	background: #1B336F;
}

/* Tagi5 model css */
/* =========================
TAGI5 MODAL CUSTOM STYLE
========================= */

/* Modal content box */
.custom-model .modal-content {
    width: 100%;
    max-width: 520px;
    margin: auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    border: none;
/*     padding: 10px; */
}

/* Center modal properly */
.custom-model .modal-dialog {
    max-width: 520px;
}

/* ===== HEADING ===== */
.custom-model h2 {
    color: #1A336F;
    font-family: "Poppins", sans-serif;
    text-align: center;
    font-size: 32px;
    margin: 20px 0;
}

/* ===== CONTENT ===== */
.custom-model .popup-content {
    padding: 15px;
}

/* ===== CLOSE BUTTON ===== */
/* .custom-model .btn-close { top: -37px !important; right: -49px !important; } */
.custom-model .btn-close:hover, .custom-model [type=button]:hover { background-color: transparent !important; }

/* ===== FORM (FORMINATOR + INPUTS) ===== */
.custom-model input {
    font-size: 16px;
    border: 1px solid #cbd6e2;
    background-color: #f5f8fa;
}

/* Center Forminator button */
.custom-model .forminator-row-last .forminator-col {
    display: flex;
    justify-content: center;
}

.custom-model .forminator-button-submit {
    text-align: center;
}

/* ===== MODAL BACKDROP ===== */
.modal-backdrop.show {
    background: rgba(0,0,0,0.6);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .custom-model .modal-dialog {
        max-width: 90%;
    }
}

@media (max-width: 767px) {

    .custom-model .modal-dialog {
        max-width: 92%;
        margin: 20px auto;
    }

    .custom-model .popup-content {
        padding: 20px;
        max-height: 75vh;
        overflow-y: auto;
    }

    .custom-model h2 {
        font-size: 22px;
    }
}

/* Tagi5 Banner section css */

#tagi5-hero video {
    height: 120vh;
	width: 100%;
	object-fit: cover; /* This makes the video cover the area without stretching */
    display: block; /* Removes small whitespace below the video */
}

.tagi5_heading {
	background: var(--Gradient-2, linear-gradient(125deg, #5CBBEE -6.43%, #6361EF 49.34%, #BD90D5 100%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#tagi5-hero h1 {
	background: var(--Gradient-2, linear-gradient(125deg, #5CBBEE -6.43%, #6361EF 49.34%, #BD90D5 100%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/* Tagi5 problem section css */

#tagi5-problem image {
	rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1);
    -webkit-transform: translate3d(0px, -57.6px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1);
}

/* Tagi5 Product Showcase section css */

#tagi5-product .e-n-tabs-heading {
    background: #EBEEF2;
    padding: 10px;
    border-radius: 50px;
    margin: auto;
}

/* Active Tab Content Panel Background */
#tagi5-product .e-n-tab-title[aria-selected="true"],
#tagi5-product .e-n-tab-title:not([aria-selected="true"]):hover
 {
    background: linear-gradient(125deg, #5CBBEE -6.43%, #6361EF 49.34%, #BD90D5 100%);
}

/* Mobile */
@media (max-width:767px){ 
	#tagi5-product .e-n-tabs-mobile {
    background: #EBEEF2;
    border-radius: 30px;
    padding: 20px;
}
}

/* Tagi5 Core Value Proposition section */

#tagi5-core-value .swiper-pagination-bullet {
    width: 50px;
    height: 8px;
    border-radius: 5px;
}

#tagi5-core-value .core-card {
	background: linear-gradient(125deg, rgba(92, 187, 238, 0.20) -6.43%, rgba(99, 97, 239, 0.20) 49.34%, rgba(189, 144, 213, 0.20) 100%);
}

@media (min-width: 1024px) {
	#tagi5-audience img {
		height: 95vh;
		object-fit: cover;
	}
}

@media (max-width: 480px) {
	#tagi5-core-value br {
		display: none;
	}
}




/* Tagi5 How Tagi5 Works section */
@media (max-width:700px) {
	#tagi5-how br {
		display: none;
	}	
}

#tagi5-process{
    position: relative;
}

#tagi5-process::before{
    content: "";
    position: absolute;
    left: 9%;
    width: 84%;
    height: 1px;
    background: #6361EF;
    top: 45px; /* aligns with center of the circle */
    z-index: 0;
}

#tagi5-process .tagi5-step{
    position: relative;
    z-index: 2;
}

#tagi5-process .elementor-icon-box-icon{
    position: relative;
    z-index: 3;
}

/* Hide line on tablet and mobile */
@media (max-width:1024px){
    #tagi5-process::before{
        display:none;
    }
}

/* Tagi5 Humburger section */

#humburger-menu svg {
    width: 20px;
    height: 20px;
}

/* Tagi5 What Makes Tagi5 Differen section */

@media (max-width:1300px) {
	#tagi5-differentiators .swiper-navigation-button {
		display: none;
	}
}

/* Tagi5 Credibility & Measurable Impact section */

/* Target the problem-icon-box cards */
#tagi5-impact .problem-icon-box {
  position: relative !important;
  border-radius: 16px !important;
  border: none !important;
  z-index: 1;
  isolation: isolate;
  overflow: visible !important;
}

/* Gradient Border Layer */
#tagi5-impact .problem-icon-box::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 16px !important;
  padding: 2px !important; /* 1px border width */
  background: linear-gradient(
    180deg,
    rgba(147, 51, 234, 0.6) 0%,    /* Purple */

    rgba(254, 254, 254, 0) 100%    /* Purple */
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1 !important;
  pointer-events: none;
}

/* Subtle Outer Glow Layer */
#tagi5-impact .problem-icon-box::after {
  content: '' !important;
  position: absolute !important;
  inset: -1px !important;
  border-radius: 16px !important;
  filter: blur(12px) !important;
  opacity: 0.4 !important;
  z-index: -2 !important;
  pointer-events: none;
}

/* Ensure inner content stays above borders */
#tagi5-impact .problem-icon-box > * {
  position: relative !important;
  z-index: 2 !important;
}

/* Optional: Hover effect */
#tagi5-impact .problem-icon-box:hover::before {
  transition: background 0.3s ease;
}

#tagi5-impact .problem-icon-box:hover::after {
  opacity: 0.6 !important;
  filter: blur(16px) !important;
  transition: all 0.3s ease;
}

/* What Makes Tagi5 Different section (Carousel css) */

/* ===== MAIN WRAPPER ===== */
#tagi5-differentiators {
    padding: 60px 0;
}

/* ===== SLIDER STRUCTURE ===== */
#tagi5-differentiators .swiper-wrapper {
    align-items: stretch;
}

#tagi5-differentiators .swiper-slide {
    display: flex;
    height: auto;
    padding: 10px; /* spacing between cards */
}

/* ===== CARD FIX ===== */
#tagi5-differentiators .problem-icon-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 🔥 change from space-between */
    gap: 15px;
    padding: 30px;
    border-radius: 15px;
}

/* ===== ICON SPACING ===== */
#tagi5-differentiators .elementor-widget-icon {
    margin-bottom: 10px;
}

/* ===== TITLE ===== */
#tagi5-differentiators .elementor-icon-box-title {
    margin-bottom: 8px;
}

/* ===== TEXT ===== */
#tagi5-differentiators .elementor-icon-box-description {
    margin: 0;
}

/* ===== NAVIGATION ===== */
#tagi5-differentiators .swiper-button-next,
#tagi5-differentiators .swiper-button-prev {
    color: #000;
    width: 40px;
    height: 40px;
}

#tagi5-differentiators .swiper-button-next::after,
#tagi5-differentiators .swiper-button-prev::after {
    font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #tagi5-differentiators {
        padding: 40px 0;
    }
}