:root {
	--primary-color: #010535;
	--secondary-color: #f2f2f5;
	--text-color: #707070;
	--accent-color: #4d51ab;
	--accent-secondary-color: #ff7a18;
	--white-color: #ffffff;
	--divider-color: #f5f5f5;
	--dark-divider-color: #ffffff33;
	--error-color: rgb(230, 87, 87);
	--default-font: "Plus Jakarta Sans", sans-serif;

	--accent-gradient: linear-gradient(90deg,
			#ff6a00 0%,
			#ff2d2d 35%,
			#0a2a66 70%,
			#0f4c81 100%);
}

.our-blog {
	padding: 50px 0 0 0;
}

.section-title {
	z-index: 0;
}


#CloudSecurity {
	background: url(../images/why-choose-bg.png), var(--primary-color);
	line-height: 1.6;
	overflow-x: hidden;
	padding: 80px 0;
}


.vCISO-Coverage,
.cs-consult {
	background: url(../images/why-choose-bg.png), var(--primary-color);
	line-height: 1.6;
	overflow-x: hidden;
	padding: 80px 0;
}

.sc-section {
	--sc-bg: #f3f6fa;
	--sc-card-bg: #ffffff;
	--sc-text: #1e293b;
	--sc-muted: #64748b;
	--sc-border: rgba(0, 0, 0, 0.06);

	/* Brand Colors */
	--c-cyan: #06b6d4;
	--c-red: #ef4444;
	--c-blue: #2563eb;
	--c-orange: #f97316;
	--c-purple: #7c3aed;
}


.sc-divider {
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--c-cyan), var(--c-blue));
	margin: 0 auto 15px;
	border-radius: 2px;
}

.sc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 24px;
	align-items: start;
}

.sc-card {
	background: var(--sc-card-bg);
	border: 1px solid var(--sc-border);
	border-radius: 16px;
	padding: 14px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.sc-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.sc-card-title {
	font-weight: 700;
	margin: 15px 0 10px;
}

.sc-card-text {
	margin-bottom: 3px;
}


.sc-hero-card {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: white;
	text-align: center;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	grid-row: span 2;
	border: none;
}

.sc-hero-content {
	position: relative;
	z-index: 2;
}

.sc-hero-card h3 {
	margin-bottom: 10px;
	color: var(--text-main-hw);
}

.sc-hero-card p {
	color: var(--text-main-hw);
}

.sc-shield-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	color: var(--c-cyan);
}

.sc-hero-glow {
	position: absolute;
	width: 200px;
	height: 200px;
	background: var(--c-cyan);
	filter: blur(80px);
	opacity: 0.2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.sc-icon-box {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sc-icon-box svg {
	width: 20px;
	height: 20px;
}

.icon-cyan {
	background: rgba(6, 182, 212, 0.1);
	color: var(--c-cyan);
}

.icon-red {
	background: rgba(239, 68, 68, 0.1);
	color: var(--c-red);
}

.icon-blue {
	background: rgba(37, 99, 235, 0.1);
	color: var(--c-blue);
}

.icon-orange {
	background: rgba(249, 115, 22, 0.1);
	color: var(--c-orange);
}

.icon-purple {
	background: rgba(124, 58, 237, 0.1);
	color: var(--c-purple);
}

.sc-card-accent {
	border-top: 4px solid var(--c-cyan);
}

.sc-card-red {
	border-top: 4px solid var(--c-red);
}

.sc-card-blue {
	border-top: 4px solid var(--c-blue);
}

.sc-card-orange {
	border-top: 4px solid var(--c-orange);
}

.sc-card-purple {
	border-top: 4px solid var(--c-purple);
}

/* Spanning Card (ISO) */
.sc-span-2 {
	grid-column: span 2;
	/* Stretches across 2 columns */
}

.sc-flex-row {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

/* Tags (The small text bubbles) */
.sc-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.sc-tags span {
	font-size: 0.75rem;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 4px;
	background: #f1f5f9;
	color: #475569;
}

@media (max-width: 992px) {
	.sc-grid {
		grid-template-columns: 1fr 1fr;
		/* 2 Columns on Tablet */
	}

	.sc-hero-card {
		grid-column: span 2;
		/* Hero spans top */
		grid-row: auto;
	}

	.sc-span-2 {
		grid-column: span 2;
	}
}

@media (max-width: 600px) {
	.sc-grid {
		grid-template-columns: 1fr;
		/* 1 Column on Mobile */
	}

	.sc-hero-card,
	.sc-span-2 {
		grid-column: span 1;
	}

	.sc-flex-row {
		flex-direction: column;
	}
}

#Assurance-service,
#CorporateTraining {
	background: url(../images/why-choose-bg.png), var(--primary-color);
	line-height: 1.6;
	overflow-x: hidden;
}


.vciso-mb-4 {
	margin-bottom: 1.5rem;
}

.vciso-mb-2 {
	margin-bottom: 0.5rem;
}


.vciso-coverage-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(300px, 1fr));
	gap: 23px;
	padding: 20px 0;
}

