/* ======================================
   ABOUT US PAGE STYLES
   ====================================== */

/* Section Title Styling */
.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #3e3a7f;
	margin-bottom: 15px;
	text-align: left;
	animation: fadeInUp 0.6s ease-out;
}

.section-subtitle {
	font-size: 1.1rem;
	color: #e72c32;
	text-align: left;
	font-weight: 600;
	margin-bottom: 30px;
	animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* ======================================
   COMPANY OVERVIEW SECTION
   ====================================== */

.about-overview-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
	animation: fadeIn 0.8s ease-out;
}

.overview-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.overview-text {
	animation: fadeInLeft 0.8s ease-out;
}

.overview-description {
	font-size: 1rem;
	line-height: 1.8;
	color: #555555;
	margin-bottom: 25px;
	text-align: justify;
}

.overview-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.stat-item {
	background: white;
	padding: 25px;
	border-left: 4px solid #e72c32;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
	font-size: 2rem;
	font-weight: 700;
	color: #e72c32;
	margin: 0 0 10px 0;
}

.stat-label {
	font-size: 0.9rem;
	color: #3e3a7f;
	font-weight: 600;
	margin: 0;
}

.overview-image {
	animation: fadeInRight 0.8s ease-out;
}

.company-image {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	object-fit: cover;
}

/* ======================================
   COMPANY STATS SECTION
   ====================================== */

.company-stats-section {
	padding: 60px 0;
	background: white;
	animation: fadeIn 0.8s ease-out;
}

.company-stats-section .overview-stats {
	margin-top: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.company-stats-section .stat-item {
	background: linear-gradient(135deg, #3e3a7f 0%, #554b8a 100%);
	border-left: none;
	border-top: 4px solid #e72c32;
	color: white;
	box-shadow: 0 8px 25px rgba(30, 60, 114, 0.15);
	animation: fadeInUp 0.6s ease-out;
}

.company-stats-section .stat-item:nth-child(2) {
	animation-delay: 0.1s;
}

.company-stats-section .stat-item:nth-child(3) {
	animation-delay: 0.2s;
}

.company-stats-section .stat-item:nth-child(4) {
	animation-delay: 0.3s;
}

.company-stats-section .stat-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(62, 58, 127, 0.25);
	border-top-color: #3e3a7f;
}

.company-stats-section .stat-number {
	color: #e72c32;
}

.company-stats-section .stat-label {
	color: #e0e0e0;
}

/* ======================================
   MISSION, VISION & VALUES SECTION
   ====================================== */

.mission-vision-section {
	padding: 80px 0;
	background: white;
	animation: fadeIn 0.8s ease-out;
}

.mission-vision-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
}

.mission-card {
	background: linear-gradient(135deg, #3e3a7f 0%, #554b8a 100%);
	padding: 40px;
	border-radius: 12px;
	text-align: center;
	color: white;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(30, 60, 114, 0.15);
	animation: fadeInUp 0.6s ease-out;
}

.mission-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(62, 58, 127, 0.25);
}

.mission-card:nth-child(2) {
	animation-delay: 0.1s;
}

.mission-card:nth-child(3) {
	animation-delay: 0.2s;
}

.card-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	color: #e72c32;
}

.card-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: white;
}

.card-description {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #e0e0e0;
	margin: 0;
}

/* ======================================
   WHY CHOOSE US SECTION
   ====================================== */

.why-choose-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
	animation: fadeIn 0.8s ease-out;
}

.why-choose-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.why-choose-card {
	background: white;
	padding: 35px;
	border-radius: 10px;
	border-top: 4px solid #e72c32;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	animation: fadeInUp 0.6s ease-out;
}

.why-choose-card:nth-child(2) {
	animation-delay: 0.1s;
}

.why-choose-card:nth-child(3) {
	animation-delay: 0.2s;
}

.why-choose-card:nth-child(4) {
	animation-delay: 0.3s;
}

.why-choose-card:nth-child(5) {
	animation-delay: 0.4s;
}

.why-choose-card:nth-child(6) {
	animation-delay: 0.5s;
}

.why-choose-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
	border-top-color: #3e3a7f;
}

.why-choose-card .card-icon {
	font-size: 2.5rem;
	color: #e72c32;
	margin-bottom: 20px;
}

.why-choose-card .card-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #3e3a7f;
	margin-bottom: 15px;
}

.why-choose-card .card-description {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #666666;
	margin: 0;
}

/* ======================================
   SERVICES OVERVIEW SECTION
   ====================================== */

.services-overview-section {
	padding: 80px 0;
	background: white;
	animation: fadeIn 0.8s ease-out;
}

.services-overview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.service-overview-card {
	background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
	padding: 40px;
	border-radius: 12px;
	border: 2px solid #e0e0e0;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	animation: fadeInUp 0.6s ease-out;
}

.service-overview-card:nth-child(2) {
	animation-delay: 0.1s;
}

.service-overview-card:nth-child(3) {
	animation-delay: 0.2s;
}

.service-overview-card:nth-child(4) {
	animation-delay: 0.3s;
}

