* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.no-scroll {
    overflow: hidden;
}

.logo img {
    width: 12rem;
}

.heading {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: flex-start;
}

.heading h3 {
    padding: 0.2rem 0.7rem;
    background: #f2ede7;
    font-weight: 500;
    font-family: 'Jost';
    text-transform: capitalize;
    font-size: 16px;
    border-radius: 3px;
}

.heading p {
    font-family: 'Jost';
    color: #f2ede7;
    font-size: 34px !important;
    line-height: 42px !important;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.heading.black h3 {
    background: #373435;
    color: #f2ede7;
}

.heading.black p {
    color: #373435;
}

a.linka {
    font-size: 19px !important;
    font-weight: 500;
    /* text-decoration: none; */
    color: #373435;
    font-family: jost;
}

.btn {
    align-self: flex-start;
    /* padding: 0.5rem; */
    width: 9rem;
    border: 1px solid #f2ede7;
    font-family: jost;
    font-size: 18px;
    color: #f2ede7;
    display: flex;
    margin-top: 1rem;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

button {
    background: no-repeat;
    border: none;
    color: #f2ede7;
    font-family: jost;
    font-size: 18px;
    width: 75%;
    text-align: center;
    padding: 0.5rem;
    cursor: pointer;
}

.btn i {
    justify-self: flex-end;
    height: 100%;
    display: flex;
    align-items: center;
    background: #f2ede7;
    color: #373435;
    justify-content: center;
    width: 25%;
    padding: 0.8rem;
}

.btn a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem;
    width: 80%;
}

header {
    position: absolute;
    z-index: 100;
    padding: 1rem;
    width: 100%;
}

.inside-header {
    display: flex;
    background: #f2ede7;
    padding: 0 2rem;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
}

.link {
    display: flex;
    justify-content: space-between;
    font-family: jost;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    gap: 20px;
}

.link a {
    text-decoration: none;
    color: #373435;
}

nav {
    width: 45%;
    margin-right: 0;
}

/* Dropdown base styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 999;
    border-radius: 8px;
}

.dropdown-content a {
    display: block;
    padding: 10px;
    color: #373435;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

/* Hover dropdown for desktop */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/* Hamburger styles */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #373435;
    font-weight: 600;
}

.close-btn {
    color: #fff;
    display: none;
    font-size: 30px;
    cursor: pointer;
    align-self: flex-end;
    margin-right: 1.5rem;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav {
        display: block;
    }

    #nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 250px;
        background-color: #333;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding-top: 30px;
        display: flex;
        flex-direction: column;
        z-index: 1000;
    }

    #nav-links.active {
        transform: translateX(0);
    }

    #nav-links a,
    #nav-links .dropbtn {
        color: #fff;
        padding: 15px 25px;
        text-align: left;
        display: block;
        border-bottom: 1px solid #555;
    }

    .dropdown-content {
        position: static;
        background-color: #444;
        box-shadow: none;
        width: 100%;
        border-radius: 0;
    }

    .dropdown-content a {
        padding-left: 45px;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .close-btn {
        display: block;
    }
}

.hero-section {
    /* height: 100vh; */
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 3rem 1rem;
    background: #373435;
    padding-bottom: 0;
    object-fit: cover;
}

.swiper {
    height: 100%;
}

.swiper-slide.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    box-sizing: border-box;
    text-align: center;
    opacity: 0.2;
    transform: scale(0.98);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

/* .swiper-slide.hero img {
 max-width: 300px;
 height: auto;
 margin-bottom: 20px;
} */

