:root {

	--brand-primary: #0B3CDC;
	--brand-hover: #4D71E5;
	/* --brand-hover: #4338ca; */
	--brand-dark: #0f172a;
	--text-main: #1e293b;
	--text-muted: #64748b;
	--bg-light: #ffffff;
	--bg-subtle: #f8fafc;
	--primary-l: #EEF2FF;
	--primary: #0B3CDC;
	--primary-d: #3730A3;
	--primary-m: #C7D2FE;
	--white: #ffffff;
	--border: #E2E8F0;
	--radius: 12px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--paper-warm: #fbfaf6;
	--line: #ddd8cb;
	--shadow: 0 24px 60px rgba(7, 17, 17, 0.14);

}


body {

	background-color: var(--bg-light);

	color: var(--text-main);

	font-family: 'Plus Jakarta Sans', sans-serif;

	line-height: 1.6;

}


/* Navbar Refinement */

.navbar {

	background: rgba(255, 255, 255, 0.8) !important;

	backdrop-filter: blur(12px);

	-webkit-backdrop-filter: blur(12px);

	border-bottom: 1px solid rgba(0, 0, 0, 0.05);

	padding: 15px 0;

}


.navbar-brand {
	font-weight: 800;
	color: var(--brand-dark) !important;
	letter-spacing: -0.5px;
}

.nav-link {
	color: var(--text-main) !important;
	font-weight: 600;
	font-size: 0.95rem;
	margin: 0 12px;
	transition: var(--transition);
}

.nav-link:hover {
	color: var(--brand-primary) !important;
}


/* Hero Refinement */

.hero {

	padding: 160px 0 100px;

	background: radial-gradient(circle at 90% 10%, rgba(79, 70, 229, 0.08), transparent 40%);

}


.hero h1 {

	font-size: clamp(2.8rem, 6vw, 4.5rem);

	font-weight: 800;

	color: var(--brand-dark);

	letter-spacing: -2px;

	line-height: 1.1;

}


.accent-text {
	color: var(--brand-primary);
}


 /* ── hero header animation ── */
 /* ── hero header animation ── */
 /* ── hero header animation ── */
 /* ── hero header animation ── */
 /* ── hero header animation ── */

  .hero-wrapper {
    position: relative;
  }

  /* ── background animations ── */
  .bg-canvas {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
  }


  /* small filled dots floating up */
  .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(99,102,241,0.85);
    animation: particleRise linear infinite;
  }
  @keyframes particleRise {
    0%   { transform:translateY(0); opacity:0; }
    15%  { opacity:1; }
    85%  { opacity:0.4; }
    100% { transform:translateY(-380px); opacity:0; }
  }


  .reviews-section .carousel-indicators [data-bs-target] {
	background-color: #4f46e5;
  }




/* Card Refinement */

.service-card,
.benefit-card {

	background: #ffffff;

	border: 1px solid #eef2f6;

	border-radius: 24px;

	padding: 40px;

	transition: var(--transition);

	height: 100%;

}


.service-card:hover {

	border-color: rgba(79, 70, 229, 0.2);

	box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.1);

	transform: translateY(-10px);

}


/* Button Refinement */

.btn-brand {

	background: var(--brand-primary);

	color: white;

	padding: 14px 32px;

	border-radius: 12px;

	font-weight: 700;

	border: none;

	transition: var(--transition);

}


.btn-brand:hover {

	background: var(--brand-dark);

	color: white;

	transform: translateY(-2px);

	box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);

}


.btn-outline-custom {

	border: 2px solid var(--brand-dark);

	border-radius: 12px;

	padding: 14px 32px;

	font-weight: 700;

	transition: var(--transition);

}


.btn-outline-custom:hover {

	background: var(--brand-dark);

	color: white;

}


/* Typography & Sections */

.section-tag {

	color: var(--brand-primary);

	font-weight: 800;

	font-size: 0.85rem;

	text-transform: uppercase;

	letter-spacing: 2px;

	margin-bottom: 16px;

	display: block;

}


.section-title {

	font-size: clamp(2rem, 4vw, 3rem);

	font-weight: 800;

	color: var(--brand-dark);

	letter-spacing: -1px;

}


/* Custom Icon Styling */

.icon-box {

	width: 60px;

	height: 60px;

	display: flex;

	align-items: center;

	justify-content: center;

	background: rgba(79, 70, 229, 0.05);

	border-radius: 16px;

	margin-bottom: 24px;

	color: var(--brand-primary);

}


/* Team Section */

.avatar-placeholder {

	width: 100px;

	height: 100px;

	background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);

	border-radius: 50%;

	margin: 0 auto 20px;

}

/* Footer CTA */

.cta-box {

	background: var(--brand-dark);

	color: white;

	padding: 100px 40px;

	position: relative;

	overflow: hidden;

}

.whatsapp-contact {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
	transition: var(--transition);
}

.whatsapp-contact:hover {
	background: #25d366;
	border-color: #25d366;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(37, 211, 102, 0.24);
}

.whatsapp-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #25d366;
	color: #ffffff;
	font-size: 17px;
}

.whatsapp-contact:hover .whatsapp-icon {
	background: #ffffff;
	color: #25d366;
}

.floating-whatsapp {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 1050;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 54px;
	padding: 12px 18px 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	background: #25d366;
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 18px 38px rgba(37, 211, 102, 0.32);
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-whatsapp i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	font-size: 20px;
}