.service-overview-card:hover {
	transform: translateY(-10px);
	border-color: #e72c32;
	box-shadow: 0 12px 35px rgba(231, 44, 50, 0.15);
}

.service-overview-card .card-image {
	font-size: 3rem;
	color: #e72c32;
	margin-bottom: 20px;
}

.service-overview-card .card-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #3e3a7f;
	margin-bottom: 15px;
}

.service-overview-card .card-description {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #666666;
	margin: 0;
}

/* ======================================
   EXPERTISE SECTION
   ====================================== */

.expertise-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
	animation: fadeIn 0.8s ease-out;
}

.expertise-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 35px;
	margin-top: 50px;
}

.expertise-item {
	background: white;
	padding: 35px;
	border-radius: 10px;
	border-left: 5px solid #e72c32;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	animation: slideUp 0.6s ease-out;
}

.expertise-item:nth-child(2) {
	animation-delay: 0.1s;
}

.expertise-item:nth-child(3) {
	animation-delay: 0.2s;
}

.expertise-item:nth-child(4) {
	animation-delay: 0.3s;
}

.expertise-item:hover {
	transform: translateX(10px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
	border-left-color: #3e3a7f;
}

.expertise-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #3e3a7f;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.expertise-title i {
	color: #e72c32;
	font-size: 1.4rem;
}

.expertise-description {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #666666;
	margin: 0;
}

/* ======================================
   QUALITY ASSURANCE SECTION
   ====================================== */

.quality-assurance-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #3e3a7f 0%, #554b8a 100%);
	color: white;
	animation: fadeIn 0.8s ease-out;
}

.quality-assurance-section .section-title {
	color: white;
}

.quality-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.quality-feature {
	background: rgba(255, 255, 255, 0.1);
	padding: 40px;
	border-radius: 12px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	animation: fadeInUp 0.6s ease-out;
}

.quality-feature:nth-child(2) {
	animation-delay: 0.1s;
}

.quality-feature:nth-child(3) {
	animation-delay: 0.2s;
}

.quality-feature:nth-child(4) {
	animation-delay: 0.3s;
}

.quality-feature:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: #e72c32;
	transform: translateY(-5px);
}

.feature-number {
	font-size: 3rem;
	font-weight: 700;
	color: #e72c32;
	margin-bottom: 15px;
}

.feature-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: white;
}

.feature-description {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #e0e0e0;
	margin: 0;
}

/* ======================================
   CTA SECTION
   ====================================== */

.about-cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
	text-align: center;
	animation: fadeIn 0.8s ease-out;
}

.cta-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #3e3a7f;
	margin-bottom: 15px;
}

.cta-subtitle {
	font-size: 1.1rem;
	color: #666666;
	margin-bottom: 40px;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.cta-button {
	padding: 15px 40px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	display: inline-block;
}

.cta-primary {
	background: linear-gradient(135deg, #e72c32 0%, #c4222a 100%);
	color: white;
	border: 2px solid #e72c32;
}

.cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(231, 44, 50, 0.3);
	background: linear-gradient(135deg, #c4222a 0%, #aa1d20 100%);
}

.cta-secondary {
	background: white;
	color: #3e3a7f;
	border: 2px solid #3e3a7f;
}

.cta-secondary:hover {
	transform: translateY(-3px);
	background: #3e3a7f;
	color: white;
	box-shadow: 0 8px 25px rgba(62, 58, 127, 0.3);
}

/* ======================================
   ANIMATIONS
   ====================================== */

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

@media (max-width: 992px) {
	.section-title {
		font-size: 2rem;
	}

	.section-subtitle {
		font-size: 1rem;
	}

	.about-overview-section,
	.mission-vision-section,
	.why-choose-section,
	.services-overview-section,
	.expertise-section,
	.quality-assurance-section,
	.about-cta-section {
		padding: 60px 0;
	}

	.overview-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.overview-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.section-title {
		font-size: 1.8rem;
	}

	.about-overview-section,
	.mission-vision-section,
	.why-choose-section,
	.services-overview-section,
	.expertise-section,
	.quality-assurance-section,
	.about-cta-section {
		padding: 50px 0;
	}

	.mission-vision-grid,
	.why-choose-grid,
	.services-overview-grid,
	.expertise-grid,
	.quality-features {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.overview-stats {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-button {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 576px) {
	.section-title {
		font-size: 1.5rem;
	}

	.section-subtitle {
		font-size: 0.95rem;
	}

	.about-overview-section,
	.mission-vision-section,
	.why-choose-section,
	.services-overview-section,
	.expertise-section,
	.quality-assurance-section,
	.about-cta-section {
		padding: 40px 0;
	}

	.mission-card,
	.why-choose-card,
	.service-overview-card,
	.expertise-item,
	.quality-feature {
		padding: 25px;
	}

	.stat-item {
		padding: 20px;
	}

	.stat-number {
		font-size: 1.5rem;
	}

	.card-icon,
	.service-overview-card .card-image {
		font-size: 2rem;
	}

	.cta-title {
		font-size: 1.8rem;
	}

	.cta-subtitle {
		font-size: 0.95rem;
	}

	.feature-number {
		font-size: 2rem;
	}
}
