/* ============================================================
   Case-study footer styles (extracted from home1.css)
   ============================================================ */
/* footer */
#footer {
    font-family: "DM Sans", sans-serif !important;
	background-color: #0b1622;
	padding: 60px 0 0;
	color: white;
}

#footer .first-row {
	background-color: white;
	padding: 32px;
	border-radius: 15px;
	margin: auto;
	margin-bottom: 40px;
}

#footer h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #1A202C;
}

#footer .first-row p {
	font-size: 16px;
	color: #676767;
	line-height: 1.5;
	margin-bottom: 0;
}

#footer .form-control {
	max-width: 100%;
}

#footer .shadow-input {
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#footer .btn {
	min-width: 100px;
}
.footer-title{
	font-weight: 700;
}
.footer-links{
	
}
#footer .second-row {
	margin-bottom: 40px;
}

#footer .second-row .col {
	padding: 0 15px;
}

#footer .second-row span {
	display: block;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 16px;
	line-height: 1.5;
	color: #ffffff;
}

#footer .list-unstyled {
	margin: 0;
	padding: 0;
}

#footer .list-unstyled li {
	margin-bottom: 12px;
	color: white;
	line-height: 1.6;
}

#footer .list-unstyled a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 15px;
	transition: color 0.3s ease;
}

#footer .list-unstyled a:hover {
	color: #ffffff;
	text-decoration: underline;
}

#footer .social-icons {
	display: flex;
	align-items: center;
	gap: 12px;
}

#footer .social-icons img {
	width: 24px;
	height: 24px;
	margin-right: 0;
	transition: opacity 0.3s ease;
}

#footer .social-icons a:hover img {
	opacity: 0.8;
}

#footer .row.align-items-center {
	margin-top: 0;
}

#footer .row.align-items-center img {
	margin-bottom: 16px;
	max-width: 200px;
}

#footer .row.align-items-center p {
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	line-height: 1.6;
}

#footer .row.align-items-center p i {
	margin-right: 8px;
	color: rgba(255, 255, 255, 0.8);
}

#footer .row.align-items-center div {
	margin-bottom: 12px;
	color: white;
}

#footer .row.align-items-center div a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
}

#footer .row.align-items-center div a:hover {
	color: #ffffff;
	text-decoration: underline;
}

#footer .row.mt-4 .col div {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

#footer .row.mt-4 .col span {
	font-size: 14px;
	color: #ffffff;
}

#footer .first-row .d-flex {
	align-items: center;
}

#footer svg {
	vertical-align: middle;
	margin-right: 5px;
}

/* ── Footer redesign ── */
.footer-newsletter-card {
	position: relative;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	-webkit-backdrop-filter: blur(12px);
	        backdrop-filter: blur(12px);
	border-radius: 20px;
	padding: 40px 44px;
	margin-bottom: 56px;
	overflow: hidden;
}

.footer-newsletter-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 20px;
	padding: 1px;
	background: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.5) 0%,
		rgba(255, 255, 255, 0.04) 45%,
		rgba(255, 255, 255, 0.04) 55%,
		rgba(255, 255, 255, 0.4) 100%
	);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	        mask-composite: exclude;
	pointer-events: none;
}

#footer .footer-newsletter-title {
	font-size: 30px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
}

.footer-newsletter-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	margin-bottom: 0;
	max-width: 420px;
}

.footer-newsletter-form {
	width: 100%;
}

.footer-input-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	padding: 6px 6px 6px 20px;
}

.footer-newsletter-input {
	flex: 1 1 auto;
	min-width: 0;
	background: transparent;
	border: none;
	outline: none;
	color: #ffffff;
	font-size: 15px;
	padding: 10px 0;
}

