/*------------------ Hero Section styling --------------------*/
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(255, 0, 0, 0.8));
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    animation: gradientMove 15s ease infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png') repeat;
    opacity: 0.1;
    animation: patternMove 20s linear infinite;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-particles::after {
    animation-delay: 2s;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-heading {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #ff9999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-image {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    opacity: 0.7;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
    50% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@media screen and (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .hero-heading {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-image {
        max-width: 100%;
    }
}
/*------------------ Hero Section styling --------------------*/


/*------------------ Breadcrumb styling --------------------*/
.breadcrumbs
{
	background: linear-gradient(rgba(150, 60, 221, 0.1), rgba(124, 10, 02, 0.8)), url('../img/about-bread.png');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

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

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


/*------------------ Future protection styling ----------------*/
.future-protection-imgs
{
	margin: 2rem 0;
}

.future-protection-img
{
	border-radius: 6px;
}
/*------------------ Future protection styling ----------------*/



/*----------------------- Company value --------------------------*/
.values .container
{
	text-align: center;
}

.value
{
	margin: 3.6rem 0;
}

.value ion-icon
{
	color: var(--yellow-color);
	font-size: 2.6rem;
}

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



/*----------------------------- Key Numbers ------------------------------*/
.key-numbers
{
	background: linear-gradient(rgba(150, 60, 221, 0.1), rgba(124, 10, 02, 0.8)), 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;
}
/*----------------------------- Key Numbers ------------------------------*/




/*------------------------------- Highlights --------------------------------*/
.highlight
{
	margin: 2.8rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.highlight ion-icon
{
	color: var(--yellow-color);
	font-size: 3.2rem;
}

.highlight-heading
{
	font-size: 1.4rem;
	font-weight: 600;
}
/*------------------------------- Highlights --------------------------------*/



/*------------------------------- Our Team -------------------------------------*/
.team-members
{
	margin: 2rem 0;
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.team-member .member-img
{
	border-radius: 6px;
}

.team-member .member-content
{
	padding: 1rem;
}

.team-member .member-designation
{
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
}

.team-member .member-name
{
	font-size: 1.6rem;
	font-weight: 600;
	margin: 0.6rem 0;
}
/*------------------------------- Our Team -------------------------------------*/



/*--------------------------------- About CTA -------------------------------------*/
.about-cta
{
	background: linear-gradient(rgba(150, 60, 221, 0.1), rgba(124, 10, 02, 0.8)), url("../img/hero-bg.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.about-cta .container .row
{
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
/*--------------------------------- About CTA -------------------------------------*/







/*-----------------------------------------------------------------------------------------*/
/*-------------------------------- Desktop screen styling --------------------------------*/
/*-----------------------------------------------------------------------------------------*/
@media screen and (min-width: 789px)
{
	/*----------- Breadcrumb styling ----------*/
	.breadcrumb-container 
	{
		height: 50vh;
	}


	/*-------------- Future styling --------------*/
	.future .container
	{
		text-align: center;
	}

	.future .para-line
	{
		max-width: 1050px;
		margin: 0 auto;
	}

	.future-protection-imgs
	{
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 1rem;
	}


	/*------------------------ Company values -----------------------*/
	.company-values
	{
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 4rem;
	}


	/*------------------------- Key Numbers ---------------------------*/
	.key-numbers .container .para-line
	{
		max-width: 800px;
	}

	.key-num-row
	{
		justify-content: center;
		align-items: flex-start;
	}

	.key-num-2-col
	{
		margin-top: 4rem;
	}


	/*------------------------------- Highlights -------------------------------*/
	.company-highlights .container
	{
		display: grid;
		grid-template-rows: repeat(2, 1fr);
		grid-template-columns: repeat(3, 1fr);
		gap: 4rem;
	}
	/*------------------------------- Highlights -------------------------------*/



	/*------------------------------------- Our team ----------------------------*/
	.our-team .container
	{
		text-align: center;
	}

	.team-members
	{
		flex-direction: row;
	}

	.team-member .member-content
	{
		text-align: left;
	}
	/*------------------------------------- Our team ----------------------------*/



	/*------------------------------------ About CTA ----------------------------*/
	.about-cta .container .row
	{
		flex-direction: row;
	}

	.cta-content-col
	{
		width: 160%;
		text-align: left;
	}

	.cta-btn-col
	{
		width: 40% !important;
	}
	/*------------------------------------ About CTA ----------------------------*/
}

/* About Hero Section */
.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.about-badge {
    display: inline-block;
    padding: 8px 20px;
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.badge-red {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.badge-blue {
    background: linear-gradient(135deg, #000000, #333333);
}

.badge-green {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #000000;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.stat-icon ion-icon {
    font-size: 24px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0000;
    margin: 5px 0;
    line-height: 1;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat-number.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    text-align: center;
}

/* About Features Section */
.about-features {
    padding: 80px 0;
    background: white;
}

.about-features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon ion-icon {
    font-size: 30px;
    color: #ff0000;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #333);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

.about-cta .container {
    position: relative;
    z-index: 1;
}

.about-cta .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content-col {
    flex: 1;
}

.cta-btn-col {
    margin-left: 30px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-features .container {
        grid-template-columns: 1fr;
    }

    .about-cta .row {
        flex-direction: column;
        text-align: center;
    }

    .cta-btn-col {
        margin-left: 0;
        margin-top: 30px;
    }

    .about-badges {
        justify-content: center;
    }
    
    .about-badge {
        font-size: 13px;
        padding: 6px 15px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 25px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon ion-icon {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 40px 0;
    }

    .about-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
}