/* Variables de couleurs */
:root {
    --primary-color: #6200ff;
    --secondary-color: #f9fd00;
    --text-color: #222222;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700&display=swap');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');

body{
	margin:0;
	padding:0;
	overflow-x: hidden;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.6;
}

*{
	box-sizing: border-box;
	margin:0;
	padding:0;
}

.container{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/*Header*/
header{
	position: fixed;
	left:0px;
	top:0px;
	width: 100%;
	z-index: 10;
	background-color: #000000;
	padding: 15px 0;
}

header .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 50px;
}

header .logo a{
	font-size: 30px;
	text-decoration: none;
	color:#6200ff;
	font-weight: 700;
}

header .logo a span{
	color:#ffffff;
}

header .logo a span span{
	color:#f9fd00;
}

header .nav{
	display: flex;
	align-items: center;
}

header .nav ul{
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 30px;
}

header .nav ul li{
	position: relative;
}

header .nav ul li a{
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	padding: 10px 0;
	display: block;
	position: relative;
	transition: color 0.3s ease;
}

header .nav ul li a::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #f9fd00;
	transition: width 0.3s ease;
}

header .nav ul li a:hover::after,
header .nav ul li a.active::after{
	width: 100%;
}

header .nav ul li a:hover,
header .nav ul li a.active{
	color: #6200ff;
}

header .ham-burger{
	display: none;
}

/*Home section*/
.home{
	height: 100vh;
	background-image: url('../images/home.png');
	background-size: cover;
	background-position: center center;
	padding:15px;
	display: flex;
	position: relative;
}

.home::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.home .container{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
	z-index: 1;
}

