/*------------------ Breadcrumb styling --------------------*/
.breadcrumbs
{
	background: linear-gradient(rgba(51, 153, 255, 0.1), rgba(51, 153, 255, 0.8)), url('../img/Image_fx (53).png');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.breadcrumb-container
{
	height: 34vh;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding: 0 1.5rem 2rem;
}

.breadcrumb-container .hero-heading
{
	font-size: 3rem;
}
/*------------------ Breadcrumb styling --------------------*/


/*------------------ Future protection styling ----------------*/
.future
{
	padding: 3rem 0 0;
}

.future .container,
.who-we-are .container
{
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.future .container
{
	text-align: center;
}

.future-protection-imgs
{
	margin: 2rem 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.future-protection-img
{
	border-radius: 6px;
	max-width: 100%;
	height: auto;
}

.future-protection-img:nth-child(1),
.future-protection-img:nth-child(3)
{
	width: 300px;
	object-fit: cover;
}

.future-protection-img:nth-child(2)
{
	width: 500px;
	object-fit: cover;
}
/*------------------ Future protection styling ----------------*/


/*------------------ Who we are styling -----------------------*/
.who-we-are
{
	padding: 1rem 0 3rem;
	background-color: #fcfcfc;
}

.section-badge
{
	display: inline-block;
	padding: 0.5rem 1.2rem;
	background: rgba(51, 153, 255, 0.1);
	color: #3399ff;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 1px solid rgba(51, 153, 255, 0.2);
}

.who-we-are .container .row
{
	display: flex;
	align-items: center;
	gap: 4rem;
	justify-content: space-between;
}

.who-we-are .text-col
{
	flex: 1;
	text-align: left;
}

.who-we-are .img-col
{
	flex: 1;
	display: flex;
	justify-content: center;
}

.who-we-are-img
{
	width: 100%;
	max-width: 550px;
	border-radius: 16px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.who-we-are-img:hover
{
	transform: scale(1.02);
}

.who-we-are-img-container
{
	position: relative;
	width: 100%;
	max-width: 550px;
}

.img-badge
{
	position: absolute;
	background: #fff;
	padding: 1.2rem;
	border-radius: 12px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 1rem;
	z-index: 2;
	transition: all 0.3s ease;
}

.experts-badge
{
	top: 40px;
	left: -30px;
	background: #3399ff;
	color: #fff;
}

.experts-badge ion-icon
{
	font-size: 1.6rem;
}

.experts-badge span
{
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
}

.experience-badge
{
	bottom: -20px;
	right: -20px;
	background: #fff;
	color: var(--third-color);
	border-left: 5px solid #3399ff;
}

.exp-number
{
	font-size: 2.2rem;
	font-weight: 800;
	color: #3399ff;
	line-height: 1;
}

.exp-text
{
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	color: #555;
}

.img-badge:hover
{
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for badges */
@media (max-width: 991px)
{
	.experts-badge
	{
		left: -15px;
	}
	.experience-badge
	{
		right: -15px;
	}
}

@media (max-width: 768px)
{
	.who-we-are-img-container
	{
		margin-top: 2rem;
	}
	
	.experts-badge
	{
		left: 10px;
		top: 20px;
		padding: 0.8rem 1.2rem;
	}

	.experience-badge
	{
		right: 10px;
		bottom: -15px;
		padding: 0.8rem 1.2rem;
	}

	.exp-number
	{
		font-size: 1.8rem;
	}
}

.who-we-are .sub-heading
{
	margin-bottom: 0.5rem;
}

.who-we-are .heading
{
	font-size: 2.8rem;
	margin-bottom: 2rem;
	color: var(--third-color);
}

.who-we-are .para-line
{
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: #4a4a4a;
}

.highlight-num
{
	font-size: 1.6rem;
	font-weight: 800;
	color: #3399ff;
	margin: 0 2px;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
}
/*------------------ Who we are styling -----------------------*/


/*------------------ Guiding Statements styling -----------------------*/
.guiding-statements
{
	padding: 1rem 0;
	background-color: var(--fourth-color);
}

.guiding-statements .container
{
	text-align: center;
}

.guiding-statements .statements-grid
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	margin-top: 1.5rem;
}

.statement-card
{
	background: #fff;
	padding: 3.5rem 2.5rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(51, 153, 255, 0.05);
	border: 1px solid rgba(51, 153, 255, 0.05);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.statement-card::before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: #3399ff;
	opacity: 0.6;
}

.statement-card:hover
{
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(51, 153, 255, 0.12);
	border-color: rgba(51, 153, 255, 0.1);
}

.statement-card ion-icon
{
	font-size: 3.5rem;
	color: #3399ff;
	margin-bottom: 1.5rem;
}

.statement-card .statement-title
{
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1.2rem;
	color: var(--third-color);
}

.statement-card .para-line
{
	color: #555;
	font-size: 1.05rem;
	line-height: 1.7;
}
/*------------------ Guiding Statements styling -----------------------*/


/*----------------------- Company value --------------------------*/
.values
{
	padding: 1rem 0;
}

.values .container
{
	text-align: center;
}

.values .heading
{
	color: var(--third-color);
	font-size: 2.8rem;
	margin-bottom: 1.5rem;
}

.company-values
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.value
{
	margin: 3.6rem 0;
}

.value ion-icon
{
	color: #3399ff;
	font-size: 2.6rem;
}

.value .value-heading
{
	font-size: 1.4rem;
	font-weight: 600;
}
/*----------------------- Company value --------------------------*/



/*----------------------------- Key Numbers ------------------------------*/
.key-numbers
{
	background: linear-gradient(rgba(51, 153, 255, 0.9), rgba(51, 153, 255, 0.9)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.key-num-row
{
	margin: 3rem 0;
}

.key-no-img
{
	border-radius: 6px;
}

.key-number
{
	margin: 2rem 0;
	padding: 1rem;
	background: #ffffff;
	border-radius: 6px;
	text-align: center;
}

.key-number .heading
{
	font-size: 2.2rem;
	line-height: 1;
}

.key-number .para-line
{
	font-weight: 600;
	text-transform: uppercase;
}

.quick-view-link
{
	display: inline-block;
	margin-top: 0.5rem;
	color: #3399ff;
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
	text-transform: uppercase;
}

.quick-view-link:hover
{
	border-bottom-color: #3399ff;
	transform: translateY(-2px);
}
/*----------------------------- Key Numbers ------------------------------*/


/*------------------------------- Awards --------------------------------*/
.awards-recognitions
{
	padding: 1rem 0;
	background-color: #fcfcfc;
}

.awards-recognitions .container
{
	max-width: 1000px;
}

.awards-recognitions .sub-heading {
    text-align: center;
}

.awards-recognitions .heading {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 1rem;
}

.awards-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}

.awards-flex-container
{
	display: flex;
	align-items: stretch;
	gap: 0;
	justify-content: center;
    margin-top: 1.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.awards-image-col
{
	flex: 1;
	display: flex;
	justify-content: center;
    align-items: stretch;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.awards-side-img
{
	width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 15px;
    clip-path: ellipse(100% 50% at 0% 50%);
    transition: transform 0.5s ease;
}

.awards-image-col:hover .awards-side-img {
    transform: scale(1.02);
}

.awards-grid
{
	flex: 1.4;
	display: flex;
    flex-direction: column;
	gap: 0.8rem;
    position: relative;
    justify-content: space-between;
}

.award-item
{
	background: #fff;
	padding: 0.6rem 1.2rem;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
	text-align: left;
	display: flex;
	gap: 1rem;
	align-items: center;
    width: fit-content;
    min-width: 280px;
}

.award-item:nth-child(1) { margin-left: 10px; }
.award-item:nth-child(2) { margin-left: 50px; }
.award-item:nth-child(3) { margin-left: 90px; }
.award-item:nth-child(4) { margin-left: 120px; }
.award-item:nth-child(5) { margin-left: 140px; }
.award-item:nth-child(6) { margin-left: 120px; }
.award-item:nth-child(7) { margin-left: 90px; }
.award-item:nth-child(8) { margin-left: 50px; }
.award-item:nth-child(9) { margin-left: 10px; }

.award-item:hover
{
	transform: translateX(5px);
	box-shadow: 0 6px 20px rgba(51, 153, 255, 0.08);
}

.award-icon ion-icon
{
	font-size: 1.5rem;
	color: #3399ff;
	line-height: 1;
}

.award-content h4
{
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--third-color);
	margin-bottom: 0.2rem;
}

.award-content p
{
	font-size: 0.8rem;
	color: #666;
	margin: 0;
}

.award-item::before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: rgba(51, 153, 255, 0.05);
	border-radius: 8px;
	transition: width 0.3s ease;
	z-index: -1;
}

.award-item:hover::before
{
	width: 100%;
}
/*------------------------------- Awards --------------------------------*/




/*-------------------------- Moments of Excellence --------------------------*/
.moments-excellence {
    padding: 6rem 0;
    background-color: #fff;
}

.moments-excellence .container {
    text-align: center;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.moments-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.moments-carousel-container {
    flex: 1;
    overflow: hidden;
    padding: 1rem 0;
}

.moments-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.moments-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 0.5rem;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.moment-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.moment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(51, 153, 255, 0.1);
    border-color: rgba(51, 153, 255, 0.1);
}

.moment-img-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #f5f5f5;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moment-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.moment-item:hover .moment-img-wrapper img {
    transform: scale(1.08);
}

.moment-content {
    padding: 1rem 1.5rem;
    text-align: left;
}

.moment-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
    margin: 0;
    font-weight: 500;
}

.moments-carousel-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #3399ff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.moments-carousel-btn:hover {
    background: #3399ff;
    color: #fff;
    border-color: #3399ff;
    box-shadow: 0 6px 15px rgba(51, 153, 255, 0.2);
}

.moments-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.moment-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.moment-dot.active {
    background: #3399ff;
    width: 25px;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .moment-img-wrapper {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .moments-carousel-wrapper {
        padding: 0 1rem;
    }
    
    .moments-carousel-btn {
        display: none;
    }
    
    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .moment-img-wrapper {
        height: 220px;
    }
    
    .moment-content {
        padding: 0.8rem 1rem;
    }
    
    .moment-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .moments-grid {
        grid-template-columns: 1fr;
    }
    
    .moment-img-wrapper {
        height: 260px;
    }
}
/*-------------------------- Moments of Excellence --------------------------*/




/*------------------------------- FAQ Section --------------------------------*/

.faq-section
{
	padding: 1rem 0;
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.faq-section .container
{
	text-align: center;
}

.faq-section .sub-heading
{
	margin-bottom: 0.5rem;
}

.faq-section .heading
{
	font-size: 2.8rem;
	margin-bottom: 2rem;
	color: var(--third-color);
}

.faq-section .para-line
{
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: #666;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.faq-accordion
{
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
}

.accordion-item
{
	margin-bottom: 1rem;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	background-color: #fff;
}

.accordion-item:hover
{
	border-color: #3399ff;
	box-shadow: 0 4px 12px rgba(51, 153, 255, 0.2);
}

.accordion-header
{
	padding: 1.5rem;
	background-color: #f9f9f9;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	user-select: none;
}

.accordion-header:hover
{
	background-color: #f0f0f0;
}

.accordion-header h3
{
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--third-color);
	margin: 0;
}

.toggle-icon
{
	font-size: 1.5rem;
	color: #3399ff;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 1rem;
}

.accordion-content
{
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.accordion-content p
{
	padding: 1.5rem;
	color: #555;
	line-height: 1.7;
	margin: 0;
	font-size: 1rem;
}

.accordion-item.active .accordion-header
{
	background-color: rgba(51, 153, 255, 0.1);
	border-bottom: 2px solid #3399ff;
}

.accordion-item.active .toggle-icon
{
	transform: rotate(45deg);
}

.accordion-item.active .accordion-content
{
	max-height: 500px;
	background-color: #fff;
}

/*------------------------------- FAQ Section --------------------------------*/


/*------------------------------- testimonial --------------------------------*/

.testimonial-page
{
	padding: 3rem 0;
	background-color: #fff;
}

/*------------------------------- testimonial --------------------------------*/




/*------------------------------- Footer --------------------------------*/
/*------------------------------- Footer --------------------------------*/
