:root {
    --primary: #4e9f7a;
    --primary-dark: #3d7e5f;
    --secondary: #f8b400;
    --dark: #1a1a2e;
    --light: #f5f5f5;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    color: var(--dark);
    line-height: 1.6;
}
a{
    text-decoration: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.logo {
    /* font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase; */
    width: 255px;
}
.logo img{
    width: 100%;
}

.logo span {
    color: var(--primary);
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.2s;
    font-size: 16px;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-button {
    background-color: var(--primary);
    color: white !important;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.1;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}
.hero-container{
    display: flex;
    flex-wrap: wrap; /* Allow content to stack on smaller screens */
    gap: 2rem;
    align-items: center;
}
.hero-content{
    flex: 1 1 400px;
    min-width: 300px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 850;
    color: var(--dark);
    text-align: left;
    text-wrap: balance;
}

.hero-content h1 span {
    color: var(--primary);
    display: inline-flex;
}
.hero-content p:first-of-type{
    color: var(--primary-dark);
    font-weight: 800;
    /* text-transform: uppercase; */
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    font-weight: 400;
    text-align: left;
}

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

.secondary-button {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.2s;
    font-size: 16px;
}

.secondary-button:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-images {
    flex: 1 1 500px; /* allow to shrink or grow */
    max-width: 100%;
    min-width: 500px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}
.hero-image {
    height: 350px; /* Adjust as needed */
    width: 100%;
    flex-shrink: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 900;
    color: var(--dark);
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.2s;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: rgba(78, 159, 122, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 1rem;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: white;
    clip-path: polygon(0 70%, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}
.how-it-works-content{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
:root {
    --trap-width: 300px;
    --trap-height: 120px;
    --trap-bg: #ddd;
    --background: #aaa;
    --badge-color: #ff4646;
    --badge-size: 60px;
    --corner-radius: 20px;
    --font-size: 2rem;
    --perspective: 800px; /* lower = more dramatic */
    --rotation: 5deg; /* small rotation */
  }

.trap-wrapper {
    position: relative;
    width: var(--trap-width);
    height: var(--trap-height);
    display: flex;
    align-items: center;
    padding-left: calc(var(--badge-size) / 1.4 + 1rem);
    box-sizing: border-box;
    border-radius: var(--corner-radius);
    background: var(--light);
    transform: perspective(300px) rotateY(6deg);
    transform-style: preserve-3d;
    transition: all 0.2s ease;
    /* overflow: hidden; */
    /* cursor: pointer; */
    margin-left: 3rem;
    box-shadow: 0 0px 27px 0px #0000002e;
}

.trap-text {
    font-size: var(--font-size);
    font-weight: 500;
    color: #000;
    pointer-events: none;
    transform: perspective(400px) rotateY(0deg);
    transform-style: preserve-3d;
}

.step-badge {
    position: absolute;
    width: var(--badge-size);
    height: var(--badge-size);
    background: var(--primary);
    border-radius: 0.8rem;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) perspective(0px) rotateY(0deg);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-badge i{
    font-size: 1.5rem ;
    color: var(--light);
}

.steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    /* margin-top: 50px; */
    /* flex-wrap: wrap; */
    position: relative;
    z-index: 2;
    flex: 0 1 auto;
}
.steps-image{
    max-width: 440px;
    /* height: 100%; */
    flex: 0 1 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border-radius: 1.2rem;
}
.steps-image img{
    object-fit: cover;
        width: 100%;
}

.card-image {
    max-width: 350px;
    border-radius: 15px;
    background-color: #f8f9fa;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    margin: 20px auto;
    position: relative;
    perspective: 1000px;
    /* Ensure the container is tall enough for both images */
    min-height: 200px; /* Adjust based on your image heights */
}

/* Container for the front and back images */
.card-image-content {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card-image:hover .card-image-content {
    transform: rotateY(180deg);
}

/* Style for both front and back images */
.card-image .front,
.card-image .back {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    backface-visibility: hidden;
    position: relative;
}

/* Position the back image absolutely over the front */
.card-image .back {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
}

/* Style for the title */
.card-image h4 {
    margin-top: 15px;
    transition: all 0.8s;
    position: relative; /* Ensure it stays above the flipped images */
    z-index: 1;
    background: #f8f9fa; /* Match card background */
    padding: 5px;
    border-radius: 5px;
}




.trap-text h4 {
    margin-bottom: 0px;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.2rem;
}

.trap-text p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.2;
    text-wrap: balance;
    margin-bottom: 0.5rem;
}

/* Teams Section */

.teams {
    padding: 150px 0 100px;
    background-color: white;
}

.teams-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.teams-text {
    flex: 1 1 400px;
    min-width: 300px;
}

.teams-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--dark);
}

.teams-text p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.teams-images {
    flex: 1 1 500px;
    max-width: 100%;
    min-width: 0;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.teams-image {
    height: 350px;
    width: 100%;
}
.teams-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.teams-images::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary);
    border-radius: 20px;
    top: -20px;
    left: -20px;
    z-index: -1;
}

@media (max-width: 768px) {
    .teams-content {
        flex-direction: column;
    }
}


/* Products Section */
.products {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-image {
    height: 250px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.5rem;
}

.product-info p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1rem;
}
/*Flipping The Image*/



/*PRICE COLOR CODE START*/
#generic_price_table .generic_content {
	background-color: var(--primary-dark);
    box-shadow: 0px 0px 32px 0px #2d2d2d21;
}