.footer-newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter-btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: none;
	border-radius: 999px;
	padding: 11px 22px;
	font-weight: 600;
	font-size: 15px;
	color: #06283d;
	background: #73FDFF;
    background: linear-gradient(180deg, rgba(115, 253, 255, 1) 0%, rgba(0, 177, 221, 1) 100%);
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.footer-newsletter-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(34, 211, 238, 0.35);
}

.footer-newsletter-btn:disabled {
	opacity: 0.6;
	cursor: default;
}

.footer-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 14px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	cursor: pointer;
}

.footer-consent input {
	margin-top: 2px;
	accent-color: #22d3ee;
}

.footer-consent-star {
	color: #22d3ee;
}

.footer-newsletter-msg {
	margin: 10px 0 0;
	font-size: 13px;
	min-height: 18px;
}

.footer-newsletter-msg.is-error {
	color: #ff8a8a;
}

.footer-newsletter-msg.is-success {
	color: #4ade80;
}

.footer-logo {
	max-width: 150px;
	height: auto;
	display: block;
}

.footer-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	max-width: 280px;
}

.footer-cols {
	display: flex;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
}

.footer-col {
	flex: 1 1 140px;
	min-width: 130px;
}

.footer-col-wide {
	flex: 1 1 180px;
	min-width: 165px;
}

#footer .footer-title {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 18px;
}

.footer-links-subhead {
	font-size: 11px;
	font-weight: 600;
	color: #6b7785;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

#footer .footer-links li {
	margin-bottom: 12px;
}

#footer .footer-links a {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	text-decoration: none;
	transition: color 0.25s ease;
}

#footer .footer-links a:hover {
	color: #ffffff;
	text-decoration: none;
}

.footer-bottom-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px 0 36px;
	margin-top: 24px;
}

.footer-copy {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.footer-copy-sub {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 18px;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-social img {
	width: 20px;
	height: 20px;
}

.footer-social a:hover {
	opacity: 0.75;
	transform: translateY(-2px);
}

@media (max-width: 767px) {
	.footer-newsletter-card {
		padding: 28px 22px;
		margin-bottom: 40px;
	}
	#footer .footer-newsletter-title {
		font-size: 24px;
	}
	.footer-input-wrap {
		flex-wrap: wrap;
		border-radius: 16px;
		padding: 8px;
	}
	.footer-newsletter-input {
		width: 100%;
		padding: 10px 12px;
	}
	.footer-newsletter-btn {
		width: 100%;
		justify-content: center;
	}
	.footer-cols {
		gap: 24px 16px;
	}
	.footer-col,
	.footer-col-wide {
		flex: 1 1 40%;
		min-width: 40%;
	}
	.footer-bottom-bar {
		flex-direction: column;
		align-items: flex-start;
	}
}

.email-btn {
	border: 2px solid #848484;
}

.start-btn {
	border: 2px solid #0C6983;

}

.start {
	color: #0C6983;
}

.newsletterbtn {
	background-color: #0C6983;
	border-radius: 8px;
	color: #ffffff;
	padding: 10px 24px;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.newsletterbtn:hover {
	background-color: #0a5367;
	color: #ffffff;
}

.rights-scoutIT {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	line-height: 1.6;
}

.podcast-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    gap: 6px;
}

.podcast-btn:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: #fff;
}

.podcast-btn img {
	width: 18px;
	height: 18px;
	margin-right: 0;
}

/* Footer responsive styles */
@media (max-width: 768px) {
	#footer {
		padding: 40px 0;
	}
	
	#footer .first-row {
		padding: 24px;
		margin-bottom: 30px;
	}
	
	#footer .second-row {
		margin-bottom: 30px;
	}
	
	#footer .second-row .col {
		margin-bottom: 24px;
		padding: 0 10px;
	}
	
	#footer .row.align-items-center {
		text-align: center;
	}
	
	#footer .row.align-items-center .d-flex {
		justify-content: center !important;
	}
	
	#footer .row.align-items-center .text-end {
		text-align: center !important;
		margin-top: 24px;
	}
}
