/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------

FOUND IN SERVICES-PAGE.CSS
        - SEARCH PANEL--------------------------------LINE 11
        - SERVICES : SERVICES GALLERY-----------------LINE 86 
--------------------------------------------------------------*/


/* Search Panel
---------------------------------------------*/


.search-panel {
	margin-left: 12em;
	margin-bottom: 40px;
	width: 70%;
	position: relative;
}

.panel-toggle {
	display: flex;
	align-items: center;
	width: 100%;
	font-size: 16px;
	cursor: pointer;
	color: var(--color-text);
	border-bottom: solid 2px var(--color-text);
	text-align: center;
}

.search-arrow {
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid var(--color-text);
	transition: transform 0.3s ease;
	margin-left: auto;
}

.search-panel-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
	border-top: none;
	margin-top: 40px;
	padding: 0 20px;
}

.search-panel-content form {
	background: rgba(0, 0, 0, 0.05);
	border-radius: 15px;
	padding: 20px 30px;
}

.search-panel.active .search-panel-content {
	max-height: 500px;
	padding: 20px;
}

.search-row {
	display: flex;
	flex-direction: row;
	margin-bottom: 20px;
	gap: 10px;
}

.search-row .field-title {
	font-weight: bold;
}

.search-row label {
	padding: 8px;
}

.search-row input[type="text"] {
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	width: 100%;
	max-width: 400px;
}

.search-row select {
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	width: auto;
}

.search-row .option-group {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.search-row.stacked {
	flex-direction: column;
}

.search-row.stacked .field-title {
	margin-bottom: 8px;
}

.field-info {
	font-style: italic;
	font-weight: normal;
	margin-left: 8px;
	color: #989898;
}

/*--------------------------------------------------------------
SERVICES : SERVICES GALLERY
--------------------------------------------------------------*/

.gallery-all-services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);

}

.services-card {
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 50px;
}

.services-card img {
	max-width: 100%;
	align-self: center;
	object-fit: cover;
	height: 200px;
	margin-bottom: 20px;
}

.services-card .description {
	text-align: justify;
}

.services-button {
	margin-top: auto;
	padding: 10px 20px;
	align-self: center;
	max-width: 50em;
	background-image: linear-gradient(90deg, var(--altech-tertiary), #fff56c);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	transition: all 5s ease;
}

.services-button:hover {
	background-image: linear-gradient(15deg, #fff56c 25%, var(--altech-tertiary));
}