.floating-whatsapp:hover {
	transform: translateY(-3px);
	background: #1ebe5d;
	color: #ffffff;
	box-shadow: 0 24px 52px rgba(37, 211, 102, 0.42);
}

.footer-policy-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 18px;
}

.footer-policy-links a {
	color: var(--text-muted);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
	transition: var(--transition);
}

.footer-policy-links a:hover {
	color: var(--brand-primary);
}

.site-footer {
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
}

.footer-contact {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 36px;
	align-items: start;
	margin-bottom: 36px;
	text-align: left;
}

.footer-contact-copy h2 {
	margin-bottom: 14px;
	color: var(--brand-dark);
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	font-weight: 800;
	letter-spacing: 0;
}

.footer-contact-copy p {
	max-width: 520px;
	margin-bottom: 22px;
	color: var(--text-muted);
	font-size: 1rem;
}

.footer-contact-list {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-contact-list li,
.footer-contact-list a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text-main);
	font-weight: 700;
	text-decoration: none;
}

.footer-contact-list i {
	width: 18px;
	height: 18px;
	color: var(--brand-primary);
}

.footer-contact-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	padding: 24px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.footer-contact-form .form-group {
	display: grid;
	gap: 7px;
}

.footer-contact-form .form-group.full-width,
.footer-contact-form .contact-form-status,
.footer-contact-form .contact-submit-wrap {
	grid-column: 1 / -1;
}

.footer-contact-form label {
	color: var(--brand-dark);
	font-size: 0.88rem;
	font-weight: 800;
}

.footer-contact-form input,
.footer-contact-form textarea {
	width: 100%;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #ffffff;
	color: var(--text-main);
	font: inherit;
	padding: 12px 14px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.footer-contact-form textarea {
	min-height: 132px;
	resize: vertical;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
	border-color: var(--brand-primary);
	box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.footer-contact-form input.is-invalid,
.footer-contact-form textarea.is-invalid {
	border-color: #dc2626;
	box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.field-error {
	min-height: 18px;
	color: #dc2626;
	font-size: 0.78rem;
	font-weight: 700;
}

.contact-form-status {
	min-height: 22px;
	margin: 0;
	font-size: 0.9rem;
	font-weight: 800;
}

.contact-form-status.success {
	color: #047857;
}

.contact-form-status.error {
	color: #dc2626;
}

.contact-submit-wrap {
	display: flex;
	justify-content: flex-start;
}

.footer-contact-form button[disabled] {
	cursor: wait;
	opacity: 0.72;
}

.form-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.footer-bottom {
	padding: 26px 20px 48px;
	border-top: 0;
	background: #ffffff;
	text-align: center;
}

#contact.contact-section {
	padding-top: 0 !important;
	background: #ffffff;
}

#contact .full-container {
	width: 100%;
}

#contact .cta-box {
	padding: 92px 24px 0;
	background:
		linear-gradient(135deg, #0f172a 0%, #10235f 52%, #0b3cdc 100%);
	color: #ffffff;
}

#contact .cta-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 64px 64px;
	opacity: 0.28;
	pointer-events: none;
}

#contact .cta-box > * {
	position: relative;
	z-index: 1;
}

#contact .contact-eyebrow {
	margin-bottom: 14px;
	color: #bfdbfe;
	letter-spacing: 1.8px;
}

#contact .section-title {
	max-width: 760px;
	margin: 0 auto 18px !important;
	line-height: 1.12;
	letter-spacing: 0;
}

#contact .contact-lead {
	max-width: 700px;
	margin: 0 auto 28px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.08rem;
	line-height: 1.75;
}

#contact .contact-channels {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 42px;
}

#contact .contact-channel,
#contact .whatsapp-contact {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 46px;
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
	box-shadow: none;
}

#contact .contact-channel i {
	width: 18px;
	height: 18px;
	color: #93c5fd;
}

#contact .whatsapp-icon {
	width: 28px;
	height: 28px;
	background: rgba(37, 211, 102, 0.16);
	color: #86efac;
}

#contact .whatsapp-contact:hover {
	border-color: rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
	box-shadow: none;
}

#contact .whatsapp-contact:hover .whatsapp-icon {
	background: rgba(37, 211, 102, 0.22);
	color: #bbf7d0;
}

#contact .cta-box .site-footer {
	max-width: 940px;
	margin: 0 auto;
	padding: 0 0 0 !important;
	border-top: 0;
	background: transparent;
}

#contact .cta-box .footer-contact-form {
	gap: 18px 20px;
	padding: 32px;
	border: 1px solid rgba(226, 232, 240, 0.92);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 28px 80px rgba(2, 6, 23, 0.28);
	text-align: left;
}

#contact .cta-box .footer-contact-form label {
	color: #0f172a;
	font-size: 0.86rem;
	letter-spacing: 0;
}

#contact .cta-box .footer-contact-form input,
#contact .cta-box .footer-contact-form textarea {
	min-height: 52px;
	border-color: #cbd5e1;
	background: #f8fafc;
	color: #0f172a;
}

#contact .cta-box .footer-contact-form input::placeholder,
#contact .cta-box .footer-contact-form textarea::placeholder {
	color: #94a3b8;
}

#contact .cta-box .footer-contact-form textarea {
	min-height: 150px;
}

