.srg-footer {
    position: relative;
    color: #a3b1bf;
    width: 100%;
    background-image: url(../../images/background/footer-bg.jpg);
    background-color: #161e2d;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Overlay */
.srg-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(163 18 22 / 36%); /* opacity adjust kar sakte ho */
    z-index: 1;
}

/* Content upar lane ke liye */
.srg-footer > * {
    position: relative;
    z-index: 2;
}
.srg-inner-footer {
	padding: 60px 0 40px;
}
.srg-footer-widget {
	margin-bottom: 30px;
}
.srg-text-white {
	color: #ffffff;
	font-size: 22px;
	letter-spacing: 1px;
	font-weight: 500;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 12px;
}
.srg-text-white::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, #e8a23e, #d4882a);
	border-radius: 2px;
	animation: slideIn 0.6s ease-out;
}
@keyframes slideIn {
	from { width: 0; opacity: 0; }
	to { width: 40px; opacity: 1; }
}
.srg-text-variant {
	color: #d7d7d7;
	line-height: 1.8;
	font-size: 16px;
	letter-spacing: 1px;
	margin-bottom: 24px;
}
.srg-wd-social span {
	letter-spacing: 1px;
	color: #cbd5e0;
	font-weight: 500;
	margin-bottom: 12px;
	display: block;
	font-size: 16px;
}
.srg-list-social {
	list-style: none;
	display: flex;
	gap: 10px;
	padding: 0;
}
.srg-list-social li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #a3b1bf;
	text-decoration: none;
	font-size: 16px;
	transition: all 0.3s ease;
}
.srg-list-social li a:hover {
	background: #e8a23e;
	color: #fff;
	border-color: #e8a23e;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(232, 162, 62, 0.35);
}
.srg-navigation-menu-footer {
	list-style: none;
	padding: 0;
}
.srg-navigation-menu-footer li {
	margin-bottom: 14px;
}
.srg-navigation-menu-footer li a {
	color: #d7d7d7;
	text-decoration: none;
	font-size: 16px;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 0;
	letter-spacing: 1px;
}
.srg-navigation-menu-footer li a::before {
	content: '›';
	position: absolute;
	left: -15px;
	opacity: 0;
	color: #e8a23e;
	font-weight: 700;
	transition: all 0.3s ease;
}
.srg-navigation-menu-footer li a:hover {
	color: #e8a23e;
	padding-left: 15px;
}
.srg-navigation-menu-footer li a:hover::before {
	opacity: 1;
	left: 0;
}
.srg-contact {
	list-style: none;
	padding: 0;
}
.srg-contact-widget {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 18px;
}
.srg-contact-widget i {
	color: #e8a23e;
	font-size: 18px;
	margin-top: 3px;
	flex-shrink: 0;
	width: 20px;
	text-align: center;
}
.srg-contact-widget p,
.srg-contact-widget a {
	color: #d7d7d7;
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: 1px;
	text-decoration: none;
	transition: color 0.3s ease;
}
.srg-contact-widget a:hover {
	color: #e8a23e;
}
.srg-bottom-footer {
	border-top: 1px solid rgb(255 255 255 / 40%);
	padding: 22px 0;
}
.srg-content-footer-bottom {
	text-align: center;
}
.srg-copyright {
	color: #d7d7d7;
	font-size: 18px;
	letter-spacing: 1px;
}
@media (max-width: 767px) {
	.srg-inner-footer { padding: 40px 0 20px; }
	.srg-text-white { font-size: 18px; }
}