#generic_price_table .generic_content .generic_head_price {
	background-color: var(--primary-dark);
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_head_content
	.head_bg {
	border-color: #e4e4e4 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e4e4e4;
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_head_content
	.head
	span {
	color: #ffffff;
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_price_tag
	.price
	.sign {
	color: #ffffff;
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_price_tag
	.price
	.currency {
	color: #ffffff;
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_price_tag
	.price
	.cent {
	color: #ffffff;
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_price_tag
	.month {
	color: #ffffff;
}

#generic_price_table .generic_content .generic_feature_list ul li {
	color: #ffffff;
}

#generic_price_table .generic_content .generic_feature_list ul li span {
	color: #ffffff;
}
#generic_price_table .generic_content .generic_feature_list ul li:hover {
	background-color: #0000002e;
	border-left: 5px solid var(--primary);
}

#generic_price_table .generic_content .generic_price_btn a {
	border: 1px solid var(--primary);
	color: var(--primary);
}

#generic_price_table
	.generic_content.active
	.generic_head_price
	.generic_head_content
	.head_bg,
#generic_price_table
	.generic_content:hover
	.generic_head_price
	.generic_head_content
	.head_bg {
	border-color: var(--primary) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) var(--primary);
	color: #fff;
}

#generic_price_table
	.generic_content:hover
	.generic_head_price
	.generic_head_content
	.head
	span,
#generic_price_table
	.generic_content.active
	.generic_head_price
	.generic_head_content
	.head
	span {
	color: #fff;
}

#generic_price_table .generic_content:hover .generic_price_btn a,
#generic_price_table .generic_content.active .generic_price_btn a {
	background-color: var(--primary);
	color: #fff;
}

.row .table {
	padding: 28px 0;
}

/*PRICE BODY CODE START*/

#generic_price_table .generic_content {
	overflow: hidden;
	position: relative;
	text-align: center;
}

