* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Times New Roman', Times, serif;
}

.background-image{
    background-image: url(../image/7xm68dfdf84ca0bc.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.under-lay{
    background-color: rgba(0, 0, 0, 0.584);
}

/* NAVBAR SECTION */
nav {
    /* border: thin solid rgba(0, 0, 0, 0.155); */
    position: fixed;
    z-index: 2;
    top: 0;
    width: 100%;
    /* background-color: #F2F2F2; */
    /* background-color: #D3CEF2; */
    /* background-color: #ede7dc; */
    /* background-color: #ccafa5; */
    /* background-color: #dcd2cc; */
    
}

.logo {
    display: flex;
    align-items: center;

}

nav .header {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding: 10px 0px;
}

.header-list ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style-type: none;
}

.header-list ul li a {
    text-decoration: none;
    color: black;
    padding: 8px 20px;
    border-radius: 20px;
    background-color: #F2F2F2;
}

.header-list ul li a:hover{
    background-color:#f2f2f245;
    transition: 2s ease;
}
/* Hamburger Icon */
.hamburger {
    width: 30px;
    height: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    display: none;
}

.hamburger div {
    width: 90%;
    height: 2px;
    background-color: #F2F2F2;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active .line1 {
    transform: rotate(45deg) translate(5px, 8px);
}

.hamburger.active .line2 {
    opacity: 0;
}

.hamburger.active .line3 {
    transform: rotate(-45deg) translate(5px, -8px);
}

/* Menu */
.menu {
    position: fixed;
    right: -300px;
    top: 0;
    width: 200px;
    /* background-color: #F2F2F2; */
    padding-top: 50px;
    transition: right 0.3s ease;
    z-index: 1;
}

.menu ul li:hover {
    cursor: pointer;
}

.menu.active {
    right: 0;
}

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

.menu li {
    padding: 15px 20px;
    border-bottom: 1px solid #F2F2F2;
}

.menu a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 0;
}

.overlay.active {
    display: block;
}

.menu-bar {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: 600;
    padding: 20px;
    display: none;
    width: 100%;
    transition: all 0.3s ease;
}

.icon a {
    text-decoration: none;
    font-size: 30px;
    font-family: sans-serif;
    font-weight: 900;
}

