/* ===== CURRENT OPENINGS SECTION ===== */
.dr1042openings {
	padding: 70px 20px;
	background: linear-gradient(135deg, #f0f8ff, #e8f5e9, #fffde7);
	font-family: 'Poppins', sans-serif;
	overflow: hidden;
}

.openings-container {
	max-width: 1200px;
	margin: auto;
}

.openings-header h2 {
	font-size: 2.6rem;
	font-weight: 800;
	color: #1a73e8;
	margin-bottom: 8px;
	text-align: center;
}

.openings-header p {
	font-size: 1.1rem;
	color: #333;
	text-align: center;
	margin-bottom: 40px;
}

/* Cards Grid */
.openings-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
}

/* Card Styling */
.opening-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 25px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opening-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.card-header h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #0b4f6c;
}

.toggle-details {
	font-size: 0.95rem;
	color: #1a73e8;
	font-weight: 600;
	user-select: none;
}

/* Card Body */
.card-body {
	margin-top: 12px;
	font-size: 1rem;
	color: #333;
}

.extra-details {
	display: none;
	margin-top: 8px;
	color: #555;
}

/* Buttons */
.card-buttons {
	margin-top: 15px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.whatsapp-btn, .call-btn {
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn {
	background: linear-gradient(45deg, #25d366, #128c7e);
}

.call-btn {
	background: linear-gradient(45deg, #f97316, #dc2626);
}

.whatsapp-btn:hover, .call-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Fade-in Animation */
.fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 768px) {
	.openings-header h2 {
		font-size: 2.2rem;
	}
	.card-body {
		font-size: 0.95rem;
	}
}