#contact .cta-box .footer-contact-form input:focus,
#contact .cta-box .footer-contact-form textarea:focus {
	border-color: var(--brand-primary);
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(11, 60, 220, 0.12);
}

#contact .cta-box .footer-contact-form button {
	min-width: 170px;
	box-shadow: 0 14px 28px rgba(11, 60, 220, 0.18);
}

#contact .cta-box .footer-contact-form button:hover {
	background: var(--brand-dark);
	color: #ffffff;
	transform: translateY(-2px);
}

#contact .cta-box .footer-bottom {
	width: 100vw;
	margin: 38px 0 0 50%;
	padding: 28px 20px 34px;
	border-top: 1px solid #e2e8f0;
	background: #ffffff;
	transform: translateX(-50%);
}

#contact .cta-box .footer-bottom p {
	color: #64748b !important;
}

#contact .cta-box .footer-policy-links a {
	color: #475569;
}

#contact .cta-box .footer-policy-links a:hover {
	color: var(--brand-primary);
}

.legal-page {
	background: #ffffff;
}

.legal-hero {
	padding: 150px 0 70px;
	background:
		radial-gradient(circle at 88% 12%, rgba(79, 70, 229, 0.12), transparent 34%),
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.legal-hero h1 {
	max-width: 860px;
	margin: 18px 0 18px;
	color: var(--brand-dark);
	font-size: clamp(2.4rem, 5vw, 4rem);
	font-weight: 800;
	letter-spacing: -1px;
	line-height: 1.08;
}

.legal-hero p {
	max-width: 760px;
	margin: 0;
	color: var(--text-muted);
	font-size: 1.1rem;
	line-height: 1.7;
}

.legal-content-section {
	padding: 70px 0;
}

.legal-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 42px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.legal-content h2 {
	margin: 34px 0 12px;
	color: var(--brand-dark);
	font-size: 1.35rem;
	font-weight: 800;
}

.legal-content h2:first-of-type {
	margin-top: 22px;
}

.legal-content h3 {
	margin: 22px 0 8px;
	color: var(--brand-dark);
	font-size: 1rem;
	font-weight: 800;
}

.legal-content p {
	margin-bottom: 14px;
	color: #475569;
	line-height: 1.75;
}

.legal-content ul {
	display: grid;
	gap: 8px;
	margin: 12px 0 18px;
	padding-left: 22px;
	color: #475569;
	line-height: 1.7;
}

.legal-content a {
	color: var(--brand-primary);
	font-weight: 700;
	text-decoration: none;
}

.legal-content a:hover {
	color: var(--brand-hover);
}

@media (max-width: 575px) {
	.legal-hero {
		padding: 125px 0 50px;
	}

	.legal-content {
		padding: 28px;
	}
}


/* Reviews Section Styling */

/* Reviews Section Styling */

/* Reviews Section Styling */

/* Reviews Section Styling */


.reviews-section {

	background-color: var(--bg-subtle);

	border-top: 1px solid #eef2f6;

	border-bottom: 1px solid #eef2f6;

	padding: 80px 0;

}


.review-stars {

	color: #f59e0b;
	/* Golden star color */

	font-size: 1.5rem;

	letter-spacing: 2px;

}


.testimonial-placeholder {

	font-style: italic;

	color: var(--text-muted);

	border-left: 3px solid var(--brand-primary);

	padding-left: 20px;

	margin: 30px auto;

	max-width: 700px;

}


/* services Section Styling */

/* services Section Styling */

/* services Section Styling */

/* services Section Styling */

.section {

	position: relative;

}


.features.explore-feature {

	-webkit-transition: all .5s ease;

	transition: all .5s ease
}


.features.explore-feature .icons {

	height: 80px;

	width: 80px;

	display: -webkit-inline-box !important;

	display: -ms-inline-flexbox !important;

	display: inline-flex !important;

	-webkit-box-pack: center;

	-ms-flex-pack: center;

	justify-content: center;

	-webkit-box-align: center;

	-ms-flex-align: center;

	align-items: center;

	-webkit-transition: all .5s ease;

	transition: all .5s ease
}


.features.explore-feature:hover {

	-webkit-box-shadow: 0 10px 25px rgba(60, 72, 88, .15) !important;

	box-shadow: 0 10px 25px rgba(60, 72, 88, .15) !important
}


.features .title,
.key-feature .title {

	font-size: 18px !important
}


.features .icon,
.key-feature .icon {

	height: 45px;

	width: 45px;

	min-width: 45px;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;

	-webkit-box-align: center;

	-ms-flex-align: center;

	align-items: center;

	-webkit-box-pack: center;

	-ms-flex-pack: center;

	justify-content: center
}


.card .card-body {

	padding: 1.5rem;

}


/* services Section Styling */

/* services Section Styling */

/* services Section Styling */

/* services Section Styling */

.hm5-bg {

	background: #F5F5F5 !important;

}


.vl-service4-area {

	padding: 100px 40px 100px;

	overflow: hidden;

}


.service4-box {

	border-right: 1px solid #e6ebed;

	border-bottom: 1px solid #e6ebed;

	padding: 40px 0px;

	transition: all 0.4s;

}

.service4-box:hover {

	background: #FFFFFF;

	transition: all 0.4s;

}

.service4-box:hover .service4-box-icon {

	transform: translateY(-10px);

	transition: all 0.4s;

}

.service4-box:hover .service4-content-wrap {

	transform: translateY(-10px);

	transition: all 0.4s;

}

.service4-box:hover .service4_learn {

	transform: translateY(-10px);

	transition: all 0.4s;

}

.service4-box-icon {

	transition: all 0.4s;

}

.service4-box-icon svg {

	margin-bottom: 40px;

}

.service4-box .service4-content {

	color: var(--text-main);

	font-size: 24px;

	font-weight: 700;

	line-height: 24px;

	transition: all 0.4s;

	text-decoration: none;

}


/* Why Clients Trust Us */

/* Why Clients Trust Us */

/* Why Clients Trust Us */

/* Why Clients Trust Us */

.about2-images {

	height: 570px;

	position: relative;

}

.about2-images .image1 {

	position: absolute;

	top: 0;

	left: 0;

	z-index: 2;

	background: radial-gradient(circle at 90% 10%, rgba(79, 70, 229, 0.08), transparent 40%);

}

.about2-images .image2 {

	position: absolute;

	bottom: 0;

	right: 0;

	background: radial-gradient(circle at 90% 10%, rgba(79, 70, 229, 0.08), transparent 40%);

	z-index: 1;

}

.about2-check-list {

	margin-top: 10px;

}

.about2-check-list ul li {

	font-style: normal;

	font-weight: 500;

	font-size: 18px;

	line-height: 30px;

	/* 100% */

	padding-top: 16px;

}

.about2-check-list ul li .check {

	display: inline-block;

	height: 20px;

	width: 20px;

	text-align: center;

	line-height: 20px;

	font-size: 12px;

	background-color: var(--brand-primary);

	color: var(--bg-light);

	margin-right: 5px;

	border-radius: 50%;

}

.about2 .audience-area {

	position: relative;

	text-align: center;

	margin-top: 40px;

}

.about2 .audience-area h3 {

	color: var(--vtc-bg-main4);

	font-size: var(--f-fs-font-60);

	font-style: normal;

	font-weight: var(--f-fw-semibold);

	line-height: var(--f-fs-font-60);

	/* 100% */

}

.about2 .audience-area p {

	color: var(--vtc-text-pera1);

	font-size: var(--f-fs-font-16);

	font-style: normal;

	font-weight: var(--f-fw-normal);

	line-height: var(--f-fs-font-16);

	/* 100% */

	padding-top: 8px;

}

.about2 .audience-area .shape-bg1 {

	height: 75px;

	width: 98px;

	position: absolute;

	top: -24px;

	left: 24px;

}

.audience-area .shape-bg1 .stop-color2 {

	stop-color: rgba(21, 95, 255, 0.10);

}

.audience-area .shape-bg1 .stop-color1 {

	stop-color: rgba(21, 95, 255, 0.10);

}


/* our team */

/* our team */

/* our team */

/* our team */


#team .card {

	transition: transform 0.3s ease, box-shadow 0.3s ease;

	background: #ffffff;

}