.vciso-coverage-card {
	background: rgb(255, 255, 255);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 25px;
	transition: all 0.3s ease;
	position: relative;
	backdrop-filter: blur(10px);
}

.vciso-coverage-card:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: var(--accent-secondary-color);
	transform: translateY(-5px);
}

.vciso-card-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(59, 59, 59, 0.726);
	padding-bottom: 15px;
}

.vciso-coverage-card:hover .vciso-card-title,
.vciso-coverage-card:hover .vciso-list li,
.vciso-coverage-card:hover .vciso-list li::before {
	color: #fff;

}

.vciso-coverage-card:hover .vciso-card-header {
	border-bottom: 1px solid rgba(219, 219, 219, 0.726);

}

.vciso-cov-icon {
	background: var(--accent-gradient);
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #fff;
	padding: 25px;
}

.vciso-cov-icon i {
	font-size: 16px;
}

.vciso-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0;
}

.vciso-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.vciso-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	color: #000;
	font-size: 0.95rem;
	line-height: 1.5;
}

.vciso-list li::before {
	content: '▹';
	position: absolute;
	left: 0;
	color: #000;
}

.vciso-lead {
	font-size: 1.15rem;
	color: var(--text-muted);
	line-height: 1.8;
	max-width: 800px;
}

.workflow-container {
	padding: 20px;
	display: flex;
	margin: auto;
	overflow: hidden;
}

.step {
	flex: 1;
	background-color: #003366;
	color: white;
	padding: 15px 25px 15px 15px;
	margin-right: 15px;
	position: relative;
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	text-align: left;
}

.step:last-child {
	margin-right: 0;
}

.step::after {
	content: '';
	position: absolute;
	right: -15px;
	top: 0;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-left: 15px solid #003366;
	z-index: 1;
}

.step::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-left: 15px solid #ffffff;
	z-index: 2;
}

.step:first-child::before {
	display: none;
}

.vciso-modern-section {
	padding: 90px 0;
}

.vciso-modern-grid {
	margin-top: 30px;
}

.vciso-modern-card {
	background: #ffffff;
	border: 1px solid #eaeaea;
	border-radius: 14px;
	padding: 25px 22px;
	height: 100%;
	transition: all 0.3s ease;
}

.vciso-modern-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	border-color: #0d6efd;
}

.vciso-modern-icon {
	width: 50px;
	height: 50px;
	background: #f4f7ff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.vciso-modern-icon i {
	font-size: 20px;
	color: #0d6efd;
}

.vciso-modern-card h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.vciso-modern-card p {
	font-size: 14.5px;
	color: #666;
	line-height: 1.6;
}

@media(max-width:768px) {
	.vciso-modern-section {
		padding: 60px 0;
	}

	.vciso-modern-title h2 {
		font-size: 28px;
	}
}


.vciso-zig {
	padding: 80px 0;
	position: relative;
}

.vciso-zig .vciso-head {
	text-align: center;
	max-width: 920px;
	margin: 0 auto 36px;
}

.vciso-zig .vciso-head h3 {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .9px;
	text-transform: uppercase;
	color: var(--primary);
	margin: 0 0 10px;
}

.vciso-zig .vciso-head h2 {
	font-size: clamp(28px, 3.4vw, 44px);
	font-weight: 900;
	margin: 0 0 12px;
	line-height: 1.15;
	color: var(--text-main);
}

.vciso-zig .vciso-head h2 span {
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.vciso-zig .vciso-head p {
	color: var(--text-muted);
	font-size: 16px;
	line-height: 1.75;
	margin: 0 auto;
	max-width: 860px;
}

.vciso-zig-wrap {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 0;
}

.vciso-zig-wrap:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.08);
}

