body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #333;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(45deg, #6ab7f5, #fed6e3);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    padding: 10px 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.loggo img {
    width: auto;
    height: 50px;
}
.loggo {
    gap: 10px;
    display: flex
;
    align-items: center;
}
.loggo span {
    font-size: 16px;
    color: #fff5f5;
    font-weight: 700;
}
.nav {
    position: relative;
}

.nav #nav-toggle {
    display: none;
}

.nav .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav .burger span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav .burger {
        display: flex;
    }
}

.nav .nav-itemms {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav .nav-itemms li {
    margin-left: 20px;
}

.nav .nav-itemms a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav .nav-itemms a:hover {
    background: #fff;
    color: #6ab7f5;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .nav .nav-itemms {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #6ab7f5;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav .nav-itemms.active {
        display: block;
    }

    .nav .nav-itemms li {
        margin: 10px 0;
    }
}
section{
    position: relative;
}
.lor.aboutin-image img{
    max-width: 500px;
    width: 100%;
    max-height: fit-content;
}
/* hiro Section */
.hiro {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    min-height: 100%;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 320px) {
    .slide-content h1 {
        font-size: 24px;
    }
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-glow {
    background: #6ab7f5;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(106, 183, 245, 0.7);
}

.btn-glow:hover {
    background: #fff;
    color: #6ab7f5;
    box-shadow: 0 0 25px rgba(106, 183, 245, 1);
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: #fff;
    height: 37px;
    width: 37px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.slider-nav button:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* aboutin Section */
.aboutin {
    padding: 80px 20px;
    position: relative;
}

.aboutin-container {
    max-width: 1200px;
    margin: 0 auto;
}

.aboutin-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.aboutin-block.reverse {
    flex-direction: row-reverse;
}

.aboutin-image img {
    width: auto;
   max-height: 420px;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
}

.aboutin-text {
    max-width: 500px;
}
.aboutin-texth2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #6ab7f5;
 
    margin-bottom: 10px;
}
.aboutin.abp h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #6ab7f5;
    text-align: center;
    margin-bottom: 70px;

}

.aboutin-text h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.aboutin-text p {
    font-size: 16px;
    line-height: 1.6;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 17px;
    background-color: #ffffff;
    clip-path: ellipse(52% 100% at 50% 100%);
}
/* servicesis Section */
.servicesis {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.1);
}

.servicesis h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #6ab7f5;
    text-align: center;
    margin-bottom: 40px;
}

.cards-servicesis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.carerd-servicesis {
   
    border-radius: 15px;
    overflow: hidden;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.carerd-servicesis:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.carerd-servicesis figure {
    margin: 0;
}

.carerd-servicesis img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.carerd-servicesis h4 {
    font-size: 24px;
    color: #6ab7f5;
    margin: 20px;
}

.carerd-servicesis p {
    font-size: 16px;
    margin: 0 20px 20px;
    line-height: 1.6;
}

.servicesis-slider {
    margin-top: 40px;
display: flex;
justify-content: center;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.slider-item {
 display: flex;
 flex-direction: column;
    border-radius: 0px;
    width: 22.22%;
    text-align: center;
    padding: 0px;
 
}

.slider-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0px;
}

.slider-item h4 {
    font-size: 20px;
    color: #6ab7f5;
    margin: 15px 0;
}

.slider-item p {
    font-size: 14px;
    padding: 0 13px 13px;
}
.slider-item:nth-child(1){
    width: 44%;
    display: flex
    ;
        align-items: center;
        justify-content: center;
}/* Why Choose Us Section */
.slider-item:nth-child(1) span{
    margin: 0 auto;
    font-size: 24px;
    color: #6ab7f5;
}
.why-choose-us {
    padding: 80px 20px;
    text-align: center;
}

.why-choose-us h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #6ab7f5;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: rgb(141 83 205 / 54%);
    border-radius: 0px;
    padding: 20px;
    width: 300px;
}

.feature img {
    width: 60px;
    height: 60px;
}

.feature h4 {
    font-size: 24px;
    color: #6ab7f5;
    margin: 15px 0;
    font-weight: 700;
}

.feature span {
    font-size: 14px;
    color: #fff;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
}
.testimonials img{
    height: auto;
    max-width: 500px;
}
.tes__item {
    display: flex;
    align-items: center;
    gap: 32px;
}
.tes__item span{
    font-size: 20px;
    color: #333;
    font-weight: 700;
}
.tes{
   padding: 20px;
   border-radius: 5px;
   background-color: #eddded;
    flex-direction: column;
   
}
.tess{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #6ab7f5;
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-slider {
    display: flex;
    gap: 20px;
 flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial h4 {
    font-size: 18px;
    color: #6ab7f5;
}

/* contacct Section */
.contacct {
    padding: 80px 20px;
    text-align: center;
}

.contacct h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #6ab7f5;
    margin-bottom: 20px;
}

.contacct p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contacct-page {
    padding: 100px 20px;
    text-align: center;
}
.contacct-page span{
    width: 100%;
    display: block;
    font-size: 20px;
}
.contacct-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #6ab7f5;
    margin-bottom: 20px;
}

.contacct-page p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contacct-page form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.contacct-page form input,
.contacct-page form textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
}

.contacct-page form textarea {
    resize: none;
    height: 150px;
}

/* Footer */
.footer {
    background: linear-gradient(45deg, #6ab7f5, #fed6e3);
    padding: 50px 20px;
    color: #fff;
}

.foooter-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.foooter-loggo img {
    width: auto;
    height: 50px;
    margin: 0 auto 20px;
    display: block;
}

.foooter-info p {
    margin: 5px 0;
    font-size: 14px;
}

.social a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 18px;
}

.social a:hover {
    color: #fed6e3;
}

.foooter-links h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.foooter-links ul {
    list-style: none;
    padding: 0;
}

.foooter-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.foooter-links ul li a:hover {
    color: #fed6e3;
}

.foooter-newsletter h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.foooter-newsletter input {
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    width: 200px;
}

.foooter-newsletter .btn {
    margin-top: 10px;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
.tottr p, .tottr h2,.tottr h3, .tottr h4{
    text-align: start;
    margin-bottom: 20px;
}
.cbn-1 {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-family: sans-serif;
    z-index: 9999;
  }
  .cbn-1 button {
    background: #00c853;
    color: white;
    border: none;
    padding: 8px 16px;
    margin-left: 15px;
    cursor: pointer;
    border-radius: 4px;
  }