#team .card:hover {

	transform: translateY(-5px);

	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;

}


.team-img-wrapper {

	flex-shrink: 0;

}


.btn-outline-light.text-dark:hover {

	background-color: var(--brand-primary);

	color: white !important;

	border-color: var(--brand-primary);

}


/* why work with us */

/* why work with us */

/* why work with us */

/* why work with us */


.bg-subtle {

	background-color: #f8f9fa;

}


.benefit-card {

	background: #ffffff;

	padding: 40px 30px;

	border-radius: 20px;

	border: 1px solid rgba(0, 0, 0, 0.05);

	text-align: center;

	height: 100%;

	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

	position: relative;

	z-index: 1;

}


/* The Hover Effect */

.benefit-card:hover {

	transform: translateY(-10px);

	background: #ffffff;

	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

}


/* Icon Styling */

.benefit-icon {

	width: 70px;

	height: 70px;

	background: rgba(13, 110, 253, 0.05);
	/* Light version of brand blue */

	color: #0d6efd;

	display: flex;

	align-items: center;

	justify-content: center;

	border-radius: 16px;

	margin: 0 auto 25px;

	transition: all 0.3s ease;

}


.benefit-icon i {

	width: 62px;

	height: 62px;

}


.benefit-card svg {

	width: 62px;

	height: 62px;

	color: var(--brand-primary);

}


/* Icon change on hover */

.benefit-card:hover .benefit-icon {

	background: #0d6efd;

	color: #ffffff;

	transform: rotate(10deg);

}


.benefit-card h5 {

	margin-bottom: 15px;

	transition: color 0.3s ease;

}


/* why work with us */

/* why work with us */

/* why work with us */

/* why work with us */


.process-card {

	position: relative;

	padding: 30px 20px;

	background: #ffffff;

	border-radius: 15px;

	text-align: center;

	height: 100%;

	transition: all 0.3s ease;

	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

}


.process-step {

	position: absolute;

	top: -15px;

	left: 50%;

	transform: translateX(-50%);

	background: var(--brand-primary);

	color: white;

	width: 35px;

	height: 35px;

	border-radius: 50%;

	display: flex;

	align-items: center;

	justify-content: center;

	font-weight: 800;

	font-size: 0.85rem;

}


.process-icon svg {

	color: var(--brand-primary);

	margin-bottom: 20px;

	margin-top: 30px;

}


.process-icon i {

	width: 45px;

	height: 45px;

}