.vciso-zig-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px 60px;
}

.vciso-item {
	display: flex;
	align-items: center;
	gap: 14px;
	position: relative;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .7s ease, transform .7s ease;
}

.vciso-item.is-in {
	opacity: 1;
	transform: translateY(0);
}

.vciso-item.left {
	justify-content: flex-end;
	padding-right: 22px;
}

.vciso-item.right {
	justify-content: flex-start;
	padding-left: 22px;
}

.vciso-item.left:after,
.vciso-item.right:after {
	content: "";
	position: absolute;
	top: 50%;
	width: 26px;
	height: 2px;
	background: rgba(0, 0, 0, 0.10);
	transform: translateY(-50%);
}

.vciso-item.left:after {
	right: -13px;
}

.vciso-item.right:after {
	left: -13px;
}

.vciso-dot {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	border-radius: 999px;
	background: var(--accent-secondary-color);
	box-shadow: 0 0 0 6px rgba(235, 126, 37, 0.12);
}

.vciso-pill {
	max-width: 470px;
	width: 100%;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.10);
	border-radius: 14px;
	padding: 18px 18px;
	line-height: 1.55;
	color: #000000;
	font-weight: 600;
	box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.18);
	position: relative;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.vciso-pill:hover {
	transform: translateY(-3px);
	border-color: rgba(37, 99, 235, 0.25);
	box-shadow: 0 18px 45px -22px rgba(37, 99, 235, 0.22);
}

.vciso-ibox {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex: 0 0 64px;
	box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.35);
}

.vciso-ibox i {
	font-size: 22px;
}

.c-red {
	background: var(--accent-gradient);
}

.c-orange {
	background: var(--accent-gradient);
}

.c-purple {
	background: var(--accent-gradient);
}

.c-indigo {
	background: var(--accent-gradient);
}

.c-sky {
	background: var(--accent-gradient);
}

.vciso-item.left {
	transform: translateY(16px) translateX(-10px);
}

.vciso-item.right {
	transform: translateY(16px) translateX(10px);
}

.vciso-item.is-in.left,
.vciso-item.is-in.right {
	transform: translateY(0) translateX(0);
}

@media(max-width: 991px) {
	.vciso-zig-wrap:before {
		display: none;
	}

	.vciso-dot {
		display: none;
	}

	.vciso-zig-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.vciso-item.left,
	.vciso-item.right {
		justify-content: flex-start;
		padding: 0;
	}

	.vciso-item.left:after,
	.vciso-item.right:after {
		display: none;
	}

	.vciso-pill {
		max-width: 100%;
	}
}

