/* =============================================
   About Page — layout & typography refinements
   ============================================= */

/* ---- Hero carousel ---- */
.about-hero{
	padding: 30px 0 10px;
}
.about-hero .carousel{
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0,25,50,0.18);
}
.about-hero .carousel-inner .item img{
	width: 100%;
	height: 420px;
	object-fit: cover;
}
.about-hero .carousel-caption{
	left: 0;
	right: 0;
	bottom: 0;
	text-align: left;
	padding: 40px 50px;
	background: linear-gradient(0deg, rgba(4,20,40,0.88) 0%, rgba(4,20,40,0.55) 55%, rgba(4,20,40,0) 100%);
	text-shadow: none;
}
.about-hero .carousel-caption h3{
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: 0.5px;
}
.about-hero .carousel-caption p{
	font-size: 15px;
	line-height: 1.7;
	max-width: 620px;
	margin: 0 auto;
	color: #eaf6fd;
}
.about-hero .carousel-indicators{
	bottom: 18px;
}
.about-hero .carousel-indicators li{
	border-color: #fff;
	width: 10px;
	height: 10px;
}
.about-hero .carousel-indicators .active{
	background: #008cd7;
	border-color: #008cd7;
}
.about-hero .carousel-control{
	background-image: none !important;
	width: 60px;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.about-hero .carousel:hover .carousel-control{
	opacity: 1;
}
.about-hero .carousel-control span{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	line-height: 42px;
	border-radius: 50%;
	background: rgba(255,255,255,0.25);
	font-size: 16px;
}
.about-hero .carousel-control.left span{ left: 20px; }
.about-hero .carousel-control.right span{ right: 20px; }

@media screen and (max-width: 767px){
	.about-hero .carousel-inner .item img{ height: 260px; }
	.about-hero .carousel-caption{ padding: 20px 22px; }
	.about-hero .carousel-caption h3{ font-size: 20px; }
	.about-hero .carousel-caption p{ font-size: 13px; line-height: 1.6; }
}

/* ---- Company intro ---- */
.about-intro{
	padding: 60px 0 10px;
	text-align: center;
}
.about-intro .section-title{
	text-align: center;
	margin-bottom: 20px;
}
.about-intro .section-title span{
	display: inline-block;
	color: #008cd7;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.about-intro p.lead-text{
	max-width: 880px;
	margin: 0 auto;
	font-size: 15.5px;
	line-height: 1.9;
	color: #666;
}

/* ---- Stat highlights ---- */
.about-stats{
	padding: 40px 0 10px;
}
.about-stats .stat-box{
	text-align: center;
	padding: 25px 15px;
	margin-bottom: 20px;
}
.about-stats .stat-box .stat-number{
	font-size: 34px;
	font-weight: 700;
	color: #008cd7;
	line-height: 1.2;
}
.about-stats .stat-box .stat-label{
	font-size: 14px;
	color: #7b7b7b;
	margin-top: 6px;
}

/* ---- Feature cards (Manage Service / Web & App Development) ---- */
.about-features{
	padding: 30px 0 60px;
}
.about-features .feature-card{
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(20,40,70,0.09);
	margin-top: 30px;
	height: calc(100% - 30px);
	display: flex;
	flex-direction: column;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.about-features .feature-card:hover{
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(20,40,70,0.16);
}
.about-features .feature-card .feature-img{
	display: block;
	height: 260px;
	overflow: hidden;
}
.about-features .feature-card .feature-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.about-features .feature-card .feature-img.contain{
	background: #eef6fb;
}
.about-features .feature-card .feature-img.contain img{
	object-fit: contain;
	padding: 14px;
}
.about-features .feature-card:hover .feature-img img{
	transform: scale(1.06);
}
.about-features .feature-card .feature-body{
	padding: 28px 30px 32px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.about-features .feature-card h3{
	position: relative;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 18px;
	padding-bottom: 14px;
}
.about-features .feature-card h3 a{
	color: #1a1a2e;
}
.about-features .feature-card h3:before{
	content:"";
	position:absolute;
	left:0;
	bottom:-1px;
	height:3px;
	width:46px;
	background:#008cd7;
}
.about-features .feature-card p.feature-desc{
	color: #666;
	line-height: 1.8;
	font-size: 14.5px;
	margin-bottom: 18px;
}
.about-features .feature-card ul.feature-list{
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
}
.about-features .feature-card ul.feature-list li{
	position: relative;
	padding-left: 26px;
	margin-bottom: 10px;
	font-size: 14px;
	color: #444;
}
.about-features .feature-card ul.feature-list li:before{
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #008cd7;
	position: absolute;
	left: 0;
	top: 1px;
	font-size: 12px;
}
.about-features .feature-card .button{
	margin-top: auto;
}

/* ---- Package cards (footer blurb) ---- */
.footer-blurb{
	background: #f6fafd;
	padding: 20px 0 10px;
}
.footer-blurb .package-card{
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 26px rgba(20,40,70,0.08);
	padding: 36px 26px 30px;
	text-align: center;
	margin-bottom: 30px;
	height: calc(100% - 30px);
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-blurb .package-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 16px 36px rgba(20,40,70,0.14);
}
.footer-blurb .package-card img{
	border: 3px solid #eaf6fd;
	margin-bottom: 18px;
}
.footer-blurb .package-card h3{
	font-size: 18px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 14px;
}
.footer-blurb .package-card p{
	color: #666;
	font-size: 14px;
	line-height: 1.75;
	margin-bottom: 16px;
}
.footer-blurb .package-card ul{
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	text-align: left;
	width: 100%;
}
.footer-blurb .package-card ul li{
	position: relative;
	padding-left: 22px;
	margin-bottom: 8px;
	font-size: 13.5px;
	color: #555;
}
.footer-blurb .package-card ul li:before{
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #008cd7;
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 11px;
}
.footer-blurb .package-card .button{
	margin-top: auto;
}

@media screen and (max-width: 991px){
	.about-features .feature-card{ height: auto; }
	.footer-blurb .package-card{ height: auto; }
}