.process-card h5 {

	font-weight: 600;

	font-size: 1.25rem;

	margin-bottom: 12px;

}


/* Hover Effect for Process */

.process-card:hover {

	background: #F6F6FE;

	transform: translateY(-5px);

}


/* Connecting Line for Desktop */

@media (min-width: 992px) {

	.process-row {

		position: relative;

	}

	.process-row::before {

		content: "";

		position: absolute;

		top: 50%;

		left: 10%;

		right: 10%;

		height: 2px;

		background: repeating-linear-gradient(to right, #e0e0e0, #e0e0e0 5px, transparent 5px, transparent 10px);

		z-index: 0;

	}

	.process-card {

		z-index: 1;

	}

}


/* About Us Styling */

.about-image-stack {

	position: relative;

	padding: 20px;

}


.main-about-img {

	border-radius: 30px;

	background: #f8f9fa;

	padding: 40px;

}


.experience-badge {

	position: absolute;

	bottom: 10%;

	right: 5%;

	background: #ffffff;

	padding: 25px;

	border-radius: 20px;

	border-left: 5px solid var(--brand-primary);

	text-align: center;

	animation: float 3s ease-in-out infinite;

}

.offices-panel {
	position: relative;
	overflow: hidden;
	padding: 32px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background:
		linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(255, 255, 255, 0) 42%),
		#ffffff;
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}

.offices-panel::after {
	content: "";
	position: absolute;
	right: -42px;
	top: -42px;
	width: 120px;
	height: 120px;
	border: 18px solid rgba(79, 70, 229, 0.08);
	border-radius: 50%;
	pointer-events: none;
}

.offices-panel-header {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 12px;
}

.offices-panel-header span,
.office-region {
	color: var(--brand-primary);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.offices-panel h3 {
	margin: 8px 0 0;
	color: #020617;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.2;
}

.offices-panel p {
	position: relative;
	z-index: 1;
	margin-bottom: 24px;
	color: #475569;
	font-size: 16px;
	line-height: 1.6;
}

.offices-panel-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--primary-l);
	color: var(--brand-primary);
}

.offices-panel-icon svg {
	width: 24px;
	height: 24px;
}

.office-list {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 14px;
}

.office-list-item {
	padding: 18px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: rgba(248, 250, 252, 0.86);
}

.office-region {
	display: block;
	margin-bottom: 12px;
	color: #020617;
}

.office-place {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #334155;
	font-size: 17px;
	font-weight: 600;
}

.office-place svg {
	width: 18px;
	height: 18px;
	color: var(--brand-primary);
}

@media (max-width: 575px) {
	.offices-panel {
		padding: 24px;
	}

	.offices-panel h3 {
		font-size: 24px;
	}
}


@keyframes float {

	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-15px);
	}

	100% {
		transform: translateY(0px);
	}

}


.section-tag {

	display: inline-block;

	color: var(--brand-primary);

	background: rgba(13, 110, 253, 0.1);

	padding: 6px 16px;

	border-radius: 50px;

	font-size: 0.85rem;

	font-weight: 700;

	text-transform: uppercase;

	letter-spacing: 1px;

	margin-bottom: 1rem;

}


/* ── HERO ── */
.hero-1 {
	background: var(--white);
	text-align: center;
	padding: 160px 0 100px;
	border-bottom: 1px solid var(--border);
	position: relative;
	overflow: hidden;
}

.hero-1::before {
	content: '';
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: 500px;
	background: radial-gradient(ellipse, rgba(79, 70, 229, 0.07) 0%, transparent 65%);
	pointer-events: none;
}

.hero-1 h1 .accent {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #3f37b7 0%, #428CFD 50%, #3f37b7 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5.0s linear 0.9s infinite;
  }
  .hero-1 h1 .accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #534AB7, #1D9E75);
    transform-origin: left;
    animation: underlineGrow 0.6s cubic-bezier(0.22,1,0.36,1) 0.85s both;
  }

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
  }

@keyframes underlineGrow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }



.hero-tag-1 {
	display: inline-block;
	background: var(--primary-l);
	border: 1px solid var(--primary-m);
	color: var(--primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 5px 18px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.hero-1 h1 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: clamp(38px, 5vw, 58px);
	font-weight: 700;
	color: var(--dark);
	line-height: 1.1;
	margin-bottom: 16px;
	letter-spacing: 0.3px;
}

.hero-1 h1 span {
	color: var(--primary);
}

.hero-1 p {
	color: var(--muted);
	font-size: 16px;
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.7;
}

/* rotating rings */
  .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed;
    z-index: 0;
    pointer-events: none;
    top: 50%; left: 50%;
    animation: ringPulse 4s ease-in-out infinite;
  }
  .ring-1 {
    width: 890px; height: 890px;
    border-color: #534AB7;
    opacity: 0.12;
    animation: ringRotate 28s linear infinite, ringPulse 5s ease-in-out infinite;
  }
  .ring-2 {
    width: 1070px; height: 1070px;
    border-color: #1D9E75;
    opacity: 0.1;
    animation: ringRotateRev 36s linear infinite, ringPulse 6s ease-in-out infinite 1s;
  }
  .ring-3 {
    width: 1220px; height: 1220px;
    border-color: #D85A30;
    opacity: 0.07;
    animation: ringRotate 50s linear infinite, ringPulse 7s ease-in-out infinite 2s;
  }

  /* ── BG ANIMATIONS ── */
  @keyframes ringRotate {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg); }
  }
  @keyframes ringRotateRev {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(-360deg); }
  }
  @keyframes ringPulse {
    0%, 100% { opacity: 0.18; }
    50%       { opacity: 0.38; }
  }

  /* floating particles */
  .particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .p {
    position: absolute;
    border-radius: 50%;
  }  

