/* ================= ABOUT US – HOME 2 ================= */
.dr1050aboutushome2 {
	padding: 100px 20px;
	background: linear-gradient(135deg, #0a3cff 0%, #0032a8 100%);
	color: #ffffff;
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
	box-sizing: border-box;
}

/* ================= CONTAINER ================= */
.dr1050aboutushome2 .about-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 50px;
	align-items: center;
}

/* ================= HEADINGS ================= */
.dr1050aboutushome2 h2 {
	font-size: 2.6rem;
	font-weight: 800;
	margin-bottom: 14px;
	line-height: 1.3;
}

.dr1050aboutushome2 .english-heading {
	display: block;
	font-size: 1rem;
	opacity: 0.85;
	margin-top: 6px;
}

/* ================= INTRO TEXT ================= */
.dr1050aboutushome2 .intro {
	font-size: 1.15rem;
	line-height: 1.8;
	margin-bottom: 24px;
}

.dr1050aboutushome2 .english-desc {
	display: block;
	font-size: 0.95rem;
	opacity: 0.85;
	margin-top: 6px;
}

/* ================= INFO GRID ================= */
.dr1050aboutushome2 .info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-bottom: 26px;
}

.dr1050aboutushome2 .info-card {
	background: rgba(255, 255, 255, 0.12);
	padding: 18px 16px;
	border-radius: 14px;
	text-align: center;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr1050aboutushome2 .info-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.dr1050aboutushome2 .info-card i {
	font-size: 26px;
	color: #ffeb3b;
	margin-bottom: 8px;
}

.dr1050aboutushome2 .info-card h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.dr1050aboutushome2 .info-card p {
	font-size: 0.9rem;
	opacity: 0.9;
}

/* ================= ADDRESS ================= */
.dr1050aboutushome2 .address-box {
	background: rgba(0, 0, 0, 0.25);
	padding: 16px 18px;
	border-radius: 14px;
	margin-bottom: 24px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #ffffff;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr1050aboutushome2 .address-box i {
	font-size: 22px;
	color: #ffeb3b;
	flex-shrink: 0;
	margin-top: 2px;
}

.dr1050aboutushome2 .address-box p {
	margin: 0;
}

.dr1050aboutushome2 .address-box:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* ================= BUTTONS ================= */
.dr1050aboutushome2 .buttons {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.dr1050aboutushome2 .btn {
	padding: 14px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr1050aboutushome2 .btn.call {
	background: linear-gradient(to right, #ff9800, #ff6f00);
}

.dr1050aboutushome2 .btn.whatsapp {
	background: linear-gradient(to right, #25d366, #1da851);
}

.dr1050aboutushome2 .btn:hover {
	transform: scale(1.07);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* ================= VISUAL ================= */
.dr1050aboutushome2 .about-main-image img {
	width: 100%;
	border-radius: 18px;
	background: #000;
	padding: 6px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
	transition: transform 0.4s ease;
}

.dr1050aboutushome2 .about-main-image img:hover {
	transform: scale(1.03);
}

/* ================= GALLERY (NO OVERFLOW) ================= */
.dr1050aboutushome2 .about-gallery {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
	gap: 14px;
}

.dr1050aboutushome2 .about-gallery img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 14px;
	background: #000;
	padding: 4px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s ease;
}

.dr1050aboutushome2 .about-gallery img:hover {
	transform: scale(1.08);
}

/* ================= ANIMATIONS ================= */
.dr1050aboutushome2 .fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.dr1050aboutushome2 .fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

.dr1050aboutushome2 .delay-1 {
	transition-delay: 0.2s;
}

.dr1050aboutushome2 .delay-2 {
	transition-delay: 0.4s;
}

/* ================= RESPONSIVE ================= */
@media ( max-width : 992px) {
	.dr1050aboutushome2 .about-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.dr1050aboutushome2 .buttons {
		justify-content: center;
	}
	.dr1050aboutushome2 .address-box {
		justify-content: center;
		text-align: left;
	}
	.dr1050aboutushome2 .info-grid {
		grid-template-columns: 1fr;
	}
}

@media ( max-width : 480px) {
	.dr1050aboutushome2 {
		padding: 70px 16px;
	}
	.dr1050aboutushome2 h2 {
		font-size: 2.1rem;
	}
	.dr1050aboutushome2 .about-gallery img {
		height: 100px;
	}
}