#generic_price_table .generic_content .generic_head_price {
	margin: 0 0 20px 0;
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_head_content {
	margin: 0 0 50px 0;
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_head_content
	.head_bg {
	border-style: solid;
	border-width: 90px 1411px 23px 399px;
	position: absolute;
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_head_content
	.head {
	padding-top: 40px;
	position: relative;
	z-index: 1;
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_head_content
	.head
	span {
	font-family: "Raleway", sans-serif;
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 2px;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag {
	padding: 0 0 20px;
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_price_tag
	.price {
	display: block;
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_price_tag
	.price
	.sign {
	display: inline-block;
	font-family: "Lato", sans-serif;
	font-size: 28px;
	font-weight: 400;
	vertical-align: middle;
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_price_tag
	.price
	.currency {
	font-family: "Lato", sans-serif;
	font-size: 60px;
	font-weight: 300;
	letter-spacing: -2px;
	line-height: 60px;
	padding: 0;
	vertical-align: middle;
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_price_tag
	.price
	.cent {
	display: inline-block;
	font-family: "Lato", sans-serif;
	font-size: 24px;
	font-weight: 400;
	vertical-align: bottom;
}

#generic_price_table
	.generic_content
	.generic_head_price
	.generic_price_tag
	.month {
	font-family: "Lato", sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 3px;
	vertical-align: bottom;
}

#generic_price_table .generic_content .generic_feature_list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#generic_price_table .generic_content .generic_feature_list ul li {
	font-family: "Lato", sans-serif;
	font-size: 18px;
	padding: 15px 0;
	transition: all 0.2s ease-in-out 0s;
}
#generic_price_table .generic_content .generic_feature_list ul li:hover {
	transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
}
#generic_price_table .generic_content .generic_feature_list ul li .fa {
	padding: 0 10px;
}
#generic_price_table .generic_content .generic_price_btn {
	margin: 20px 0 32px;
}

#generic_price_table .generic_content .generic_price_btn a {
	border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	-webkit-border-radius: 50px;
	display: inline-block;
	font-family: "Lato", sans-serif;
	font-size: 18px;
	outline: medium none;
	padding: 12px 30px;
	text-decoration: none;
	text-transform: uppercase;
}

#generic_price_table .generic_content,
#generic_price_table .generic_content:hover,
#generic_price_table
	.generic_content
	.generic_head_price
	.generic_head_content
	.head_bg,
#generic_price_table
	.generic_content:hover
	.generic_head_price
	.generic_head_content
	.head_bg,
#generic_price_table
	.generic_content
	.generic_head_price
	.generic_head_content
	.head
	h2,
#generic_price_table
	.generic_content:hover
	.generic_head_price
	.generic_head_content
	.head
	h2,
#generic_price_table .generic_content .price,
#generic_price_table .generic_content:hover .price,
#generic_price_table .generic_content .generic_price_btn a,
#generic_price_table .generic_content:hover .generic_price_btn a {
	transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
}
@media (max-width: 320px) {
}

@media (max-width: 767px) {
	#generic_price_table .generic_content {
		margin-bottom: 75px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#generic_price_table .col-md-3 {
		float: left;
		width: 50%;
	}

	#generic_price_table .col-md-4 {
		float: left;
		width: 50%;
	}

	#generic_price_table .generic_content {
		margin-bottom: 75px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
}
@media (min-width: 1200px) {
}
#generic_price_table_home {
	font-family: "Raleway", sans-serif;
}

.text-center h1,
.text-center h1 a {
	color: #7885cb;
	font-size: 30px;
	font-weight: 300;
	text-decoration: none;
}
.demo-pic {
	margin: 0 auto;
}
.demo-pic:hover {
	opacity: 0.7;
}

#generic_price_table_home ul {
	margin: 0 auto;
	padding: 0;
	list-style: none;
	display: table;
}
#generic_price_table_home li {
	float: left;
}
#generic_price_table_home li + li {
	margin-left: 10px;
	padding-bottom: 10px;
}
#generic_price_table_home li a {
	display: block;
	width: 50px;
	height: 50px;
	font-size: 0px;
}
#generic_price_table_home .blue {
	background: #3498db;
	transition: all 0.2s ease-in-out 0s;
}
#generic_price_table_home .emerald {
	background: #2ecc71;
	transition: all 0.2s ease-in-out 0s;
}
#generic_price_table_home .grey {
	background: #7f8c8d;
	transition: all 0.2s ease-in-out 0s;
}
#generic_price_table_home .midnight {
	background: #34495e;
	transition: all 0.2s ease-in-out 0s;
}
#generic_price_table_home .orange {
	background: #e67e22;
	transition: all 0.2s ease-in-out 0s;
}
#generic_price_table_home .purple {
	background: #9b59b6;
	transition: all 0.2s ease-in-out 0s;
}
#generic_price_table_home .red {
	background: #e74c3c;
	transition: all 0.2s ease-in-out 0s;
}
#generic_price_table_home .turquoise {
	background: #1abc9c;
	transition: all 0.2s ease-in-out 0s;
}