@keyframes particleDrift {
    0%   { transform: translateY(0px) translateX(0px) scale(1);   opacity: 0.55; }
    33%  { transform: translateY(-22px) translateX(10px) scale(1.15); opacity: 0.9; }
    66%  { transform: translateY(-10px) translateX(-8px) scale(0.9);  opacity: 0.6; }
    100% { transform: translateY(0px) translateX(0px) scale(1);   opacity: 0.55; }
  }  



/* Container to center the down arrow (in hero section) */
.arrow-container {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	cursor: pointer;
	width: 60px; 
  	height: 60px;	
}

/* The Arrow Icon */
.down-arrow {
  width: 20px;
  height: 20px;
  border-bottom: 5px solid #4F46E5; /* Arrow color */
  border-right: 5px solid #4F46E5;   /* Arrow color */
  transform: rotate(45deg);          
  transition: border-color 0.3s ease; /* Smooth color change on hover */
  
  /* Link the animation */
  animation: bounce 2s infinite;
}

/* The Bounce Animation Loop */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-15px) rotate(45deg);
  }
  60% {
    transform: translateY(-7px) rotate(45deg);
  }
}  

/* ── SECTION ── */
.portfolio-section {
	padding: 72px 56px 88px;
	max-width: 1200px;
	margin: 0 auto;
}

.section-label {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 48px;
}

.section-label::before {
	content: '';
	display: block;
	width: 4px;
	height: 34px;
	background: var(--primary);
	border-radius: 2px;
}

.section-label h2 {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: var(--dark);
	letter-spacing: 0.3px;
}

/* ── GRID ── */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* ── CARD ── */
.portfolio-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .25s, box-shadow .25s, border-color .25s;
}

.portfolio-card:hover {
	transform: translateY(-5px);
	border-color: var(--primary-m);
	box-shadow: 0 16px 40px rgba(79, 70, 229, 0.12);
}

/* Heading */
.card-heading {
	padding: 18px 20px 14px;
	border-bottom: 1px solid var(--border);
}

.card-number {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--primary);
	text-transform: uppercase;
	margin-bottom: 4px;
}

.card-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--dark);
	line-height: 1.2;
}

/* Image wrapper */
.card-image-wrap {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.card-image {
	width: 100%;
	/* aspect-ratio: 16 / 10; */
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}

.card-image-wrap:hover .card-image {
	transform: scale(1.05);
}

/* Overlay on hover */
.card-overlay {
	position: absolute;
	inset: 0;
	background: rgba(79, 70, 229, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .3s;
}

.card-image-wrap:hover .card-overlay {
	opacity: 1;
}

.overlay-icon {
	width: 52px;
	height: 52px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0.8);
	transition: transform .25s;
}

.card-image-wrap:hover .overlay-icon {
	transform: scale(1);
}

.overlay-icon svg {
	width: 24px;
	height: 24px;
	stroke: var(--primary);
	fill: none;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}


/* Footer */
.card-footer {
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	background: var(--white);
}

.card-tag {
	font-size: 12px;
	color: var(--primary);
	font-weight: 600;
	background: var(--primary-l);
	padding: 3px 10px;
	border-radius: 20px;
	letter-spacing: 0.3px;
}

.card-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 18px;
	background: var(--primary);
	border: none;
	border-radius: 7px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.3px;
	cursor: pointer;
	transition: background .2s, transform .15s;
}

.card-btn:hover {
	background: var(--primary-d);
	transform: scale(1.03);
}

.card-btn svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform .2s;
}

.card-btn:hover svg {
	transform: translateX(2px);
}

/* ── LIGHTBOX ── */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}

.lightbox.open {
	opacity: 1;
	pointer-events: all;
}

.lb-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.88);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.lb-box {
	position: relative;
	z-index: 2;
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	max-width: 820px;
	width: 100%;
	box-shadow: 0 32px 80px rgba(15, 23, 42, 0.45);
	transform: scale(0.92) translateY(20px);
	transition: transform .32s cubic-bezier(.34, 1.56, .64, 1), opacity .3s;
	opacity: 0;
	background-color: #f8f9fa;
}

.lightbox.open .lb-box {
	transform: scale(1) translateY(0);
	opacity: 1;
}

.lb-img {
	/* width: 100%;
	max-height: 500px;
	object-fit: cover;
	display: block; */
	width: auto;
	max-height: 500px;
	object-fit: cover;
	display: block;
	margin: auto;
}

.lb-info {
	padding: 20px 24px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--border);
}



.lb-num {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--primary);
	text-transform: uppercase;
	margin-bottom: 3px;
}

.lb-title {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--dark);
}

.lb-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	background: rgba(15, 23, 42, 0.55);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s;
}

.lb-close:hover {
	background: var(--primary);
}

.lb-close svg {
	width: 18px;
	height: 18px;
	stroke: #fff;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

/* Prev / Next arrows */
.lb-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 42px;
	height: 42px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
	transition: background .2s, border-color .2s;
}