.text-block h2,
.text-block p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.swiper-slide-active .text-block h2,
.swiper-slide-active .text-block p {
    opacity: 1;
    transform: translateY(0);
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.text-block p {
    font-size: 1.1rem;
    color: #f2ede7a1;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

.swiper-pagination-bullet-active {
    background: #000;
}

.text-block {
    width: 40%;
    font-family: jost;
    text-align: left;
}

.text-block h2 {
    font-size: 4rem;
    color: #f2ede7;
}

.hero-slide {
    display: flex;
    /* flex-direction: row-reverse; */
    justify-content: center;
    width: 100%;
    align-items: center;
    /* padding: 2rem; */
    background: #373435;
    /* height: 100%; */
}

.hero-img {
    width: 100%;
    height: 90%;
    align-self: flex-end;
}


.hero-img img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

/* 
@media (min-width: 768px) {
 .swiper-slide {
  flex-direction: row;
  text-align: left;
  padding: 60px;
 }

 .swiper-slide img {
  margin: 0 40px 0 0;
 }

 .text-block h2 {
  font-size: 3rem;
 }
} */

/* about section  */
.about-us-section {
    padding: 4rem;
    background: #373435;
    padding-top: 9rem;
}

.inside-aus {
    display: flex;
}

.iaus-l {
    width: 50%;
    display: flex;
    gap: 10px;
}

.l-img {
    width: 50%;
}

.l-img img {
    width: 100%;
    border-radius: 10px;
}

.iaus-r {
    width: 50%;
    padding: 1rem 2rem;
    font-family: jost;
}

.l-img.one {
    width: 60%;
}

.iaus-r h2 {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 1rem;
}

.iaus-r p {
    font-size: 17px;
    line-height: 27px;
    color: #ffffff !important;
    margin-bottom: 1rem;
}

/* product section */
.product-section {
    padding: 4rem;
    background: #f2ede7;
}

.inside-product-section {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.inside-product-section .up {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.p-data a {
    color: #626362;
    font-weight: 600;
    text-decoration: none;
}

.inside-product-section .up .heading {
    width: 50%;
}

.desc {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 11px;
    font-family: jost;
    font-size: 17px;
}

.p-slide img {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.swiper-wrapper {
    padding: 3rem 0 !important;
}

.swiper-pagination-bullet-active {
    background: #373435 !important;
}

.down {
    padding: 2rem;
    margin-top: 2rem;
}

.p-data {
    position: absolute;
    z-index: 100;
    bottom: 5%;
    left: 5%;
    background: #fff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-family: jost;
    text-transform: capitalize;
    border-radius: 6px;
    z-index: 1;
}

.pt-desc {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pt-desc img {
    width: 5rem;
    border: 1px solid #373435;
    padding: 0.5rem;
    border-radius: 2px;
}

/* why choose us  */
.why-choose-us {
    height: 110vh;
    padding: 4rem;
    background: #373435;
    /* position: relative; */
    /* margin-top: 3rem; */
    background-image: url(../images/2.png);
}

.tab-num {
    display: flex;
    gap: 20px;
    padding: 1rem;
}

.content-card {
    opacity: 0;
}

.wcu-img {
    opacity: 0;
}

.wcu-img.active {
    opacity: 1;
}

.content-card.active {
    opacity: 1;
}

.wcu-content {
    display: flex;
}

.wcuc-left {
    width: 40%;
}

.wcuc-right {
    width: 35%;
    position: relative;
}



.content-card {
    opacity: 0;
    position: absolute;
    font-family: 'jost';
    line-height: 30px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.content-card h3 {
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.content-card p {
    color: #ffffffad;
    font-size: 17px;
}

.wcu-img {
    opacity: 0;
    width: 100%;
    position: absolute;
    top: 0;
    transition: all 0.3s ease;
}

.wcuc-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    position: relative;
}

.wcu-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.wcu-img img {
    width: 100%;
    /* position: absolute; */
    border-radius: 20px;
}

.num {
    padding: 1rem;
    /* background: red; */
    border-radius: 50%;
    height: 3rem;
    width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    font-family: "jost";
    cursor: pointer;
    color: #f2ede7;
}

.num.active {
    background-color: #f2ede7;
    color: #373435;
}

/* product desc */
.product-desc {
    padding: 2rem;
    background-color: #f2ede7;
}

.product-desc .heading {
    align-items: center;
    text-align: center;
    margin-top: 3rem;
}

.inside-pd {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}


.inside-pd .middle {
    width: 40%;
}

.inside-pd .left {
    width: 25%;
    position: relative;
    font-family: jost;
}

.inside-pd .right {
    width: 25%;
    position: relative;
    font-family: jost;
}

.point {
    position: absolute;
    right: 0;
    top: -1%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

span.line {
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: #373435;
}

.point.two {
    top: 26%;
    right: 23%;
}

.point.three {
    top: 88%;
}

.pt-desc.r {
    flex-direction: row-reverse;
}

.point.four {
    top: 59%;
    right: 28%;
}

.pt-desc h3 {
    font-size: 18px;
    color: #373435;
}

.point.twor {
    top: 26%;
    /* right: -4%; */
    left: 15%;
}

.point.fourr {
    top: 59%;
    left: 16%;
}

.point.threer {
    top: 88%;
    left: -12%;
}

.point.r {
    left: -11%;
}

/* contact section */
.contact-section {
    padding: 6rem;
    position: relative;
    background-image: url(../images/contact-bg.jpg);
}

.inside-cs {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1000000;

}

.ics-left {
    width: 30%;
    background: #f2ede7;
    padding: 2rem;
    border-radius: 7px;
    font-family: jost;
}

.contact-section::before {
    position: absolute;
    content: '';
    height: 70%;
    width: 24%;
    background-image: url(../images/c1.jpg);
    top: 1%;
    left: 1%;
    clip-path: polygon(0% 0%, 83% 0%, 58% 100%, 0% 100%);
}

.contact-section::after {
    position: absolute;
    content: '';
    height: 70%;
    width: 24%;
    background-image: url(../images/c2.jpg);
    bottom: 1%;
    right: 1%;
    clip-path: polygon(44% 0%, 100% 0%, 100% 100%, 8% 100%);
    background-position: right;
    background-size: contain;
}

.ics-right {
    width: 45%;
    padding: 2rem;
    background: #373435;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    color: #f2ede7;
    font-family: jost;
    font-size: 30px;
}

form {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

input,
textarea {
    padding: 0.7rem;
    text-transform: capitalize;
    background: none;
    border-bottom: 1px solid;
    outline: none;
    border: none;
    border-bottom: 1px solid;
    color: #f2ede7;
}

.cinfo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.c-info {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-top: 1rem;
    font-family: jost;
}

/* testi section */
.testimonial-section {
    padding: 4rem;
    background: #f2ede7;
}

.inside-testi-section .up {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    align-items: center;
}

.quote {
    font-size: 8rem;
    line-height: 5rem;
}

.testi-slide {
    padding: 1rem;
    display: flex;
    font-family: 'Jost';
    gap: 20px;
}

.testi p {
    font-size: 25px;
    color: #373435;
}

.user {
    margin-top: 1.2rem;
}

.user p span {
    font-size: 20px;
    text-transform: capitalize;
    color: #373435;
}

.user p {
    font-size: 17px;
    color: #a9a9a9;
}

/* footer */
footer {
    padding: 4rem;
    background: #373435;
}

.f-logo img {
    width: 15rem;
}

.inside-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.f-about {
    width: 35%;
    font-family: jost;
    color: #f2ede7;
    font-size: 17px;
    padding: 0.5rem;
}

.links {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    font-family: jost;
    text-transform: capitalize;
    width: 20%;
    padding: 0 1rem;
}

.links.link {
    width: 18%;
}

.links.c-info {
    width: 23%;
}

.links.c-info {
    width: 24%;
}

.links h3 {
    color: #f2ede7;
}

.links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
}

.links.c-info p {
    color: #f2ede7;
}

.info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f2ede7;
}

@media (max-width: 1100px) {

    nav {
        width: 50%;
    }

    footer {
        padding: 4rem 2rem;
    }
}

@media (max-width: 1024px) {
    nav {
        width: 60%;
    }

    .product-section {
        padding: 4rem 2rem;
    }

    .contact-section {
        padding: 4rem;
    }

    .ics-left {
        width: 35%;
    }

    .ics-right {
        width: 50%;
    }

    .testimonial-section {
        padding: 3rem;
    }

    .down {
        padding: 0 2rem;
        margin-top: 1rem;
    }

    .testi-slide {
        padding: 0;
    }
}

@media (max-width: 900px) {

    nav {
        width: 70%;
    }

    .about-us-section {
        padding: 3rem;
        padding-top: 7rem;
    }

    .iaus-r p {
        line-height: 26px;
    }

    .down {
        padding: 0;
        margin-top: 0;
    }

    .inside-product-section .up {
        padding: 0;
    }

    .why-choose-us {
        height: 100vh;
        padding: 3rem;
    }

    .ics-left {
        width: 40%;
    }

    .ics-right {
        width: 55%;
    }

    .heading p {
        font-size: 30px !important;
        line-height: 35px !important;
    }

    .inside-footer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .f-about {
        width: 100%;
    }

    .links.link {
        width: 100%;
    }

    .links.c-info {
        width: 100%;
    }

}

@media (max-width: 768px) {
    nav {
        width: 50%;
    }

    .hero-section {
        padding: 3rem 1rem 0;
    }

    .text-block h2 {
        font-size: 45px;
    }

    .about-us-section {
        padding: 2rem;
        padding-top: 1rem;
    }

    .inside-aus {
        display: flex;
        flex-direction: column;
    }

    .iaus-l {
        width: 100%;
    }

    .iaus-r {
        width: 100%;
        padding: 3rem 1rem;
    }

    .product-section {
        padding: 3rem 1rem;
    }

    .inside-product-section .up {
        flex-direction: column;
    }

    .inside-product-section .up .heading {
        width: 100%;
    }

    .desc {
        width: 100%;
        flex-direction: row;
        gap: 8rem;
    }

    .inside-pd {
        flex-direction: column;
    }

    .inside-pd .left {
        width: 100%;
    }

    .inside-pd .middle {
        width: 100%;
    }

    .point {
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
    }

    .pt-desc img {
        width: 8rem;
    }

    .inside-cs {
        flex-direction: column;
        gap: 1rem;
    }

    .ics-left {
        width: 100%;
    }

    .ics-right {
        width: 100%;
    }

    .inside-pd .right {
        width: 100%;
    }

    .inside-testi-section .up {
        padding: 0 0;
        flex-direction: column;
        align-items: flex-start;
    }

    a.linka {
        margin-top: .5rem;
    }

    .quote {
        font-size: 6rem;
    }

    .testi p {
        font-size: 20px;
    }

    .testimonial-section {
        padding: 2rem 3rem;
    }

    .why-choose-us {
        height: 160vh;
        padding: 3rem;
    }

    .wcu-content {
        flex-direction: column;
    }

    .wcuc-left {
        width: 100%;
    }

    .wcuc-right {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .wcu-img {
        top: 10rem;
    }

    .tab-num {
        padding: 0;
    }

    .heading p {
        margin-bottom: 8px;
    }

    .content-card {
        padding: 0;
    }
}

@media (max-width: 600px) {

    .hero-slide {
        flex-direction: column-reverse;
        margin-top: 0;
    }

    .hero-img {
        width: 100%;
        height: 87%;
    }

    .text-block {
        width: 90%;
        margin-top: 2rem;
    }

    .desc {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .wcuc-right {
        width: 60%;
    }

    .inside-footer {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 425px) {
    .logo img {
        width: 10rem;
    }

    .hero-img {
        width: 100%;
    }

    .hero-img img {
        margin-top: 0;
    }

    .text-block h2 {
        font-size: 30px;
    }

    .btn {
        margin-top: .5rem;
    }

    .btn a {
        padding: 0.3rem;
    }

    .btn i {
        padding: 0.6rem;
    }

    .about-us-section {
        padding: 1rem;
        padding-top: 0rem;
    }

    .why-choose-us {
        height: 145vh;
        padding: 2rem;
    }

    .inside-pd .middle {
        width: 100%;
    }

    .iaus-r {
        padding: 3rem 0rem;
    }

    .wcu-img {
        top: 12rem;
    }

    .wcuc-right {
        width: 70%;
    }

    .pt-desc img {
        width: 6rem;
    }

    .contact-section {
        padding: 4rem 2rem;
    }

    button {
        width: 65%;
        padding: 0.3rem;
    }

    .btn {
        font-size: 15px;
    }

    .testimonial-section {
        padding: 2rem 2rem;
    }

    .heading p {
        font-size: 25px !important;
    }

    .quote {
        font-size: 5rem;
    }

    .testi p {
        font-size: 18px;
    }

    .inside-cs {
        gap: 0;
    }

    .f-logo img {
        width: 11rem;
    }
}

@media (max-width: 375px) {
    .inside-pd .middle {
        width: 100%;
    }

    .logo img {
        width: 8rem;
    }

    .hamburger {
        font-size: 25px;
    }

    .hero-slide {
        margin-top: 0;
    }

    .iaus-l {
        flex-direction: column;
    }

    .iaus-r {
        padding: 2rem 0rem;
    }

    .l-img.one {
        width: 100%;
    }

    .l-img {
        width: 80%;
    }

    .pt-desc img {
        width: 5rem;
    }

    footer {
        padding: 2rem 1rem;
    }

    .f-logo img {
        width: 11rem;
    }

    button {
        width: 75%;
        padding: 0.2rem;
    }
}

@media (max-width: 320px) {
    .inside-pd .middle {
        width: 100%;
    }

    .logo img {
        width: 8rem;
    }

    .text-block {
        width: 100%;
        margin-top: 2rem;
    }

    .hero-img img {
        margin-top: 0;
    }

    .about-us-section {
        padding: 1rem;
        padding-top: 0;
    }

    .wcuc-right {
        width: 85%;
        right: 4.5rem;
    }

    .pt-desc img {
        width: 4.5rem;
    }

    .wcu-img {
        top: 14rem;
    }

    .why-choose-us {
        /* height: 145vh; */
        padding: 2rem;
    }

    .contact-section {
        padding: 4rem 1rem;
    }

    .heading p {
        font-size: 23px !important;
    }

    .testimonial-section {
        padding: 2rem 1rem;
    }

    .f-logo img {
        width: 10rem;
    }
}