@import 'https://fonts.googleapis.com/css?family=Material+Icons|Roboto:100,200,300,400,500,600,700,800,900|Open+Sans:100,200,300,400,500,600,700,800,900|Montserrat:100,200,300,400,500,600,700,800,900|Cairo:100,200,300,400,500,600,700,800,900|Righteous:100,200,300,400,500,600,700,800,900|Poppins:100,200,300,400,500,600,700,800,900';

:root {
    --primary-color: #d31951;
    --primary-color-rgb: 211, 25, 81;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Top Banner Styles */
.top-banner {
    background-color: #000000;
    color: var(--white);
    padding: 10px 0;
}

@media (max-width: 992px) {
	.top-banner {
		display:none;
	}	
}

.top-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding-right: 160px;
}

.btn-connexion {
    background-color: transparent;
    color: var(--white);
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-weight: 600;
    font-size: 15px;
}

.btn-inscription {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e83a6c 100%);
    color: var(--white);
    transform: skew(-20deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 40px;
    font-weight: bold;
    font-size: 16px;
    position: absolute;
    right: 0;
    bottom: -25px;
    z-index: 999999;
    transition: all 0.3s ease;
    border: none;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.btn-inscription span {
    display: inline-block;
    transform: skew(20deg);
    line-height: 1;
}

.btn-inscription:hover {
    background: linear-gradient(135deg, #e83a6c 0%, var(--primary-color) 100%);
    opacity: 0.95;
    transform: skew(-20deg) scale(1.05);
    box-shadow: 0 4px 15px rgba(211, 25, 81, 0.3);
}

.btn-connexion:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Main Header Styles */
.main-header {
    padding: 20px 0;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 99999;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mobile{
	display:none;
}

@media (max-width: 992px) {
	.header-right {
		display:none;
		position:absolute;
		background:#FFFFFF;
		top:100%;
		left:0px;
		width:100%;
	}	
	.mobile{
		display:block;
	}
}

.header-mobile{
	display:none;
}

@media (max-width: 992px) {
	.header-mobile{
		display:block;
	}	
	.header-mobile a{
		font-size:20px;
		color:#242424;
	}	
}

.logo img{
    width:220px;
}

@media (max-width: 992px) {
	.logo img{
		width:160px;
	}	
}

.menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 18px;
	font-family:'Poppins';
    transition: color 0.3s ease;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.menu a:hover,
.menu a.active {
    color: var(--primary-color);
}

.support {
    display: flex;
    align-items: center;
    gap: 10px;
}

.support i {
    font-size: 24px;
    color: var(--primary-color);
}

.support-text {
    display: flex;
    flex-direction: column;
}

.support-text span {
    font-size: 12px;
    color: var(--text-color);
}

.support-text .phone {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
}

/* Hero Slider */
.hero-section {
    position: relative;
    background: var(--dark);
    height: 800px;
    width: 100%;
    margin-bottom: 60px;
	overflow:hidden;
}

.slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slider-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
    padding: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}


.slide {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-135deg, rgb(30, 140, 174) 0%, rgb(14, 37, 56) 100%);
	opacity:0.831;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    right: 0px;
    top: 0;
    width: 40%;
    height: 100%;
    background-color: var(--primary-color);
    transform: skew(-12deg);
    z-index: 2;
    transition: transform 0.5s ease-in-out;
}

.slide.active::before {
    animation: floatParallelogram 3s ease-in-out infinite;
}

@keyframes floatParallelogram {
    0%, 100% {
        transform: translateX(0) skew(-12deg);
    }
    50% {
        transform: translateX(-20px) skew(-12deg);
    }
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

.text-content {
    flex: 0 0 45%;
    max-width: 600px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.image-content {
    flex: 0 0 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    margin-right: -50px;
    z-index: 2;
    height: 100%;
}

.transparent-image {
    height: 95%;
    width: auto;
    transform: scale(1.3);
    transition: all 0.5s ease-in-out;
}

@media (max-width: 992px) {
    .hero-section {
        height: 600px;
    }

    .slide::before {
        width: 75%;
        right: -50px;
    }

    .slide-content {
        padding: 0 40px;
    }

    .text-content {
        flex: 0 0 50%;
    }

    .image-content {
        flex: 0 0 50%;
        margin-right: -20px;
    }

    .transparent-image {
        height: 85%;
        transform: scale(1.2);
    }

    .image-content {
        height: 85%;
    }

    @keyframes floatParallelogram {
        0%, 100% {
            transform: translateX(0) skew(-10deg);
        }
        50% {
            transform: translateX(-15px) skew(-10deg);
        }
    }

    .slide::before {
        transform: skew(-10deg);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 700px;
    }

    .slide::before {
        width: 100%;
        right: -20px;
        transform: skew(-8deg);
    }

    .slide-content {
        padding: 0 20px;
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        flex: none;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .transparent-image {
        height: 100%;
        transform: scale(1);
    }

    .image-content {
        height: 50%;
    }

    @keyframes floatParallelogram {
        0%, 100% {
            transform: translateX(0) skew(-8deg);
        }
        50% {
            transform: translateX(-10px) skew(-8deg);
        }
    }

    .slide::before {
        transform: skew(-8deg);
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100px) scale(1.3);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1.3);
        opacity: 1;
    }
}

@keyframes floatHorizontal {
    0%, 100% {
        transform: translateX(0) scale(1.3);
    }
    50% {
        transform: translateX(-20px) scale(1.3);
    }
}

.slide.active .image-content[data-animation="fadeInRight"] {
    animation: slideInRight 0.8s ease-in-out forwards;
}

.slide.active .transparent-image {
    animation: floatHorizontal 3s ease-in-out infinite;
}

@media (max-width: 992px) {
    .image-content {
        margin-right: -20px;
    }

    .transparent-image {
        max-width: 120%;
        transform: scale(1.3);
    }
    
    @keyframes slideInRight {
        0% {
            transform: translateX(50px) scale(1.2);
            opacity: 0;
        }
        100% {
            transform: translateX(0) scale(1.2);
            opacity: 1;
        }
    }

    @keyframes floatHorizontal {
        0%, 100% {
            transform: translateX(0) scale(1.2);
        }
        50% {
            transform: translateX(-15px) scale(1.2);
        }
    }
}

.subtitle {
    font-size: 18px;
	font-family:'Poppins';
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    color: rgba(255, 255, 255, 0.9);
}

.title {
    font-size: 64px;
	font-family:'Poppins';
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(20px);
}

.description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    color: rgba(255, 255, 255, 0.9);
}

.buttons {
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    gap: 20px;
}

.image-content img {
    max-width: 90%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
}

/* Hero Slider Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e83a6c 100%);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e83a6c 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 25, 81, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 14px 29px;
    border: 2px solid var(--white);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations */
[data-animation="fadeInUp"] {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

[data-animation="fadeInRight"] {
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.slide.active [data-animation] {
    animation-play-state: running;
}

/* Slider Navigation */
.carousel-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
    position: absolute;
    top: -60px;
    right: 0;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.carousel-arrow i {
    font-size: 20px;
    color: #333;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.zone-block {
    flex: 0 0 calc(50% - 10px);
    min-width: 280px;
    max-width: none;
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.zone-block::-webkit-scrollbar {
    width: 6px;
}

.zone-block::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.zone-block::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.zone-block::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (max-width: 768px) {
    .carousel-container {
        max-width: 400px;
    }
    
    .zone-block {
        flex: 0 0 100%;
    }
}

/* Services Section */
.services-section {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    padding: 0 20px 60px;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-item {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e83a6c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .services-section {
        margin-top: -40px;
    }
    
    .services-grid {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .services-section {
        margin-top: -20px;
    }
    
    .services-grid {
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .top-banner {
        padding: 10px 0;
    }
    
    .main-header {
        padding: 20px 0;
    }
    
    .menu ul {
        gap: 20px;
    }
    
    .hero-slider {
        height: 600px;
    }
    
    .title {
        font-size: 48px;
        margin-bottom: 25px;
    }
    
    .subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .top-banner .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info span {
        display: block;
        margin: 5px 0;
    }
    
    .main-header .container {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .header-right {
        flex-direction: column;
        width: 100%;
		padding:15px;
        gap: 20px;
		background:#FBFBFB;
		border-bottom:1px solid #EEEEEE;
    }
    
    .menu {
        width: 100%;
    }
    
    .menu ul {
		border-top:1px solid #EEEEEE;
        display:block;
    }
	
    .menu ul li {
		padding:10px;
		border-bottom:1px solid #EEEEEE;
    }

    .menu ul li a{
        font-size:16px;
		font-weight:600;
    }

    .menu ul li a::after{
        display:none;
    }

	.contact-mobile{
		margin:30px 0px;
	}
	
	.contact-mobile h3{
		margin-left:5px;
		margin-bottom:15px;
		font-size:30px;
	}

	.contact-mobile ul{
		border:0px;
	}
	
	.contact-mobile ul li{
		border:0px;
	}
	
	.contact-social-links{
		margin-top:20px;
		padding-top:20px;
		border-top:1px solid #EEEEEE;
	}	
	
	.contact-social-link{
		padding:10px;
		font-size:24px;
	}
	
	.support{
		display:none;
	}
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-content {
        padding: 30px 0;
        text-align: center;
		justify-content:space-around;
    }
	
    .container {
        justify-content:center;
    }
    
    .title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .buttons {
        justify-content: center;
    }
    
    .image-content {
        display: none;
    }
    
    .btn-primary, .btn-outline {
        margin: 0;
        width: 100%;
    }
}

/* Feature Section */
.feature-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-images {
    position: relative;
    padding: 40px 20px;
}

.feature-image-main {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-image-small {
    position: absolute;
    width: 65%;
    right: -40px;
    bottom: -30px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.feature-images:hover .feature-image-main {
    transform: translateY(-10px);
}

.feature-images:hover .feature-image-small {
    transform: translate(-10px, -10px);
}

.floating-icons {
    position: absolute;
    left: -30px;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 2;
}

.floating-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e83a6c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(211, 25, 81, 0.2);
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(211, 25, 81, 0.3);
    background: linear-gradient(135deg, #e83a6c 0%, var(--primary-color) 100%);
}

.floating-icon:nth-child(2) {
    animation-delay: 1.5s;
}

.floating-icon i {
    font-size: 35px;
    color: white;
}

.feature-content {
    padding-right: 60px;
}

.feature-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 3px;
    display: block;
}

.feature-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #222;
}

.feature-description {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

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

@media (max-width: 992px) {
    .feature-section {
        padding: 80px 0;
    }

    .feature-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .feature-content {
        padding-right: 0;
        text-align: center;
        order: 1;
    }
    
    .feature-images {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .feature-title {
        font-size: 36px;
    }

    .floating-icons {
        left: 0;
    }
}

@media (max-width: 576px) {
    .feature-section {
        padding: 60px 0;
    }
    
    .feature-title {
        font-size: 30px;
    }
    
    .feature-image-small {
        right: -20px;
        bottom: -20px;
        width: 60%;
    }

    .floating-icon {
        width: 70px;
        height: 70px;
    }

    .floating-icon i {
        font-size: 30px;
    }
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?q=80&w=2075');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 25, 81, 0.9) 0%, rgba(232, 58, 108, 0.9) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1;
    color: white;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '+';
    position: absolute;
    right: -20px;
    top: 0;
    font-size: 36px;
    font-weight: 600;
    color: white;
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

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

@media (max-width: 576px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-number::after {
        font-size: 32px;
        right: -15px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

/* Features Cards Section */
.features-cards {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header-container {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.section-header .subtitle {
    font-size: 18px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
	opacity:1;
}

.section-header .title {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
    line-height: 1.2;
	opacity:1;
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 25, 81, 0.95) 0%, rgba(232, 58, 108, 0.95) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

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

.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0;
    transition: all 0.3s ease;
}

.description-content {
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.description-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .description-content {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.feature-card:hover .header-content h3,
.feature-card:hover .description-content p {
    color: white;
}

.feature-card:hover .card-content {
    transform: translateY(-5px);
}

.feature-card:hover .icon-box {
    background: white;
}

.feature-card:hover .icon-box i {
    color: var(--primary-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.icon-box i {
    font-size: 30px;
    color: white;
}

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

    .section-header .title {
        font-size: 36px;
    }
}

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

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header .title {
        font-size: 32px;
    }
}

/* Services Process Section */
.services-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.services-process .section-header-container {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.services-process .subtitle {
    color: var(--primary-color);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.services-process .title {
    color: white;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-cards-left, .process-cards-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    padding-left: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: visible;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card-number {
    font-size: 28px;
    font-weight: 800;
    color: white;
    position: absolute;
    left: -15px;
    top: 20px;
    background: var(--primary-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.process-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.process-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.process-illustration {
    width: 280px;
    height: 380px;
    position: relative;
	top:100px;
    border-radius: 20px;
    animation: floatUpDown 4s ease-in-out infinite;
}

.process-illustration img{
    width:100%;
	transform:scale(2);
    transition: transform 0.3s ease-in-out;
}

.process-illustration::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 70%);
    animation: shadowPulse 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes shadowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) scale(0.8);
    }
}

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

.process-card:hover h3 {
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .process-illustration {
        width: 100%;
        max-width: 300px;
        height: 300px;
        margin: 30px auto;
    }

    .process-cards-left, .process-cards-right {
        gap: 20px;
    }
}

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

    .services-process .title {
        font-size: 32px;
    }

    .process-card {
        padding: 15px;
        padding-left: 40px;
    }

    .card-number {
        font-size: 24px;
        width: 40px;
        height: 40px;
        left: -12px;
        top: 15px;
    }

    .process-card h3 {
        font-size: 16px;
    }

    .process-card p {
        font-size: 12px;
    }
}

/* Pricing & Zones Section */
.pricing-zones {
    padding: 100px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.pricing-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.pricing-content .subtitle {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
	opacity:1.0;
}

.pricing-content .title {
    font-size: 50px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
	opacity:1.0;
}

.pricing-content .description {
    font-size: 20px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
	opacity:1.0;
}

.search-zone {
    margin-top: 30px;
}

.search-container {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    max-width: 500px;
}

.search-container input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 20px;
    outline: none;
    transition: all 0.3s ease;
}

.search-container input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(211, 25, 81, 0.1);
}

.search-container button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-container button:hover {
    background: #b31441;
}

.search-container button i {
    font-size: 20px;
}

.city-highlight {
    background-color: rgba(211, 25, 81, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 4px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.zone-block {
    flex: 0 0 calc(50% - 20px);
    min-width: 280px;
    max-width: none;
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.zone-block h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cities-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    word-break: break-word;
}

.cities-list li:last-child {
    border-bottom: none;
}

.city {
    color: #666;
    font-size: 20px;
}

.price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
}

.carousel-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 15px;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(211, 25, 81, 0.3);
}

.carousel-arrow i {
    font-size: 24px;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-content {
        max-width: 100%;
        text-align: center;
    }

    .search-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .zone-block {
        flex: 0 0 100%;
    }
}

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

    .pricing-content .title {
        font-size: 32px;
    }

    .search-container {
        flex-direction: column;
    }

    .search-container button {
        width: 100%;
        justify-content: center;
    }
}

@keyframes highlight {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(211, 25, 81, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #fff;
}

.footer-container {
    padding: 80px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-block {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 200px;
}

.company-description {
    color: #FFFFFF;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 25px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-block h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

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

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-size: 16px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.newsletter-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid #333;
    border-radius: 6px;
    background: #2a2a2a;
    color: #fff;
    font-size: 16px;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.newsletter-form button:hover {
    background: #b31441;
}

.footer-bottom {
    background: #111;
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-block {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
	section{
		overflow:hidden;
	}
    /* Existing mobile styles */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-block {
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    /* Slider mobile styles */
    .slide {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 0;
    }

    .slide-content {
        width: 100%;
        padding-right: 0;
        margin: 0;
    }

    .slide-title {
        font-size: 32px;
        margin-bottom: 15px;
        padding: 0;
    }

    .slide-description {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .slide-buttons {
        justify-content: center;
        padding: 0;
        gap: 15px;
    }

    .slide-image {
        display: none;
    }

    .slide-content .feature-stats {
        justify-content: center;
        margin-top: 30px;
        gap: 20px;
        padding: 0;
    }

    .feature-stat {
        text-align: center;
        padding: 0;
    }

    .grid {
        gap: 0;
		padding: 0 10px;
    }

    .slide-buttons {
        justify-content: center;
        padding: 0;
        gap: 15px;
    }

    .slide-image {
        display: none;
    }

    .slide-content .feature-stats {
        justify-content: center;
        margin-top: 30px;
        gap: 20px;
        padding: 0;
    }

    .feature-stat {
        text-align: center;
        padding: 0;
    }

    .grid {
        gap: 0;
    }
	
	.pricing-content{
		padding:0px 15px;
	}
	
	.footer-block{
		padding:0px 15px;
	}
}

@media (max-width: 992px) {
    .carousel-container {
        max-width: 600px;
        padding: 0 15px;
    }
    
    .zone-block {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        max-width: 400px;
        padding: 0 10px;
    }
    
    .zone-block {
        flex: 0 0 100%;
        min-width: auto;
        padding: 15px;
        margin: 0px;
    }

    .cities-list li {
        font-size: 16px;
        padding: 6px 3px;
    }

    .zone-block h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

/* Signup Page */
.signup-page {
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img8.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: calc(100vh - 140px);
}

.signup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.signup-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.signup-content .title {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--text-color);
    opacity: 1.0;
}

.signup-content .description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    opacity: 1.0;
}

/* Account Type Selection */
.account-type {
    margin-bottom: 25px;
}

.account-type h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 25px;
    background: #f8f9fa;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.radio-option label i {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.radio-option label span {
    font-weight: 500;
    color: var(--text-color);
}

/* Form Grid and Groups */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 500;
}
.form-group label[for='terms'] {
    display: block;
}

.form-group label[for='terms'] a {
    color: var(--primary-color);
}


.form-group label i {
    color: var(--primary-color);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
    outline: none;
}

.form-group input::placeholder {
    color: #FFFFFF;
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
    outline: none;
}

.form-group select::placeholder {
    color: #FFFFFF;
}

/* Password Groups */
.password-group {
    margin-bottom: 15px;
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0;
}

.toggle-password:hover {
    color: var(--primary-color);
}

/* Checkbox */
.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.form-group.checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.form-group.checkbox label {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
}

/* Submit Button */
.signup-form button[type="submit"] {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-form button[type="submit"]:hover {
    background: #b31441;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

/* Benefits Section */
.signup-benefits {
    color: #fff;
    padding: 30px;
}

.signup-benefits h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: left;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .signup-container {
        grid-template-columns: 1fr;
    }

    .signup-benefits {
        order: -1;
    }

    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .signup-page {
        padding: 30px 0;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .radio-group {
        flex-direction: column;
    }

    .radio-option label {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        padding: 12px;
    }

    .radio-option label i {
        margin-bottom: 0;
    }

    .signup-content,
    .signup-benefits {
        padding: 20px;
    }
}

/* Thank You Page */
.thank-you-page {
    padding: 80px 0;
    background: #f8f9fa;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.success-icon {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 30px;
}

.thank-you-content .title {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 20px;
	opacity: 1.0;
}

.thank-you-content .description {
    color: #666;
    margin-bottom: 40px;
	opacity: 1.0;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #666;
}

.next-steps i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.action-buttons .btn {
    padding: 12px 25px;
    font-size: 15px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-buttons .btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
}

.action-buttons .btn-primary:hover {
    background: #b31441;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.action-buttons .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.action-buttons .btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.1);
}

@media (max-width: 768px) {
    .thank-you-page {
        padding: 40px 0;
    }

    .thank-you-content {
        padding: 40px 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* API Documentation */
.api-docs {
    padding: 40px 0;
}

.api-docs .container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
	align-items:normal;
}

.docs-sidebar {
    position: sticky;
    top: 20px;
    height: calc(100vh - 40px);
}

.docs-nav {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.docs-nav h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: var(--text-color);
}

.docs-nav ul {
    list-style: none;
    padding: 0;
}

.docs-nav a {
    display: block;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.docs-nav a:hover,
.docs-nav a.active {
    background: #f8f9fa;
    color: var(--primary-color);
}

.docs-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.docs-content section {
    margin-bottom: 60px;
}

.docs-content h1 {
    margin-bottom: 30px;
    color: var(--text-color);
}

.docs-content h2 {
    margin: 40px 0 20px;
    color: var(--text-color);
}

.code-block {
    background: #2d2d2d;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
}

.code-block code {
    color: #fff;
    font-family: monospace;
}

.endpoint {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.endpoint h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.method {
    display: inline-block;
    padding: 5px 10px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    font-family: monospace;
    margin-bottom: 15px;
}

.error-codes {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.error-codes th,
.error-codes td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.error-codes th {
    background: #f8f9fa;
    font-weight: 600;
    color: var(--text-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .api-docs .container {
        grid-template-columns: 1fr;
    }

    .docs-sidebar {
        position: relative;
        height: auto;
        top: 0;
    }

    .docs-content {
        padding: 20px;
    }

    .signup-content,
    .thank-you-content {
        padding: 30px 20px;
    }
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
	margin-top: 40px;
}

.clients-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 50px;
    font-weight: 600;
}

.clients-carousel {
    position: relative;
    padding: 20px 0;
}

.carousel-container {
    overflow: hidden;
    margin: 0 -20px;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 200px;
    height: 100px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.client-logo img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6 - 40px * 6));
    }
}

/* Add responsive styles */
@media (max-width: 768px) {
    .client-logo {
        flex: 0 0 150px;
        height: 80px;
        margin: 0 15px;
    }

    .client-logo img {
        max-width: 120px;
        max-height: 50px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 6 - 30px * 6));
        }
    }
}

/* Trust Section */
.trust-section {
    padding: 80px 0 0;
    background: #fff;
    overflow: hidden;
}

.trust-section .section-header-container {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.trust-section .section-header {
    max-width: 700px;
    margin: 0 auto;
}

.trust-section .trust-header {
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.trust-section .subtitle {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
	opacity:1;
}

.trust-section .title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
	opacity:1;
}

.trust-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.trust-section .subtitle {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.trust-section .title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.trust-section .section-header p {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
}

.trust-section .section-header h3{
	display:inline-block;
	padding:20px 40px;
    font-size: 22px;
    font-weight: 700;
    background: var(--primary-color);
    color: #FFFFFF;
	border-radius:40px;
}

.trust-image-container {
    max-width: 1200px;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin: 0 auto;
}

.trust-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .trust-section {
        padding: 40px 0 0;
    }

    .trust-section .section-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .trust-section .subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .trust-section .title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .trust-image-container {
        height: auto;
        padding: 0 15px;
    }
	.slide.active::before{
		display:none;
		opacity:0;
	}
	.trust-section .section-header p {
		font-size: 20px;
	}

	.trust-section .section-header h3{
		font-size: 20px;
	}
	.zones-carousel{
		width:80%;
		position:relative;
		left:10%;
	}
}

/* Video Section Styles */
.video-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.video-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-section .section-header {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.video-section .subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.video-section .title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
}

.video-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.play-button i {
    color: #fff;
    font-size: 30px;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.play-button:hover i {
    color: var(--primary-color);
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transition: all 0.3s ease;
}

.video-wrapper.playing::after,
.video-wrapper.playing .play-button {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .video-wrapper {
        padding-top: 56.25%; /* 16:9 Aspect Ratio for mobile */
    }
}