#generic_price_table_home .blue:hover,
#generic_price_table_home .emerald:hover,
#generic_price_table_home .grey:hover,
#generic_price_table_home .midnight:hover,
#generic_price_table_home .orange:hover,
#generic_price_table_home .purple:hover,
#generic_price_table_home .red:hover,
#generic_price_table_home .turquoise:hover {
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	transition: all 0.2s ease-in-out 0s;
}
#generic_price_table_home .divider {
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
	padding: 20px;
}
#generic_price_table_home .divider span {
	width: 100%;
	display: table;
	height: 2px;
	background: #ddd;
	margin: 50px auto;
	line-height: 2px;
}
#generic_price_table_home .itemname {
	text-align: center;
	font-size: 50px;
	padding: 50px 0 20px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 40px;
	text-decoration: none;
	font-weight: 300;
}
#generic_price_table_home .itemnametext {
	text-align: center;
	font-size: 20px;
	padding-top: 5px;
	text-transform: uppercase;
	display: inline-block;
}
#generic_price_table_home .footer {
	padding: 40px 0;
}

.price-heading {
	text-align: center;
}
.price-heading h1 {
	color: #666;
	margin: 0;
	padding: 0 0 50px 0;
}
.demo-button {
	background-color: #333333;
	color: #ffffff;
	display: table;
	font-size: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 50px;
	outline-color: -moz-use-text-color;
	outline-style: none;
	outline-width: medium;
	padding: 10px;
	text-align: center;
	text-transform: uppercase;
}
.bottom_btn {
	background-color: #333333;
	color: #ffffff;
	display: table;
	font-size: 28px;
	margin: 60px auto 20px;
	padding: 10px 25px;
	text-align: center;
	text-transform: uppercase;
}
.demo-button:hover {
	background-color: #666;
	color: #fff;
	text-decoration: none;
}
.bottom_btn:hover {
	background-color: #666;
	color: #fff;
	text-decoration: none;
}


/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 25px;
    background-color: #f8f9fa;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--dark);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 500px;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.2s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.cx-accordion{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}
.cx-accordion-item{
    background-color: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
    border-radius: 0.8rem !important;
    overflow: hidden;
}
.cx-accordion-item:hover{
    border: 1px solid var(--primary) !important;
}
.cx-accordion-button{
    font-size: 1.1rem;
    font-weight: 700;
    padding: 25px;
    background-color: #f8f9fa;
}
.cx-accordion-button:not(.collapsed){
    color: var(--primary-dark);
    background-color: #f8f9fa;
    box-shadow: none;
}
.accordion-button:focus{
    box-shadow: none;
}
/* Reviews */
.reviews {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.review-cards {
    /* display: flex;
    gap: 30px;
    margin-top: 50px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f1f1; */
}

/* 
.review-cards::-webkit-scrollbar {
    height: 8px;
}

.review-cards::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.review-cards::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
} */

.review-card {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.product-card {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.review-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: serif;
}

.review-author {
    font-weight: 700;
    color: var(--dark);
}
.owl-carousel {
    width: 100%;
    overflow: hidden;
}

/* Equal Heights for OwlCarousel 2 */
/* .owl-carousel {
	.owl-stage {
		display: flex;
	}
	.owl-item {
		display: flex;
		flex: 1 0 auto;
	}
	.thumbnail {
		display: flex;
		flex-direction: column;
		margin: 0 15px;
		.caption {
			display: flex;
			flex: 1 0 auto;
			flex-direction: column;
			.flex-text {
				flex-grow: 1;
			}
		}
	}
} */


/* CTA Section */
.cta {
    padding: 120px 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
}

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

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.2s;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    color: #adb5bd;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .teams-content {
        flex-direction: column;
    }
    
    .teams-images::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .step {
        max-width: 100%;
        width: 100%;
    }
    
    .review-card {
        min-width: 280px;
    }
}