.home h1{
	color:#ffffff;
	font-size: 80px;
	font-weight: 700;
	text-transform: uppercase;
	margin:0;
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home h1 span{
	color:#6200ff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home .go-down{
  position: absolute;
  bottom: 50px;
  left:50%;
  width: 26px;
  height:40px;
  border:1px solid #ffffff;
  display: block;
  border-radius:4px;
  text-align: center;
  line-height: 40px;
  color:#ffffff;
  font-size: 20px;
  z-index: 2;
  animation: goDown 1s ease infinite;
  margin-left: -13px;
}

.home .go-down .fa{
	color:#ffffff;
	animation: goDown 1s ease infinite;
}

@keyframes goDown{
	0%{transform: translateY(0);opacity:.5}
	100%{transform: translateY(10px);}
}

/*classes section*/

.classes {
    padding: 140px 0;
    background-color: var(--white);
}

.classes .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.classes .content .box {
    flex: 0 0 calc(25% - 20px);
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.classes .content .box:hover {
    transform: translateY(-5px);
}

.classes .content .box .inner {
    padding: 0;
    height: 100%;
}

.classes .content .box:nth-child(1) .inner {
    background-color: var(--primary-color);
}

.classes .content .box:nth-child(2) .inner {
    background-color: var(--white);
}

.classes .content .box:nth-child(3) .inner {
    background-color: #f9fd00;
}

.classes .content .box:nth-child(4) .inner {
    background-color: var(--primary-color);
}

.classes .content .box .inner .img {
    height: 250px;
    overflow: hidden;
}

.classes .content .box .inner .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.classes .content .box .inner .text {
    padding: 20px;
    padding-bottom: 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.classes .content .box .inner .text h4 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 500;
    text-align: center;
}

.classes .content .box:nth-child(1) .inner .text h4,
.classes .content .box:nth-child(1) .inner .text p,
.classes .content .box:nth-child(4) .inner .text h4,
.classes .content .box:nth-child(4) .inner .text p {
    color: var(--white);
}

.classes .content .box .inner .text p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    font-family: 'Open Sans',sans-serif;
    text-align: left;
}

@media(max-width: 991px){
    .classes .content .box{
        flex: 0 0 calc(50% - 20px);
    }
}

@media(max-width: 600px){
    .classes .content .box{
        flex: 0 0 100%;
    }
    .classes .content .box .inner .text {
        height: auto;
        max-height: 300px;
    }
}

/*Service Section*/
.service{
	padding:80px 0px;
	background-color: var(--primary-color);
}

.service .content{
	display:flex;
}

.service .content .box{
	flex:0 0 50%;
	max-width: 50%;
	padding:15px;
}

.service .content .text h2{
	font-size: 30px;
	font-weight: 500;
	color:var(--white);
	padding:0px 0px 20px;
}

.service .content .text p{
    font-size: 15px;
	line-height:20px;
	color:var(--white);
	margin:0;
	padding:0px 0px 20px;
	font-family: 'Open Sans', sans-serif;
}

.service .content .text .btn{
	padding:8px 30px;
	background-color: #222222;
	color:var(--white);
	text-decoration: none;
	display: inline-block;
	border:1px solid transparent;
	cursor: pointer;
	transition: all .5s ease;
}

.service .content .text .btn:hover{
	border:1px solid var(--white);
	color:var(--white);
	background-color: transparent;
}

.service .content .accordian-container{
	margin-bottom: 5px;
}

.service .content .accordian-container .head{
	background-color:rgba(0,0,0,0.2);
	position: relative;
	padding:12px 15px;
	cursor: pointer;
}

.service .content .accordian-container .head .fa{
	position: absolute;
	right: 10px;
	top:13px;
	color:var(--white);
	height:30px;
	width: 30px;
	text-align: center;
	line-height: 30px;
	color:var(--white);
	border-radius: 50%;
}

.service .content .accordian-container .head h4{
  font-size: 20px;
  margin:0;
  padding:0;
  font-weight: 500;
  color: var(--white);
  text-transform: capitalize;
}

.service .content .accordian-container.active .head{
  background-color: #222222;	
}

.service .content .accordian-container .body{
	display: none;
	padding:15px;
	background-color: #222222;
	border-top:1px solid #333333;
}

.service .content .accordian-container:nth-child(1) .body{
	display: block;
}

.service .content .accordian-container .body p{
    font-size: 15px;
	line-height:20px;
	color:var(--white);
	margin:0;
	padding:0;
	font-family: 'Open Sans', sans-serif;	
}

/*about Section*/

.about{
	padding:80px 0px;
	background-color: var(--white);
}

.about .content{
	display: flex;
}

.about .content .box{
	flex:0 0 50%;
	max-width: 50%;
	padding:15px;
}

.about .content .text h2{
    padding-top: 40px;
	font-size: 30px;
	font-weight: 500;
	color: #000000;
	padding-bottom: 20px;
}

.about .content .text p{
	font-size: 15px;
	line-height: 20px;
	color: #222222;
	margin: 0;
	padding: 0px 0px 30px;
	font-family: 'Open Sans', sans-serif;
}

.about .content .class-items .item{
	margin-bottom: 30px;
	display: flex;
}

.about .content .class-items .item:nth-child(1){
 background-color: #222222;
}

.about .content .class-items .item:nth-child(2){
 background-color: var(--primary-color);
}

.about .content .class-items .item .item-text{
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about .content .class-items .item .item-text,
.about .content .class-items .item .item-img{
	flex:0 0 50%;
	max-width: 50%;
	position: relative;
}

.about .content .class-items .item .item-img img{
 width: 100%;
 display: block;
}

.about .content .class-items .item .item-img .price{
	position: absolute;
	height: 50px;
	width: 60px;
	font-size:20px;
	font-weight: 500; 
	color:var(--white);
	text-align: center;
	line-height: 50px;
}

.about .content .class-items .item:nth-child(1) .item-img .price{
 background-color: var(--primary-color);
 left:0;
 top:0;
}

.about .content .class-items .item:nth-child(2) .item-img .price{
 background-color: #222222;
 right:0;
 top:0;
}

.about .content .class-items .item .item-text h4{
	font-size: 20px;
    margin: 0;
    padding: 0px 0px 15px;
    font-weight: 500;
    color: var(--white);
    text-transform: capitalize;
    text-align: left;
}

.about .content .class-items .item .item-text p{
	font-size: 15px;
    line-height: 20px;
    color: var(--white);
    text-align:left;
    margin: 0;
    padding:0 0 20px;
    font-family: 'Open Sans', sans-serif;
}

.about .content .class-items .item .item-text a{
 font-size: 16px;
 text-decoration: none;
 display: inline-block;
}

.about .content .class-items .item .item-text a{
	color:var(--white);
}

.carousel-inner img {
    width: 100%;
    transform: rotateY(180deg);
}

/*Start Today Section*/

.start-today{
	background-color: #222222;
}

.start-today .content{
	display: flex;
	align-items: center;
}

.start-today .content .box{
	flex:0 0 50%;
	max-width: 50%;
	padding:0px 15px;
}

.start-today .content .img img{
	width: 100%;
	display: block;
}

.start-today .content .text h2{
	font-size: 30px;
    font-weight: 500;
    color: var(--white);
    padding: 0px 0px 20px;
}

.start-today .content .text p{
	font-size: 15px;
    line-height: 20px;
    color: var(--white);
    margin: 0;
    padding: 0px 0px 20px;
    font-family: 'Open Sans', sans-serif;
}

.start-today .content .text .btn{
	padding: 8px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    margin: 0 auto; 
}

.start-today .content .text .btn:hover{
	background-color: transparent;
    color: var(--primary-color);
}

/*Class Schedule Section*/

.schedule{
	padding:80px 0px;
}

.schedule .content{
    display: flex;
    align-items: center;
    gap: 30px;
}

.schedule .content .box{
    flex: 1;
}

.schedule .content .box.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;  
}

.schedule .content .box.text img {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

.schedule .content .box.timing {
    display: flex;
    align-items: center;
}

.schedule .content .timing .table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #000000;  
}

.schedule .content .timing .table td {
    border: 1px solid #000000;  
    padding: 15px;
    font-size: 15px;
    text-align: center;
    color: #222222;
    background-color: #ffffff;
    position: relative;
}

.schedule .content .timing .table tr td.day {
    color: #ffffff;
    border-color: #000000;  
    font-weight: 600;
    border-left: 3px solid #000000;  
    border-right: 3px solid #000000;  
}

.schedule .content .timing .table tr:first-child td {
    border-top: 3px solid #000000;  
}

.schedule .content .timing .table tr:last-child td {
    border-bottom: 3px solid #000000;  
}

.schedule .content .timing .table tr td:first-child {
    border-left: 3px solid #000000;
}

.schedule .content .timing .table tr td:last-child {
    border-right: 3px solid #000000;
}

.schedule .content .timing .table tr:nth-child(even) td.day {
    background-color: #6200ff;
}

.schedule .content .timing .table tr:nth-child(odd) td.day {
    background-color: #f9fd00;
}

.schedule .content .timing .table tr:nth-child(1) td.day {
    background-color: #000000;
}

.schedule .content .timing .table tr:hover td:not(.day) {
    background-color: #f8f8f8;
    transition: background-color 0.3s ease;
}

.schedule .content .timing .table td strong {
    color: #6200ff;  
    font-weight: 600;
}

.schedule .content .box .btn-trial {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    margin: 0 auto; 
}

.schedule .content .box .btn-trial:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.schedule .content .text h2{
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    padding: 30px 0px 20px;  
}

.schedule .content .text p{
    font-size: 15px;
    line-height: 20px;
    color: #222222;
    margin: 0;
    padding: 0px 0px 20px;
    font-family: 'Open Sans', sans-serif;
}

@media(max-width: 991px){
    .schedule .content {
        flex-direction: column;
    }
    .schedule .content .box.text,
    .schedule .content .box.timing {
        width: 100%;
    }
}

@media(max-width: 991px){
    .schedule .content .box .btn-trial {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/*Gallery Section*/

.gallery .content{
	display: flex;
	flex-wrap: wrap;
}

.gallery .content .box{
	flex:0 0 50%;
	max-width: 50%;	
}

.gallery .content .box img{
	display: block;
	width: 100%;
	filter: grayscale(100%);
	transition: all .5s ease;
}

.gallery .content .box img:hover{
	filter: grayscale(0%);
}

.gallery h2{
	font-size: 30px;
    font-weight: 500;
    color: #000000;
    padding: 0px 0px 20px;
    text-align: center;
}

/*Price Section*/

.price-package {
    padding: 80px 0;
    margin-bottom: 300px;
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.price-package .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
    flex: 1;
    align-items: center;
}

.price-package .content .box {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 15px;
}

.price-package h2 {
    padding-top: 40px;
    padding-bottom: 20px;
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin: 0;
}

.price-package p {
    font-size: 15px;
    line-height: 20px;
    color: #222222;
    margin: 0;
    padding-bottom: 50px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.price-package .content .box .inner {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.price-package .content .box .inner:hover {
    transform: translateY(-10px);
}

.price-package .content .box .inner .price-tag {
    padding: 15px;
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    margin: -30px -30px 25px -30px;
}

.price-package .content .box .inner .text {
    padding: 10px 0;
    text-align: center;
}

.price-package .content .box .inner .text h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0px 0 8px;  
    text-align: center;
}

.price-package .content .box .inner .text p {
    font-size: 15px;
    line-height: 16px;   
    margin: 0;          
    padding: 2px 0;     
    color: #222222;
}

.price-package .content .box .inner .text p:last-of-type {
    margin-bottom: 8px;  
    padding-bottom: 0;   
}

.price-package .content .box .inner .text .btn {
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1px;
}

.price-package .content .box:nth-child(1) .inner {
    border-color: #000000;
}

.price-package .content .box:nth-child(1) .inner .price-tag {
    background-color: #000000;
    color: #ffffff;
}

.price-package .content .box:nth-child(1) .inner .text h3 {
    color: #000000;
}

.price-package .content .box:nth-child(1) .inner .text .btn {
    border: 2px solid #000000;
    color: #000000;
    background-color: transparent;
}

.price-package .content .box:nth-child(1) .inner .text .btn:hover {
    background-color: #000000;
    color: #ffffff;
}

.price-package .content .box:nth-child(2) .inner {
    border-color: #f9fd00;
    transform: translateY(-10px);
}

.price-package .content .box:nth-child(2) .inner .price-tag {
    background-color: #f9fd00;
    color: #000000;
}

.price-package .content .box:nth-child(2) .inner .text .btn {
    border: 2px solid #f9fd00;
    color: #000000;
    background-color: #f9fd00;
}

.price-package .content .box:nth-child(2) .inner .text .btn:hover {
    background-color: #000000;
    border-color: #000000;
    color: #f9fd00;
}

.price-package .content .box:nth-child(3) .inner {
    border-color: #6200ff;
}

.price-package .content .box:nth-child(3) .inner .price-tag {
    background-color: #6200ff;
    color: #ffffff;
}

.price-package .content .box:nth-child(3) .inner .text .btn {
    border: 2px solid #6200ff;
    color: #6200ff;
    background-color: transparent;
}

.price-package .content .box:nth-child(3) .inner .text .btn:hover {
    background-color: #6200ff;
    color: #ffffff;
}

@media(max-width: 991px){
    .price-package {
        padding: 60px 0;
        margin-bottom: 500px;
    }
    
    .price-package .title-p {
        padding: 20px 10% 20px;
    }

    .price-package .content {
        margin-top: 40px;  
    }
}

/*Contact Section*/

.contact{
	padding:80px 0px;
	background-color: #000000;
}

.contact .content {
    display: flex;
    justify-content: center; 
    align-items: center; 
    flex-direction: column; 
}

.contact .content .box {
    width: 100%; 
    max-width: 600px; 
    padding: 15px;
    text-align: center; 
}

.contact .content .form {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 40px;
    background: #1a1a1a;  
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(98, 0, 255, 0.2);  
    border: 2px solid #6200ff;  
    position: relative;
    overflow: hidden;
}

.contact .content .form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6200ff, #ffd700, #6200ff);  
}

.contact .content .form .input-group {
    margin-bottom: 20px;
    position: relative;
}

.contact .content .form .input-group .input-control {
    width: 100%;
    height: 45px;
    padding: 12px 15px;
    border: 2px solid #333;
    border-radius: 8px;
    font-size: 15px;
    color: #fff;  
    background: #2a2a2a;  
    transition: all 0.3s ease;
}

.contact .content .form .input-group textarea.input-control {
    height: 120px;
    resize: none;
}

.contact .content .form .input-group .input-control:focus {
    border-color: #6200ff;
    box-shadow: 0 0 10px rgba(98, 0, 255, 0.3);
    outline: none;
}

.contact .content .form .input-group .input-control:hover {
    border-color: #6200ff;
}

.contact .content .form .submit-btn {
    width: 100%;
    padding: 15px;
    background: #6200ff;  
    color: white;
    border: 2px solid #6200ff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact .content .form .submit-btn:hover {
    background: #ffd700;  
    border-color: #ffd700;
    color: #000;
    transform: translateY(-2px);
}

.contact .content .form .input-group .input-control::placeholder {
    color: #666;
}

.contact .content .form .input-group .input-control:focus::placeholder {
    opacity: 0.7;
}

.contact .content .form .input-group .input-control:hover {
    border-color: #6200ff;
}

.contact .content .form label {
    color: #fff;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.contact .content .text h2{
	font-size: 30px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 0px 0px 20px;
}

.contact .content .text p{
    font-size: 15px;
    line-height: 20px;
    color: var(--white);
    margin: 0;
    padding: 0px 0px 30px;
    font-family: 'Open-sans', sans-serif;
}

.contact .content .text .info ul{
	list-style: none;
	padding:0;
	margin:0;
}

.contact .content .text .info li{
	display: block;
	margin-bottom: 15px;
	color:var(--white);
	font-size: 15px;
	letter-spacing: 1px;
	position: relative;
	padding-left: 40px;
	font-family: 'Open-Sans',sans-serif;
}

.contact .content .text .info li span{
	display: inline-block;
	position: absolute;
	left:0px;
	top:0px;
	font-size: 20px;
	color:var(--primary-color);
}

.contact .content .text .social {
	padding-top: 30px;
}

.contact .content .text .social a{
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	background-color: var(--primary-color);
    text-decoration: none;	
    display: inline-block;
    margin-right: 10px;
    transition: all .5s ease;
    border:1px solid transparent;
} 

.contact .content .text .social a:hover{
	background-color: transparent;
    border-color: var(--white);
}

.contact .content .text .social a span{
	color:var(--white);
	font-size: 20px;
}

.contact .content .text .copy{
	border-top:1px solid #333333;
	margin-top: 30px;
	padding-top: 20px;
	color:#c5c5c5;
	font-size: 15px;
}

/*Responsive*/

/*if screen width is less than or equal to 991px then*/
@media(max-width: 991px){
   .home{
   	background-position: center;
   }
  .about .content{
  	flex-wrap: wrap;
  }
 .about .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.about .content .img{
	display: none;
}
.start-today .content .box{
	padding:15px;
}
}

/*if screen width is less than or equal to 767px then*/
@media(max-width: 767px){
  .home h1{
      font-size: 40px;
  }
  .classes .content{
  	 flex-wrap: wrap;
  }
  .classes .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.service .content{
	flex-wrap: wrap;
}
.service .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.about .content .class-items .item{
	flex-wrap: wrap;
}
.about .content .class-items .item .item-text, 
.about .content .class-items .item .item-img {
    flex: 0 0 100%;
    max-width: 100%;
}
.schedule .content{
	flex-wrap: wrap;
}
.schedule .content .box{
flex: 0 0 100%;
    max-width: 100%;	
}
.start-today .content{
	flex-wrap: wrap;
}
.start-today .content .box {
    flex: 0 0 100%;
    max-width: 100%;
  }
 .gallery .content{
  flex-wrap: wrap;
 }
.gallery .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.price-package .content{
	flex-wrap: wrap;
}
.price-package .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
.contact .content{
	flex-wrap: wrap;
}
.contact .content .box {
    flex: 0 0 100%;
    max-width: 100%;
}
}

/*if screen width is less than or equal to 550px then*/
@media(max-width: 550px){
  .home h1{
      font-size: 30px;
  }
}

@media(max-width: 991px){
    header .nav ul{
        padding: 30px;
        gap: 25px;
    }
    header .nav ul li:nth-child(5) {
        margin-bottom: 25px;
    }
}

/* Trial Form Section */
.trial-form {
    padding: 120px 0 70px;
    background-color: var(--white);
    min-height: 100vh;
}

.trial-form h2 {
    color: #222222;
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
}

.trial-form .title-p {
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.trial-form .form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: 2px solid #000000;
    position: relative;
}



.trial-form .form-group {
    margin-bottom: 20px;
}

.trial-form .form-group label {
    color: #222222;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
    font-size: 15px;
}

.trial-form .form-group .input-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #222222;
    background: white;
    transition: all 0.3s ease;
}

.trial-form .form-group .input-control:focus {
    border-color: #6200ff;
    outline: none;
}

.trial-form .form-group .input-control:hover {
    border-color: #6200ff;
}

.trial-form .form-group select.input-control {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23222222" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

.trial-form .form-group input[type="date"].input-control {
    color-scheme: light;
}

.trial-form .submit-btn {
    width: 100%;
    padding: 15px;
    background: #000000;
    color: white;
    border: 2px solid #000000;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trial-form .submit-btn:hover {
    background: #6200ff;
    border-color: #6200ff;
}

/* Animation d'entrée des champs */
@keyframes field-appear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trial-form .form-group {
    animation: field-appear 0.3s ease forwards;
    opacity: 0;
}

.trial-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.trial-form .form-group:nth-child(2) { animation-delay: 0.15s; }
.trial-form .form-group:nth-child(3) { animation-delay: 0.2s; }
.trial-form .form-group:nth-child(4) { animation-delay: 0.25s; }
.trial-form .form-group:nth-child(5) { animation-delay: 0.3s; }
.trial-form .form-group:nth-child(6) { animation-delay: 0.35s; }
.trial-form .form-group:nth-child(7) { animation-delay: 0.4s; }

/* Responsive */
@media(max-width: 768px) {
    .trial-form {
        padding: 60px 0;
    }
    .trial-form .form-container {
        margin: 0 20px;
        padding: 30px 20px;
    }
}