.lb-arrow:hover {
	background: var(--primary);
	border-color: var(--primary);
}

.lb-arrow:hover svg {
	stroke: #fff;
}

.lb-arrow svg {
	width: 18px;
	height: 18px;
	stroke: var(--brand-dark);
	fill: none;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: stroke .2s;
}

.lb-prev {
	left: -20px;
}

.lb-next {
	right: -20px;
}


/* ── RESPONSIVE ── */
@media (max-width: 960px) {
	.portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.portfolio-section {
		padding: 48px 28px 64px;
	}

	header {
		padding: 0 24px;
	}
}

@media (max-width: 580px) {
	.portfolio-grid {
		grid-template-columns: 1fr;
	}

	nav {
		gap: 16px;
	}

	.lb-prev {
		left: -10px;
	}

	.lb-next {
		right: -10px;
	}
}




/* styling table */
/* styling table */
/* styling table */
/* styling table */


.table-container {
	--bg-body: #f4f6f9;
    --bg-table: #ffffff;
    --primary-dark: #0f172a;       /* Deep slate/navy for headers */
    --text-main: #334155;          /* Charcoal text */
    --zebra-stripe: #f8fafc;       /* Ultra-soft cool grey */
    --border-color: #e2e8f0;       /* Crisp border line */
    --accent-check: #10b981;       /* Premium Emerald Green for checkmarks */
    --accent-dash: #94a3b8;        /* Soft muted grey for dashes */
    width: 100%;
    max-width: 1000px;
    background-color: var(--bg-table);
	margin: auto;
}

/* Title Styling */
.table-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
	text-align: center;
}

/* Table Setup */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* Header Design */
.comparison-table th {
    background-color: var(--primary-dark);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 18px 12px;
    vertical-align: middle;
    line-height: 1.4;
	text-align: center;
}

/* Rounded Header Edges Trick */
.comparison-table th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.comparison-table th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.comparison-table .text-left {
    text-align: left;
    width: 40%;
    padding-left: 20px;
}

/* Body Row Layout & Interactivity */
.comparison-table td {
    padding: 16px 12px;
    text-align: center;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background-color: #f1f5f9 !important; /* Row hover highlight */
}

/* Zebra Striping */
.comparison-table tbody tr:nth-child(even) {
    background-color: var(--zebra-stripe);
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 500;
    color: var(--primary-dark);
    padding-left: 20px;
}

/* Checkmarks and Dashes */
.comparison-table td.check {
    color: var(--accent-check);
    font-weight: bold;
    font-size: 1.3rem;
}

.comparison-table td.dash {
    color: var(--accent-dash);
    font-weight: bold;
}

/* --- Responsive Engine (Mobile Layout Transformation) --- */
@media screen and (max-width: 768px) {
    
    body {
        padding: 20px 10px;
    }

	.footer-contact {
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: left;
	}

	.footer-contact-form {
		grid-template-columns: 1fr;
		padding: 20px;
	}

	.contact-submit-wrap .btn {
		width: 100%;
	}

	#contact .cta-box {
		padding: 64px 16px 0;
	}

	#contact .cta-box .site-footer {
		max-width: 100%;
	}

	#contact .cta-box .footer-bottom {
		margin-top: 30px;
		padding: 24px 18px 40px;
	}

	#contact .section-title {
		font-size: 2rem;
	}

	#contact .contact-lead {
		font-size: 1rem;
		line-height: 1.65;
	}

	#contact .contact-channels {
		display: grid;
		gap: 10px;
		margin-bottom: 30px;
	}

	#contact .contact-channel,
	#contact .whatsapp-contact {
		width: 100%;
		justify-content: center;
	}

	#contact .cta-box .footer-contact-form {
		padding: 22px;
	}

	.floating-whatsapp {
		right: 16px;
		bottom: 16px;
		width: 54px;
		min-height: 54px;
		padding: 12px;
		justify-content: center;
	}

	.floating-whatsapp span {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
	}

    .table-container {
        padding: 20px 15px;
        box-shadow: none;
        background: transparent;
    }

    .table-title {
        text-align: center;
        font-size: 1.6rem;
    }

    .comparison-table thead {
        display: none; 
    }
    
    .comparison-table, 
    .comparison-table tbody, 
    .comparison-table tr, 
    .comparison-table td {
        display: block;
        width: 100%;
    }
    
    /* Rows convert into sleek independent cards */
    .comparison-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 12px 5px;
        background-color: var(--bg-table) !important;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    }
    
    /* Header strip for the Feature Title within the Mobile Card */
    .comparison-table td.feature-name {
        font-weight: 700;
        font-size: 1.05rem;
        background-color: var(--zebra-stripe);
        border-bottom: 1px solid var(--border-color);
        padding: 10px;
        margin-bottom: 10px;
        text-align: center;
        border-radius: 6px;
    }
    
    /* Content Columns alignment to the right side */
    .comparison-table td:not(.feature-name) {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: 1px dashed var(--border-color);
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .comparison-table td:last-child {
        border-bottom: none;
    }
    
    /* Content Labels fixed cleanly to the left edge on Mobile */
    .comparison-table td:not(.feature-name)::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        text-align: left;
        font-weight: 600;
        font-size: 0.85rem;
        color: #64748b;
    }
}