@media(max-width: 575px) {
	.vciso-ibox {
		width: 56px;
		height: 56px;
		border-radius: 14px;
	}

	.vciso-ibox i {
		font-size: 20px;
	}

	.vciso-pill {
		padding: 16px;
	}
}


  .cs-consult {
      padding: 90px 0;
      position: relative;
    }

    .cs-consult-head {
      text-align: center;
      max-width: 980px;
      margin: 0 auto 36px;
    }

    .cs-consult-head h3 {
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .9px;
      text-transform: uppercase;
      color: var(--primary);
      margin: 0 0 10px;
    }

    .cs-consult-head h2 {
      font-size: clamp(28px, 3.4vw, 44px);
      font-weight: 950;
      margin: 0 0 12px;
      line-height: 1.15;
      color: var(--text-main);
    }

    .cs-consult-head h2 span {
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .cs-consult-head p {
      margin: 0 auto;
      max-width: 860px;
      color: var(--text-muted);
      line-height: 1.75;
      font-size: 16px;
    }

    .cs-consult-wrap {
      display: grid;
      grid-template-columns: 420px 1fr;
      gap: 28px;
      align-items: start;
      max-width: 1200px;
      margin: 0 auto;
    }

    .cs-core {
      position: sticky;
      top: 100px;
      border-radius: 22px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: #fff;
      padding: 26px;
      box-shadow: 0 18px 50px -34px rgba(0, 0, 0, 0.25);
      overflow: hidden;
    }

    .cs-core-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 900;
      color: #000;
      background: rgba(37, 99, 235, 0.08);
      padding: 8px 12px;
      border-radius: 999px;
    }

    .cs-core-title {
      margin: 14px 0 8px;
      font-size: 20px;
      font-weight: 950;
    }

    .cs-core-sub {
      margin: 0 0 18px;
      line-height: 1.6;
      font-size: 14.8px;
    }

    .cs-ring {
      width: 100%;
      aspect-ratio: 1/1;
      border-radius: 999px;
      display: grid;
      place-items: center;
      position: relative;
      margin-top: 10px;
    }

    .cs-ring:before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 999px;
      border: 2px dashed rgb(240 117 4);
      animation: csSpin 18s linear infinite;
    }

    /* .cs-ring:after {
      content: "";
      position: absolute;
      inset: 6%;
      border-radius: 999px;
      border: 1px solid rgba(0, 0, 0, 0.08);
    } */

    @keyframes csSpin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .cs-shield {
      width: 86px;
      height: 86px;
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow: 0 22px 55px -35px rgba(37, 99, 235, 0.55);
      transform: translateZ(0);
      animation: csPulse 2.8s ease-in-out infinite;
    }

    @keyframes csPulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.12);
      }
    }

    .cs-shield i {
      font-size: 30px;
    }

    .cs-image {
      max-width: 300px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
    }

    .cs-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .cs-item {
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: #fff;
      border-radius: 18px;
      padding: 16px 16px;
      box-shadow: 0 14px 40px -28px rgba(0, 0, 0, 0.22);
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 14px;
      align-items: start;

      opacity: 0;
      transform: translateY(12px);
      transition: opacity .6s ease, transform .6s ease, border-color .25s ease;
    }

    .cs-item.in {
      opacity: 1;
      transform: translateY(0);
    }

    .cs-item:hover {
      border-color: rgba(37, 99, 235, 0.25);
    }

    .cs-ico {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 14px 30px -22px rgba(0, 0, 0, 0.35);
    }

    .cs-ico i {
      font-size: 20px;
    }

    .cs-tag {
      display: inline-flex;
      width: fit-content;
      max-width: 100%;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .2px;
      padding: 7px 10px;
      border-radius: 999px;
      color: #070127;
      margin-bottom: 8px;
      white-space: normal;
    }

    .cs-text p {
      margin: 0;
      line-height: 1.65;
      font-size: 14.8px;
    }

    .t-red {
      background: #7e9cb933;
    }

    .t-blue {
      background: #7e9cb933;
    }

    .t-orange {
      background: #7e9cb933;
    }

    .t-navy {
      background: #7e9cb933;
    }

    .t-cyan {
      background: #7e9cb933;
    }

    .i-red {
      background: var(--accent-gradient);
    }

    .i-blue {
      background: var(--accent-gradient);
    }

    .i-orange {
      background: var(--accent-gradient);
    }

    .i-navy {
      background: var(--accent-gradient);
    }

    .i-cyan {
      background: var(--accent-gradient);
    }

    @media(max-width: 991px) {
      .cs-consult {
        padding: 60px 0;
      }

      .cs-consult-wrap {
        grid-template-columns: 1fr;
      }

      .cs-core {
        position: relative;
        top: 0;
      }
    }

	 .as-strip {
      padding: 80px 0;
    }

    .as-strip-head {
      max-width: 920px;
      margin: 0 auto 26px;
      text-align: left;
    }

    .as-strip-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 28px;
    }

    .as-strip-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .35s ease, transform .35s ease;
    }

    .as-strip-item:hover {
      transform: translateY(-10px) !important;
      background: var(--accent-gradient);

    }

    .as-strip-item:hover .red,
    .as-strip-item:hover .orange,
    .as-strip-item:hover .purple,
    .as-strip-item:hover .navy {
      background: #fff !important;
    }

    .as-strip-item:hover .as-strip-ico {
      color: var(--accent-secondary-color);
    }

    .as-strip-item:hover .as-strip-title {
      color: #fff;
    }

    .as-strip-item.in {
      opacity: 1;
      transform: translateY(0);
    }

    .as-strip-bar {
      width: 6px;
      height: 44px;
      border-radius: 999px;
      flex: 0 0 6px;
    }

    .as-strip-ico {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      flex: 0 0 38px;
    }

    .as-strip-ico i {
      font-size: 16px;
    }

    .as-strip-title {
      margin: 0;
      font-size: 15.5px;
      font-weight: 750;
      color: #222121;
      line-height: 1.35;
    }

    .red {
      background: var(--accent-gradient);
    }

    .orange {
      background: var(--accent-gradient);
    }

    .purple {
      background: var(--accent-gradient);
    }

    .navy {
      background: var(--accent-gradient);
    }

    @media(max-width: 991px) {
      .as-strip {
        padding: 60px 0;
      }

      .as-strip-grid {
        grid-template-columns: 1fr;
      }

      .as-strip-head {
        text-align: center;
      }

      .as-strip-head p {
        margin: 0 auto;
      }
    }


	.dp-sec {
      padding: 80px 0;
    }

    .dp-head {
      max-width: 920px;
      margin: 0 auto 26px;
      text-align: left;
    }

    .dp-head h2 {
      font-size: clamp(28px, 3.4vw, 44px);
      font-weight: 950;
      margin: 0;
      color: var(--text-main);
    }

    .dp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 18px;
    }

    .dp-item {
      position: relative;
      padding: 18px 16px 18px 18px;
      border-left: 6px solid rgba(0, 0, 0, 0.12);
      background: rgb(235 244 253 / 65%);
      backdrop-filter: blur(8px);
      border-radius: 14px;
      transition: border-color .25s ease, transform .25s ease;

      opacity: 0;
      transform: translateY(6px);
      transition: opacity .35s ease, transform .35s ease, border-color .25s ease;
    }

    .dp-item.in {
      opacity: 1;
      transform: translateY(0);
    }

    .dp-item:hover {
      transform: translateY(-2px);
    }

    .dp-top {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .dp-dot {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: currentColor;
      box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.06);
      flex: 0 0 12px;
    }

    .dp-title {
      margin: 0;
      font-size: 16px;
      line-height: 1.3;
    }

    .dp-blue {
      border-left-color: #2f2bd6;
    }

    .dp-blue .dp-dot {
      color: #2f2bd6;
    }

    .dp-red {
      border-left-color: #b53a2a;
    }

    .dp-red .dp-dot {
      color: #b53a2a;
    }

    .dp-navy {
      border-left-color: #1f2a6b;
    }

    .dp-navy .dp-dot {
      color: #1f2a6b;
    }

    .dp-orange {
      border-left-color: #d46b2c;
    }

    .dp-orange .dp-dot {
      color: #d46b2c;
    }

    @media(max-width: 991px) {
      .dp-sec {
        padding: 60px 0;
      }

      .dp-head {
        text-align: center;
      }

      .dp-grid {
        grid-template-columns: 1fr;
      }
    }


	 .ct-premium {
      padding: 80px 0;
    }

    .ct-premium-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
    }

    .ct-tile {
    position: relative;
    padding: 18px;
    border-radius: 7px;
    min-height: 92px;
    background: #ffffff;
    border: 0;
    outline: none;
    box-shadow: 0px 0px 10px 0px #bfbfbf;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease, border-color .25s ease;
    }

    .ct-tile.in {
      opacity: 1;
      transform: translateY(0);
    }

    .ct-tile:hover {
      border-bottom-color: rgba(37, 99, 235, 0.35);
    }

    .ct-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .ct-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--primary);
      flex: 0 0 10px;
    }

    .ct-title {
      margin: 0;
      font-size: 15.5px;
	  color: #000;
      font-weight: 900;
      line-height: 1.35;
    }

    .ct-accent {
      position: absolute;
      left: 6px;
      bottom: 0;
      height: 3px;
      width: 0%;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      transition: width .35s ease;
    }

    .ct-tile:hover .ct-accent {
      width: 62%;
    }

    .ct-wm {
      position: absolute;
      right: 6px;
      top: 6px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius:10px;
      color: #ffffff;
      pointer-events: none;
	  background: var(--accent-gradient);
    }

    .ct-wm i {
      font-size: 15px;
    }

    .ct-red .ct-dot {
      background: var(--accent-gradient);
    }

    .ct-orange .ct-dot {
      background: var(--accent-gradient);
    }

    .ct-purple .ct-dot {
      background: var(--accent-gradient);
    }

    .ct-navy .ct-dot {
      background: var(--accent-gradient);
    }
    @media(max-width: 1100px) {
      .ct-premium-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media(max-width: 850px) {
      .ct-premium {
        padding: 60px 0;
      }

      .ct-premium-head {
        text-align: center;
      }

      .ct-premium-head p {
        margin: 0 auto;
      }

      .ct-premium-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width: 520px) {
      .ct-premium-grid {
        grid-template-columns: 1fr;
      }
    }