/* ============================================================
   UK WEBSOFT - LEGAL PAGES (PRIVACY & TERMS)
   COLOR PALETTE: #30427F (Royal Blue) | #000 (Black) | #FFF
   ============================================================ */

.terms-page {
	background: #ffffff;
	color: #000000;
	font-family:
		"Poppins", sans-serif; /* सुनिश्चित करें कि Poppins या Similar font लोड हो */
}

/* ================= BANNER SECTION ================= */
.terms-page .inner_banner {
	position: relative;
	padding: 120px 0 100px;
	text-align: center;
	background: #ffffff;
	overflow: hidden;
}

.terms-page .inner_banner_contnet {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: auto;
}

.terms-page .contact-tag {
	display: inline-block;
	padding: 6px 20px;
	background: rgba(48, 66, 127, 0.08);
	color: #30427f;
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	border-radius: 30px;
	margin-bottom: 18px;
	font-weight: 700;
}

.terms-page h1 {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	color: #000000;
	margin-bottom: 15px;
}

.terms-page h1 span {
	color: #30427f;
}

.terms-page .inner_banner_contnet p {
	font-size: 17px;
	color: #555555;
	max-width: 700px;
	margin: auto;
	line-height: 1.6;
}

/* ================= CONTENT LAYOUT ================= */
.terms-page .services-grid-section {
	padding: 60px 0 100px;
	background: #ffffff;
}

.terms-page .projects-home-heading {
	text-align: center;
	max-width: 850px;
	margin: 0 auto 50px;
}

.terms-page .projects-home-tag {
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #30427f;
	font-weight: 700;
	display: block;
	margin-bottom: 10px;
	max-width: fit-content;
	margin: 0 auto;
}

.terms-page .projects-home-title {
	font-size: 34px;
	font-weight: 800;
	color: #000000;
}

.terms-content {
	max-width: 940px;
	margin: auto;
	padding: 0 20px;
}

/* ================= MODERN CARD DESIGN ================= */
.terms-card {
	background: #ffffff;
	border: 1px solid #eeeeee;
	border-radius: 16px;
	padding: 30px 35px;
	margin-bottom: 25px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.terms-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 5px;
	height: 100%;
	background: #30427f;
	opacity: 0;
	transition: 0.3s ease;
	border-radius: 16px 0 0 16px;
}

/* First card highlight by default */
.terms-card:first-child::before {
	opacity: 1;
}

.terms-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(48, 66, 127, 0.08);
	border-color: rgba(48, 66, 127, 0.15);
}

.terms-card:hover::before {
	opacity: 1;
}

/* Headings inside cards */
.terms-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: #30427f;
	margin-bottom: 15px;
	letter-spacing: -0.5px;
}

.terms-card p {
	font-size: 16px;
	line-height: 1.8;
	color: #333333;
	margin-bottom: 0;
}

/* Lists styling for Ascentium look */
.terms-card ul {
	margin: 15px 0 0 0;
	padding-left: 20px;
}

.terms-card ul li {
	font-size: 15.5px;
	line-height: 1.8;
	color: #444444;
	margin-bottom: 10px;
	list-style-type: disc;
}

.terms-card strong {
	color: #000000;
	font-weight: 700;
}

/* ================= LINKS & UTILS ================= */
.terms-page a {
	color: #30427f;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s;
}

.terms-page a:hover {
	color: #000;
	text-decoration: underline;
}

.terms-page .grid-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(48, 66, 127, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(48, 66, 127, 0.03) 1px, transparent 1px);
	background-size: 45px 45px;
	z-index: 1;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 992px) {
	.terms-page h1 {
		font-size: 38px;
	}
	.terms-card {
		padding: 25px 30px;
	}
}

@media (max-width: 768px) {
	.terms-page .inner_banner {
		padding: 100px 0 70px;
	}
	.terms-page h1 {
		font-size: 32px;
	}
	.terms-page .projects-home-title {
		font-size: 28px;
	}
	.terms-card h3 {
		font-size: 20px;
	}
	.terms-card p,
	.terms-card ul li {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.terms-page h1 {
		font-size: 28px;
	}
	.terms-card {
		padding: 20px;
	}
	.terms-page .contact-tag {
		font-size: 12px;
	}
}

/* =================================
   EFFECTIVE DATE STYLING
   ================================= */

.effective-date {
    font-size: 16px;
    font-weight: 600;
    color: #555555; /* हल्का ग्रे कलर */
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.effective-date span {
    color: #30427f; /* आपका थीम रॉयल ब्लू */
    font-weight: 800;
    background: rgba(48, 66, 127, 0.05); /* बहुत हल्का ब्लू बैकग्राउंड */
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(48, 66, 127, 0.1);
    display: inline-block;
}

/* मोबाइल रिस्पॉन्सिव */
@media (max-width: 768px) {
    .effective-date {
        font-size: 14px;
    }
    .effective-date span {
        padding: 3px 10px;
    }
}
p.effective-date {
    margin-top: 12px;
}