/*** starting packages ***/
/*** starting packages ***/
/*** starting packages ***/

  .packages-modern {
    background:
      radial-gradient(circle at top left, rgba(36, 99, 235, 0.08), transparent 34%),
      linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  }

  .packages-modern .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef4ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .packages-modern .section-title {
    margin-top: 18px;
    margin-bottom: 14px;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: 0;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
  }

  .price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
  }

  .price-card:hover {
    transform: translateY(-6px);
    border-color: #bfdbfe;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.13);
  }

  .price-card.featured {
    border-color: #2563eb;
    box-shadow: 0 26px 70px rgba(37, 99, 235, 0.18);
  }

  .price-card.featured::before {
    content: "Popular";
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
  }

  .price-card .eyebrow {
    margin-bottom: 14px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .price-card h3 {
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 26px;
    font-weight: 800;
  }

  .price-card strong {
    display: block;
    min-height: 48px;
    color: #475569;
    font-size: 16px;
    font-weight: 700;
  }

  .price-card .price {
    margin: 24px 0 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e5e7eb;
    color: #64748b;
  }

  .price-card .price span {
    color: #0f172a;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .price-card p {
    color: #64748b;
    line-height: 1.65;
  }

  .price-card b {
    margin-top: 14px;
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 15px;
  }

  .price-card ul {
    display: grid;
    gap: 11px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
  }

  .price-card li {
    position: relative;
    padding-left: 28px;
    color: #334155;
    line-height: 1.5;
  }

  .price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dcfce7;
  }

  .price-card li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    width: 6px;
    height: 9px;
    border: solid #16a34a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

  .price-card .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  }

  .price-card .button:hover {
    transform: translateY(-2px);
  }

  .price-card .button.primary {
    background: #2563eb;
    color: #ffffff;
  }

  .price-card .button.secondary {
    background: #f1f5f9;
    color: #0f172a;
  }

  .price-card .button.secondary:hover {
    background: #2563eb;
    color: #ffffff;
  }

  .price-card .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 24px 0 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e5e7eb;
  color: #475569;
  white-space: nowrap;
}

.price-card .price span {
  display: inline-block;
  color: #020617;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.price-card .price small {
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

  @media (max-width: 991px) {
    .pricing-grid {
      grid-template-columns: 1fr;
    }

    .price-card strong {
      min-height: auto;
    }
  }

  @media (max-width: 575px) {
    .price-card {
      padding: 24px;
    }

    .price-card .price span {
      font-size: 28px;
    }
  }


/*** closing packages ***/
/*** closing packages ***/
/*** closing packages ***/


/*** service package cards ***/

.package-category {
  padding-top: 8px;
  position: relative;
}

.package-category-heading {
  max-width: 760px;
  margin: 0 auto 34px;
}

.package-category-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-category-heading h3 {
  margin: 0;
  color: #020617;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.2;
}

.service-package-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: 30px 24px 24px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.96), #ffffff 38%),
    #ffffff;
  color: #020617;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 5px;
  background: linear-gradient(90deg, #c7d2fe, #60a5fa);
  pointer-events: none;
}

.service-package-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  z-index: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.08);
  pointer-events: none;
}

.service-package-card > * {
  position: relative;
  z-index: 1;
}

.service-package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 70, 229, 0.45);
  box-shadow: 0 28px 75px rgba(15, 23, 42, 0.14);
}

.service-package-card.featured {
  border-color: rgba(79, 70, 229, 0.74);
  background:
    linear-gradient(180deg, rgba(238, 242, 255, 0.98), #ffffff 42%),
    #ffffff;
  box-shadow: 0 30px 90px rgba(79, 70, 229, 0.2);
  transform: translateY(-10px);
}

.service-package-card.featured:hover {
  transform: translateY(-14px);
}

.service-package-card.featured::before {
  height: 7px;
  background: linear-gradient(90deg, var(--brand-primary), #06b6d4);
}

.service-package-card.featured::after {
  background: rgba(79, 70, 229, 0.13);
}

.service-package-card.featured .tier-label::after {
  content: "Recommended";
  margin-left: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-package-card .tier-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 30px;
  margin-bottom: 18px;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-package-card h4 {
  min-height: 58px;
  color: #020617;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.service-package-card .package-price {
  margin: 12px 0 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
  color: #020617;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.service-package-card .package-price span {
  color: #64748b;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
}

.service-package-card p {
  margin-bottom: 16px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-package-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-package-card li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
}

.service-package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #eef2ff;
}

.service-package-card li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 9px;
  border: solid var(--brand-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.service-package-card.featured li::before {
  background: #dbeafe;
}

.package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  padding: 13px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #f8fafc;
  color: #020617;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.package-btn:hover {
  transform: translateY(-2px);
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: #ffffff;
}

.package-btn.primary {
  border-color: var(--brand-primary);
  background: linear-gradient(135deg, var(--brand-primary), #06b6d4);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(79, 70, 229, 0.24);
}

.package-btn.primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

@media (max-width: 991px) {
  .package-category-heading h3 {
    font-size: 26px;
  }

  .service-package-card.featured,
  .service-package-card.featured:hover {
    transform: none;
  }

  .service-package-card h4,
  .service-package-card p {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .package-category-heading h3 {
    font-size: 23px;
  }

  .service-package-card {
    padding: 24px 20px 20px;
  }

  .service-package-card .package-price {
    font-size: 24px;
  }
}