.icon {
    background: url(../image/new\ planora\ img.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    font-weight: 900;
    font-size: large;
    cursor: pointer;
    align-items: center;
}


.hide {
    display: flex;
    align-items: center;
}

.icon-container {
    display: flex;
    align-items: center;
}

.second-icon {
    background: url(../image/new\ planora\ img.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: none;
    border-radius: 50%;
    font-weight: 900;
    font-size: large;
    cursor: pointer;
}


@media(max-width:1010px) {
    .logo {
        gap: none;
    }
}

@media(max-width:1000px) {
    .icon {
        display: none;
    }

    .second-icon {
        display: block;
    }
}

@media(max-width:826px) {
    .hide {
        display: none;
    }

    .header {
        width: 90% !important;

    }

    .menu-bar {
        display: block;
        width: 5%;
        padding: 0px 50px;
        gap: 0px;
        /* border: 2px solid red; */

    } 
}


@media(max-width:652px) {
    .help-c {
        display: none;
    }
}

@media(max-width:652px) {
    .the-help {
        display: none;
    }
}


@media(max-width:652px) {
    .hamburger {
        display: block;
        width: 30px;
        height: 20px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 2;

    }

}

/* HERO SECTION */
.hero-container {
    width: 100%;
    z-index: -1;
    padding-top: 200px;
}
.hero-msg{
    width: 90%;
    margin: auto;
    flex-wrap: wrap;
}
.hero-msg span{
    display: block;
    font-size: 50px;
    color: #dcd2cc;
    font-weight: 900;
}
.sub-hero {
    color: white;
    width: 90%;
    margin: auto;
    font-size: medium;
    font-weight: 500;
    line-height: 1em;
    padding: 10px 0px;
}
.hero-input{
    text-align: center;
    padding: 10px;
}
.hero-input input{
    padding: 10px 20px;
    width: 30%;
    margin: 30px 0px;
    background: #F2F2F2;
    color: black;
    outline: none;
    border-radius: 20px;
    border: none;
}
.hero-input button{
    padding: 10px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
}

@media(max-width:820px){
    .hero-input span{
        display: block;
    }
    .hero-input span input{
        width: 70%;
    }
}
@media(max-width:649px){
    .hero-msg{
        width: 90%;
        margin: auto;
    }
    .hero-msg span{
        font-size: 30px;
        font-weight: 900;
    }
}


/* ABOUT US SECTION */
.about-us{
    width: 100%;
    z-index: -1;
    background: #F2F2F2;
}
.about-us h2{
    text-align:  center;
    padding: 30px ;
    font-size: 30px;
}
.about-div{
    display: flex;
    align-items: center;
    width: 90%;
    margin: auto;
    gap: 20px;
}
.about-image{
    background: url(../image/7xm68dfe138df503.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 50vh;
    width: 50%;
}
.about-text{
    width: 50%;
    line-height: 1.6em;
    font-size: 20px;
}

.learn-more {
    width: 90%;
    margin: auto;
    padding: 40px 0px;
    text-align: center;
  }

.learn-more a {
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: 900;
    padding: 12px 25px;
    border-radius: 5px;
    background-color: #dcd2cc;
}
@media(max-width:990px){
    .about-text{
        line-height: 1.2em;
    }
}

@media(max-width:834px) {

    .learn-more {
        margin: 15px;
    }
}

@media(max-width:798px){
    .about-div{
        width: 100%;
        display: block  !important;
        margin: auto;
    }
    .about-image{
        width: 90% !important;
        display: block;
        margin: auto;
        padding: 10px 0px;
    }
    .about-text{
        width: 90% !important;
        margin: auto;
        line-height: 1.5em !important;
        padding: 20px 0px;
    }
}


/* ACCODIN SECTION */
.acc-wraper {
    width: 100%;
    background: #F2F2F2;
}

.ask-question {
    padding: 10px;
    color: black;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
}

.accordion {
    margin: auto;
    width: 90%;
    /* color: white; */
    flex-wrap: wrap;
}


.accordion {
    padding: 20px 0px;
}

.accordion li label:hover {
    background-color: #dcd2cc;
}

.accordion li {
    list-style-type: none;
    width: 100%;
    padding: 5px;
}

.accordion li label {
    display: flex;
    align-items: center;
    padding: 25px;
    font-size: 20px;
    font-weight: 500;
    background: #303030b0;
    margin-bottom: 2px;
    cursor: pointer;
    position: relative;
}

label::after {
    content: '+';
    font-size: 30px;
    position: absolute;
    right: 20px;
    transition: transform 0.5s;
}

input[type="radio"] {
    display: none;
}

.accordion .content {
    background: #303030;
    text-align: left;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

.accordion input[type="radio"]:checked+label+.content {
    max-height: 600px;
    padding: 30px 20px;
}

.accordion input[type="radio"]:checked+label::after {
    transform: rotate(135deg);
}

/* FIRST CARD SECTION */
.container {
    cursor: pointer;
    width: 100%;
    padding: 10px;
}

.card-img-sec{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    width: 90%;
    margin: auto;
    justify-content: center;
}
.card-header {
    padding: 20px;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.card-box{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
     overflow: hidden;
}

.card-box:hover {
    transform: translateY(-10px);
}

.card-box img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    padding: 10px;
}

.card-inertitle {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #333;
}

.card-text {
    font-size: 1rem;
    margin: 0;
    font-size: 18px;
    font-family: sans-serif;
    font-weight: 100;
}

@media (max-width: 650px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width:650px) {
    .card-box {
        width: 100%;
        height: fit-content;
    }
}


/* GRID SECTION */
.gri-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    width: 90%;
    margin: auto;
    max-width: 1237px;
    padding: 50px 0px;
}

.car-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.car {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 50%;
    height: 150px;
    width: 150px;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.car:hover {
    transform: scale(1.1);
    background-color: #F2F2F2;
}

.car-title {
    margin-top: 10px;
    font-size: 1rem;
}

@media (max-width: 600px) {

    .card-title {
        font-size: 0.9rem;
    }
}

/* ANNMIE SECTION */
.sec-container {
    width: 50%;
    margin:20px auto;
}

.sec-container p{
    text-align: center;
    padding: 10px;
    font-size: 40px;
    font-weight: 900;
}

.annimie{
      width: 100%;
    margin: auto;
    padding: 10px;
    background: #F2F2F2 ;
    margin: 0px 0px 30px;
}
.annimie dotlottie-wc{
    margin: auto;
}
@media(max-width:903px) {
    .sec-container p {
        width: 90%;
        font-size: 30px;
        font-weight: 600;
    }
}


@media(max-width:620px) {
    .sec-container {
        height: 100%;
        width: 90%;
    }
  
}

/* PLANNING SECTION */
.first-planning{
    width: 100%;
    background:#F2F2F2;
    padding: 10px;
}
.event {
    text-align: center;
    padding: 10px;
    font-size: 40px;
    font-weight: 900;
}


.planning-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    width: 95%;
    margin: auto;
    justify-content: center;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h3 {
    margin: 15px 0 10px;
}

.card p {
    color: #555;
}

@media (max-width: 650px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width:650px) {
    .card {
        width: 100%;
        height: fit-content;
        margin: 10px;
    }
}


/* FOOTER SECTION */
.section-footer {
    width: 100%;
    background: #dcd2cc;
}


.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: auto;
}


.first-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    padding: 20px;
}

.first-side ul li {
    list-style-type: none;
    padding: 10px 0px;
}


.first-side ul li a {
    text-decoration: none;
    color: black;
    padding: 20px 0px;
}

.contact-aa{
    color: black;
}
.contact-aa div{
    padding: 10px 0px;
}

@media(max-width:800px) {
    .first-side {
        display: block;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 0px;
    }
}

.up-btn {
    padding: 10px;
    display: flex;
    align-items: center;
    background-color: #F2F2F2;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

.up-btn a {
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: 300;
    display: flex;
    align-items: center;
}

.alright{
    text-align: center;
    padding: 10px;
}

@media(max-width:650px) {
    .circle-sec {
        display: block;
        flex-wrap: wrap;
    }

    .contact-aa {
        display: block;
        padding: 10px 0px;
    }

} 

