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

@font-face {
    font-family: 'Artegra';
    src: url('../fonts/FONTSPRINGDEMO-ArtegraSansAltExtraBoldRegular.woff2') format('woff2'),
        url('../fonts/FONTSPRINGDEMO-ArtegraSansAltExtraBoldRegular.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Artegra';
}

a, li{
    font-family: 'Poppins-SemiBold';
    text-decoration: none;
}

p{
    font-family: 'Poppins-Regular';
}

:root{
    --primary-color: #cea63b;
    --secondary-color: #4a6927;
    --teritary-color: #0f2958;
}

.pt-6{
    padding-top: 60px;
}

.pb-6{
    padding-bottom: 60px;
}

/* header-start */
.header-sec{
    width: 100%;
    position: relative;
    background: transparent;
    padding: 10px 0;
    z-index: 1000;
}

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

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


.header-left-content a {
    color: #fff;
    font-size: 14px;
    font-family: 'Poppins-Regular' !important;
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px dotted #8692a7;
    transition: all 0.3s ease;
}

.header-left-content a:hover{
    color: var(--primary-color);
}

.header-left-content a:first-child {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
}

.header-left-content i{
    font-size: 18px;
    margin-right: 6px;
    color: var(--primary-color);
}

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

.header-right-content a i{
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.header-right-content a i:hover{
    color: var(--primary-color);
}

/* main-navbar */
.main-navbar{
    padding: 14px 20px;
    background-color: #ffffffed;
    width: 95%;
    position: absolute;
    border-radius: 50px;
    z-index: 999;
    top: 44px; 
    left: 50%;
    transform: translateX(-50%);
}

/* Sticky state */
.main-navbar.sticky {
    position: fixed;
    top: 10px; /* thoda gap upar se */
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px; /* container width */
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: slideDown 0.4s ease;
}

/* Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.main-navbar-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-logo img{
    width: 260px;
    height: auto;
}

.navbar-links ul{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 26px;
}

.navbar-links ul li{
    list-style: none;
}

.navbar-links ul li a{
    text-transform: uppercase;
    font-size: 15px;
    color: #000;
    transition: all 0.3s ease;
}

.navbar-links ul li a:hover{
    color: var(--secondary-color);
}

.navbar-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-btns a{
    text-transform: uppercase;
    background-color: var(--secondary-color);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.navbar-btns a:hover{
    background-color: var(--primary-color);
}

/* dropdown-menu-add */
/* Parent (Services) */
.menu-item-has-children {
    position: relative;
}

/* Dropdown hidden by default */
.menu-item-has-children .custom-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 220px;
    border-radius: 10px;
    padding: 10px 0;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Show on hover */
.menu-item-has-children:hover .custom-dropdown {
    display: block;
}

/* Items */
.custom-dropdown li {
    list-style: none;
}

.custom-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #000;
    font-size: 13px !important;
    text-transform: capitalize;
    transition: 0.3s;
}

.custom-dropdown li a:hover {
    background-color: var(--teritary-color);
    color: #fff !important;
}

/* .menu-item-has-children > a::after {
    content: "\f0dd";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 6px;
    transition: 0.3s;
	display: inline-block;
}

.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
} */


/* Sub dropdown parent */
.menu-item-has-children > .custom-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

/* ONLY first level open on Services hover */
.menu-item-has-children:hover > .custom-dropdown {
    display: block;
}

/* SECOND LEVEL (sub dropdown) */
.custom-dropdown .menu-item-has-children > .custom-dropdown {
    top: 0;
    left: 100%;
    display: none;
}

/* ONLY open when hovering Gutter cleaning */
.custom-dropdown .menu-item-has-children:hover > .custom-dropdown {
    display: block;
}


/* hero-section-start */
.hero-sec{
    margin-top: -100px;
}

.hero-bg{
    background-image: url('images/hero-bg.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 800px;
}

.hero-slider .slick-slide{
    height: 800px;
}

.hero-slider .slick-slide > div{
    height: 100%;
}

.hero-text {
    padding-top: 260px;
    width: 50%;
    gap: 20px;
    z-index: 2;
    position: relative;
}

.hero-text h3{
    color: #fff;
    font-size: 50px;
    letter-spacing: 1px;
}

.hero-text p{
    color: #fff;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.hero-btn-one a{
    text-transform: uppercase;
    background-color: var(--secondary-color);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.hero-btn-one a:hover{
    background-color: var(--primary-color);
}

.hero-btn-two a{
    text-transform: uppercase;
    background-color: var(--primary-color);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.hero-btn-two a:hover{
    background-color: var(--secondary-color);
}

/* booking-section */
section.booking-sec {
    z-index: 9;
    position: absolute;
    top: 180px;
    right: 32px;
    width: 44%;
}


.booking-form-content{
    padding: 30px 20px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 30px;
}

.title{
    font-size: 38px;
    color: var(--teritary-color);
}

.booking-text p{
    color: #646464;
}

.booking-form-content input,
.booking-form-content select{
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background: #f2f2f2;
    font-size: 14px;
    outline: none;
}

.booking-form-content input::placeholder{
    color: #777;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner{
    margin-top: 16px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 14px 80px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover{
    background-color: var(--primary-color);
}

.booking-form-content .select-box {
    position: relative;
}

.booking-form-content .select-box select {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    background: #f2f2f2;
    font-size: 14px;
    outline: none;
    color: #777;

    /* Default arrow remove */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.booking-form-content .select-box i {
    position: absolute;
    right: 18px;
    top: 45%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #555;
}

/* service-section */
.padd-sec {
    padding: 60px 0;
}

.service-box{
    background-color: #f2f2f2;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px 10px 10px 10px;
    transition: all 0.3s ease;
}

.service-box:hover{
    background-color: var(--primary-color);
    transform: translateY(-10px);
}

.service-title{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 20px;
}

.service-title img{
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.service-box:hover .service-title img {
    filter: brightness(0) invert(1);
}

.service-title h4 a{
    color: var(--teritary-color);
    font-size: 24px;
    font-family: 'Artegra' !important;
    transition: all 0.3s ease;
}

.service-box:hover .service-title h4 a{
    color: #fff;
}

.service-img{
    width: 100%;
    height: 100%;
    border-radius: 30px;
    margin-top: 24px;
    position: relative;
}

.service-img img{
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.service-plus-icon i{
    width: 65px;
    height: 65px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 4px solid #fff;
    font-size: 22px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.service-plus-icon {
    position: absolute;
    top: -30px;
    right: 30px;
}

/* about-section */
.about-sec{
    background-image: url('https://webtestinglink.co.uk/beta/comfort-nest-cleaning/wp-content/uploads/2026/04/about-us-bg.png');
    padding: 80px 0;
    height: 720px;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    background-size: cover;
}

.about-sec::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 800px;
    background: #f2f2f2;
    z-index: -1;
	top: 0;
}

.about-left-box{
    position: relative;
}

.about-nature-box{
    padding: 40px 20px;
    background-color: var(--secondary-color);
    border-radius: 30px;
    width: 300px;
    position: absolute;
    top: 36px;
}

.about-nature-icon {
    margin-bottom: 30px;
}

.about-nature-icon img{
    background-color: var(--primary-color);
    padding: 14px;
    border-radius: 50px;
    object-fit: contain;
}

.nature-text {
    width: 86%;
}

.nature-text h4{
    font-size: 24px;
    color: #fff;
    padding-top: 30px;
    border-top: 1px dotted #879c70;
}

.nature-text p{
    color: #dbe1d4;
    font-size: 15px;
}

.nature-btn a{
    padding: 8px 16px;
    text-transform: uppercase;
    font-size: 13px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
}

.about-img {
    width: 60%;
    height: 450px;
    margin-left: auto;
    position: relative;
}

.about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.about-experience{
    background-color: #fff;
    position: absolute;
    bottom: -16px;
    right: -16px;
    border-radius: 100%;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.about-experience h4{
    color: var(--teritary-color);
    font-size: 40px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 1px;
}

.about-experience h4 i{
    font-size: 25px;
}

.about-experience p{
    font-size: 12px;
}

.about-right-box {
    width: 95%;
    margin-left: auto;
}

.about-right-box p{
    color: #646464;
}

.about-btn a{
    text-transform: uppercase;
    background-color: var(--secondary-color);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.about-btn a:hover{
    background-color: var(--primary-color);
}

/* easy-section-start */
.easy-sec{
    background-image: url('images/easy-bg.png');
    background-repeat: no-repeat;
    width: 100%;
    height: 750px;
    padding: 80px 0;
    background-size: cover;
}

.easy-top-text h3{
    font-size: 38px;
    color: #fff;
}

.easy-top-text p{
    color: #fff;
}

.easy-box{
    background-color: #fff;
    padding: 50px 20px 20px 20px;
    border-bottom-right-radius: 50px;
    position: relative;
}

.easy-box h4{
    font-size: 24px;
    color: var(--teritary-color);
}

.easy-box p{
    color: #646464;
}

.easy-num-icon{
    background-color: var(--secondary-color);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: #fff;
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 35px;
    font-weight: bolder;
}

.with-color {
    background-color: var(--primary-color);
}

.with-color h4{
    color: #fff;
}

.with-color p{
    color: #fff;
}

/* testimonail-section */
.testimonial-title-para{
    color: #646464;
}

.testimonial-box{
    padding: 30px 20px;
    background-color: var(--secondary-color);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s ease;
    width: 95%;
    margin: auto;
}

.testimonial-box:hover{
    background-color: #fff;
}

.testimonial-main-text p{
    color: #fff;
    transition: all 0.3s ease;
}

.testimonial-box:hover .testimonial-main-text p{
    color: #646464;
}

.testimonial-box:hover .testimonial-main-text h4{
    color: var(--teritary-color);
}

.testimonial-main-text h4{
    color: var(--primary-color);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dotted #83996c;
    font-size: 24px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.testimonial-main-text span{
    color: #fff;
    font-family: 'Artegra';
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.testimonial-box:hover .testimonial-main-text span{
    color: var(--secondary-color);
}

.testimonial-img{
    position: relative;
}

.testimonial-img img{
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 100%;
    object-position: top;
    border: 5px solid var(--primary-color);
}

.testimonial-quotes-icon {
    position: absolute;
    top: -18px;
    right: 0;
}

.testimonial-quotes-icon i{
    width: 60px;
    height: 60px;
    background-color: var(--teritary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    border-radius: 50px;
    border: 4px solid #fff;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.testimonial-box:hover .testimonial-quotes-icon i{
    background-color: var(--secondary-color);
}

/* reliable-section */
.reliable-sec {
    background-image: url('https://webtestinglink.co.uk/beta/comfort-nest-cleaning/wp-content/uploads/2026/04/about-us-bg.png');
    padding: 80px 0;
    height: 720px;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    background-size: cover;
}

.reliable-sec::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 800px;
    background: #f2f2f2;
    z-index: -1;
	top: 0;
}

.reliable-top-text p{
    color: #646464;
}

.reliable-box {
    padding: 25px 15px;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all 0.3s ease;
    width: 95%;
    min-height: 350px;
    margin: auto;
    height: 328px;
}

.reliable-box:hover{
    background-color: var(--teritary-color);
}

.reliable-img-icon{
    background-color: var(--primary-color);
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.reliable-box:hover .reliable-img-icon{
    background-color: var(--secondary-color);
}

.reliable-img-icon img{
    width: 40px;
    height: 40px;
}

.reliable-box h4{
    margin-top: 20px;
}

.reliable-box h4 a{
    color: var(--teritary-color);
    font-size: 21px;
    font-family: 'Artegra';
    transition: all 0.3s ease;
}

.reliable-box:hover h4 a{
    color: #fff;
}

.reliable-box p{
    color: #646464;
    transition: all 0.3s ease;
}

.reliable-box:hover p{
    color: #fff;
}


/* Slick Dots Styling */
.reliable-slider .slick-dots {
    bottom: -40px; /* thoda niche spacing */
}

.reliable-slider .slick-dots li {
    margin: 0;
}

.reliable-slider .slick-dots li button {
    width: 12px;
    height: 12px;
}

.reliable-slider .slick-dots li button:before {
    font-size: 12px; 
    color: #c2c2c2;     
    opacity: 1;
}

/* Active Dot */
.reliable-slider .slick-dots li.slick-active button:before {
    color: var(--secondary-color);     
}

/* faq-section */
.faq-sec{
    background-image: url('images/faq-bg.png');
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    padding: 80px 0;
    background-size: cover;
}

.faq-left-box h3{
    font-size: 38px;
    color: #fff;
}

.faq-left-box p{
    color: #fff;
}

.faq-btn a{
    text-transform: uppercase;
    background-color: var(--secondary-color);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.faq-btn a:hover{
    background: var(--primary-color);
}


/* Accordion Item spacing */
.faq-accordion-content .accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 30px;
    background: none;
}

/* Accordion Header Button */
.faq-accordion-content .accordion-button {
    background-color: #fff;
    color: #000;
    border-radius: 50px !important;
    padding: 15px 20px;
    box-shadow: none;
    border: 1px solid #eee;
}

/* Remove default bootstrap arrow background */
.faq-accordion-content .accordion-button::after {
    filter: brightness(0);
}

/* Accordion Body */
.faq-accordion-content .accordion-body {
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 25px;
    border-top: none;
    margin-top: 10px;
}

/* Remove gap between header and body */
.faq-accordion-content .accordion-collapse {
    border: none;
}

/* Active (Open) Accordion Header */
.faq-accordion-content .accordion-button:not(.collapsed) {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50px;
}

/* Arrow icon white ho jaye active state me */
.faq-accordion-content .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}


/* get-in-touch-section */
.get-in-touch-text p{
    color: #646464;
}

.get-in-touch-btn a{
    text-transform: uppercase;
    background-color: var(--secondary-color);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.get-in-touch-btn a:hover{
    background-color: var(--primary-color);
}

.get-in-touch-form input,
.get-in-touch-form select{
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background: #f2f2f2;
    font-size: 14px;
    outline: none;
}

.get-in-touch-form textarea{
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 20px;
    background: #f2f2f2;
    font-size: 14px;
    outline: none;
}

.get-in-touch-form input::placeholder{
    color: #777;
}

.get-in-touch-form button{
    margin-top: 10px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.get-in-touch-form button:hover{
    background-color: var(--primary-color);
}

.get-in-touch-form .select-box {
    position: relative;
}

.get-in-touch-form .select-box select {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    background: #f2f2f2;
    font-size: 14px;
    outline: none;
    color: #777;

    /* Default arrow remove */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.get-in-touch-form .select-box i {
    position: absolute;
    right: 18px;
    top: 45%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #555;
}

.get-in-touch-content{
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* footer-section */
.footer-sec{
    background-image: url('images/footer-bg.png');
    padding-top: 120px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-quick-links h4{
    font-size: 22px;
    color: var(--primary-color);
}

.footer-quick-links ul{
    margin: 0;
    padding: 0;
}

.footer-quick-links ul li{
    list-style: none;
    padding-left: 20px;
    padding-bottom: 3px;
    position: relative;
}

.with-gap {
    padding-left: 50px;
}

.footer-quick-links ul li::before{
    content: "\f068"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    margin-right: 8px;
    position: absolute;
    left: 0;
    color: #fff;
}

.footer-quick-links ul li a{
    color: #fff;
    font-family: 'Poppins-Regular' !important;
    transition: all 0.3s ease;
}

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

.subscribe-newsletter h4{
    font-size: 22px;
    color: var(--primary-color);
}

.footer-logo-box p{
    margin-top: 16px;
    font-size: 15px;
    color: #fff;
}

.footer-logo-box h6{
    color: #fff;
    margin-bottom: 10px;
}

.subscribe-newsletter p{
    color: #fff;
}

.subscribe-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    outline: none;
    border-radius: 50px;
    width: 100%;
}

.subscribe-form button {
    padding: 10px 20px;
    border: none;
    background-color: var(--secondary-color);
    color: #fff;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
    border-radius: 50px;
    font-family: 'Poppins-SemiBold' !important;

}

.subscribe-form button:hover {
    background-color: var(--primary-color);
}

.footer-btm-content{
    margin-top: 30px;
    padding: 14px 0;
    border-top: 1px dotted #5d6f8e;
    text-align: center;
}

.footer-btm-content p{
    color: #fff;
}

.footer-btm-content a{
    color: #fff;
}

/* top-btn */
#topBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Show class */
#topBtn.show {
    opacity: 1;
    visibility: visible;
}


/* inner-pages-start */
.inner-banner-sec{
    margin-top: -100px;
}

.inner-banner-bg{
    width: 100%;
    height: 530px;
}

.inner-banner-text {
    padding-top: 220px;
    width: 66%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
    text-align: center;
    position: relative;
}

.inner-banner-text h3{
    color: #fff;
    font-size: 50px;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.inner-banner-text p{
    color: #fff;
	margin-bottom: 0;
	display: none;
}

.inner-banner-text ul{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inner-banner-text ul li{
    list-style: none;
}

.inner-banner-text ul li a{
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.inner-banner-text ul i{
    font-size: 18px;
    color: #fff;
}

.inner-banner-text ul li a:hover{
    color: var(--primary-color);
}

/* service-detail-page-start */

.service-detail-box-img{
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin: 20px 0;
    position: relative;
    border-radius: 30px;
}

.service-detail-box-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-detail-box-img img:hover{
    transform: scale(1.1);
}

.service-detail-left-box h4{
    margin-bottom: 16px;
    color: #000;
}

.service-detail-left-box p{
    color: #646464;
}

.service-detail-left-box ul{
    margin: 0;
    padding: 0;
}

.service-detail-left-box ul li{
    list-style: none;
    padding-left: 20px;
    padding-bottom: 10px;
    color: #2a2a2a;
    position: relative;
}

.service-detail-left-box ul li::before{
    content: "\f068"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    margin-right: 8px;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.service-detail-top-sidebar{
    background-color: #fff;
    width: 100%;
    padding: 20px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service-detail-top-sidebar-text {
    position: relative;
    z-index: 9;
}

.service-detail-top-sidebar-text h4{
    color: #fff;
    text-align: center;
    padding: 10px;
    background-color: var(--teritary-color);
    border-radius: 30px;
}

.service-detail-top-sidebar-text ul{
    margin: 0;
    padding: 0;
}

.service-detail-top-sidebar-text ul li{
    list-style: none;
}

.service-detail-right-box {
    position: sticky;
    top: 90px;
}

.service-detail-top-sidebar-text ul li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--teritary-color);
    padding: 10px 8px;
    margin: 14px 0;
    color: #000;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: 'Poppins-Regular' !important;

}

.service-detail-top-sidebar-text ul li a:hover{
    background-color: var(--teritary-color);
    color: #fff;
}

.service-detail-btm-sidebar{
    background-color: #fff;
    width: 100%;
    padding: 20px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-top: 40px;
}

.service-detail-btm-sidebar input,
.service-detail-btm-sidebar select{
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background: #f2f2f2;
    font-size: 14px;
    outline: none;
}

.service-detail-btm-sidebar textarea{
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 20px;
    background: #f2f2f2;
    font-size: 14px;
    outline: none;
}

.service-detail-btm-sidebar::placeholder{
    color: #777;
}

.service-detail-btm-sidebar button{
    margin-top: 10px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    width: 100%;
}

.service-detail-btm-sidebar button:hover{
    background-color: var(--primary-color);
}

.service-detail-btm-sidebar .select-box {
    position: relative;
}

.service-detail-btm-sidebar .select-box select {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    background: #f2f2f2;
    font-size: 14px;
    outline: none;
    color: #777;

    /* Default arrow remove */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.service-detail-btm-sidebar .select-box i {
    position: absolute;
    right: 18px;
    top: 45%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #555;
}

/* contact-us page */
.contact-page-left-content p{
    color: #646464;
}

.contact-call-box{
    padding: 20px 30px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-call-box:hover{
    background-color: var(--secondary-color);
    transform: scale(1.03);
}

.contact-call-box i{
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-call-box:hover i{
    background-color: #fff;
    color: var(--secondary-color);
}

.contact-call-box a{
    color: #000;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-call-box:hover a{
    color: #fff;
}

.contact-page-left-content {
    width: 95%;
}

.contact-page-right-box input,
.contact-page-right-box select{
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background: #f2f2f2;
    font-size: 14px;
    outline: none;
}

.contact-page-right-box textarea{
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 20px;
    background: #f2f2f2;
    font-size: 14px;
    outline: none;
}

.contact-page-right-box::placeholder{
    color: #777;
}

.contact-page-right-box button{
    margin-top: 10px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    width: 100%;
}

.contact-page-right-box button:hover{
    background-color: var(--primary-color);
}

.contact-page-right-box .select-box {
    position: relative;
}

.contact-page-right-box .select-box select {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    background: #f2f2f2;
    font-size: 14px;
    outline: none;
    color: #777;

    /* Default arrow remove */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-page-right-box .select-box i {
    position: absolute;
    right: 18px;
    top: 45%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #555;
}

.contact-map-sec{
    margin-bottom: 60px;
}

.contact-map-content iframe{
    width: 100%;
    height: 450px;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* about-inner-page-section */
.about-page-right-box p{
    color: #646464;
}

.about-page-img {
    width: 100%;
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.about-page-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 0.5s ease;
}

.about-page-img:hover img {
    transform: scale(1.1);
}

.about-mission-box{
    padding: 25px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 30px;
    transition: all 0.3s ease;
	height: 100%;
}

.about-mission-box:hover{
    background-color: var(--primary-color);
}

.about-mission-icon{
    margin-bottom: 16px;
}

.about-mission-icon i{
    width: 80px;
    height: 80px;
    color: #fff;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-size: 36px;
    transition: all 0.3s ease;
}

.about-mission-box h4{
    color: var(--teritary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.about-mission-box:hover h4{
    color: #fff;
}

.about-mission-box p{
    color: #646464;
    transition: all 0.3s ease;
}

.about-mission-box:hover p{
    color: #fff;
}

.mission-top-para p{
    color: #646464;

}

/* team-section */
.team-sec{
    background: #f2f2f2;
}

/* Team Card */
.team-box{
    background-color: #fff;
    padding: 70px 20px 25px;
    border-radius: 30px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: 60px;
}

/* Hover Effect */
.team-box:hover{
    transform: translateY(-10px);
}

/* Profile Image */
.team-profile{
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.team-profile img{
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Name */
.team-box h4{
    margin-top: 70px;
    font-size: 22px;
    color: var(--teritary-color);
}

/* Role */
.team-box p{
    color: #777;
    margin-bottom: 15px;
}

/* Social Icons */
.team-social-media-icons{
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social-media-icons a{
    width: 35px;
    height: 35px;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
}

.team-social-media-icons a:hover{
    background-color: var(--primary-color);
}

/* NDIS services-section-start */
.ndis-service-content  .ndis-service-box{
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 10px 10px;
	height: 100%;
}

.ndis-service-content  .ndis-service-box .img-box {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 30px;
}

.ndis-service-content  .ndis-service-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    filter: brightness(1);
    transition: all 0.3s ease;
}


.ndis-service-content  .ndis-service-box .icon {
    position: absolute;
    top: 60px;
    right: 25px;
    width: 70px;
    height: 70px;
    background: var(--teritary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
    border: 6px solid #fff;
    transform: translateY(-50%);
    z-index: 2;
}

.ndis-service-content  .ndis-service-box .icon img {
    width: 40px !important;
    height: 40px !important;
}

.ndis-service-content  .ndis-service-box .number {
    position: absolute;
    bottom: 10px;
    left: 30px;
    font-size: 48px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    transition: 0.4s ease;
}

.ndis-service-content  .ndis-service-box .content {
    padding: 10px 10px;
    position: relative;
    border-radius: 10px;
    border-top-left-radius: 0;
    overflow: hidden;
    margin-top: 16px;
}

.ndis-service-content  .ndis-service-box .content h4 a {
    font-size: 24px;
    color: var(--teritary-color);
    font-family: 'Artegra' !important;

}


.ndis-service-content  .ndis-service-box .content p {
    color: #646464;
}

.ndis-service-content  .ndis-service-box .content a {
    color: #000;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ndis-service-content .ndis-service-box .content a:hover {
    color: var(--teritary-color);
}

.ndis-service-content .ndis-service-box .content a i {
    transition: 0.3s;
}


.ndis-service-content .ndis-service-box:hover {
    transform: translateY(-8px);
}


.ndis-service-content  .ndis-service-box:hover .number {
    color: #fff;
    -webkit-text-stroke: 0px;
}


.ndis-service-content  .ndis-service-box:hover .icon {
    background: #000;
}


.ndis-service-content .ndis-service-box:hover a i {
    transform: translateX(6px);
}

/* ndis-service-detail-section */
.ndis-service-img{
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-bottom: 16px;
}

.ndis-service-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.ndis-service-img img:hover{
    transform: scale(1.1);
}

.ndis-service-detail-left-box h4{
    margin-bottom: 16px;
    color: #000;
}

.ndis-service-detail-left-box p{
    color: #646464;
}

.ndis-service-detail-left-box ul{
    margin: 0;
    padding: 0;
}

.ndis-service-detail-left-box ul li{
    list-style: none;
    padding-left: 20px;
    padding-bottom: 10px;
    color: #2a2a2a;
    position: relative;
}

.ndis-service-detail-left-box ul li::before{
    content: "\f068";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}


/* ndis-referral-form-section */
.ndis-referral-sec {
   background: #fff;
}

.ndis-referral-sec .form-box {
    padding: 30px 60px !important;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 30px;
}

.ndis-referral-sec .progress {
   height: 6px;
   background: #ddd;
}

.ndis-referral-sec .progress-bar {
   background: var(--teritary-color);
}

.ndis-referral-sec label {
   font-size: 16px;
   font-weight: 600;
   color: var(--teritary-color);
}

.form-step.active span {
    background: transparent !important;
    border: none;
	color: #000;
    font-weight: 500;
}

.ndis-referral-sec .form-control,
.ndis-referral-sec .form-select {
   width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background: #f2f2f2;
    font-size: 14px;
    outline: none;
}

.ndis-referral-sec h5{
   font-weight: 600;
}

.ndis-referral-sec button.btn-primary {
    margin-top: 16px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 14px 80px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.ndis-referral-sec button.btn-primary:hover {
       background-color: var(--primary-color);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Progress bar */
.form-progress {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 50%;
    background: var(--secondary-color);
    transition: 0.4s ease;
}

.modal-content {
   border-radius: 8px;
}

.modal .form-control {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background: #f2f2f2;
    font-size: 14px;
    outline: none;
}

.modal textarea {
   height: auto;
}

.modal .btn-primary {
   margin-top: 16px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 14px 80px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.modal .btn-primary:hover {
   background-color: var(--primary-color);
}

/* gardening-service-section */
/* Card */
.gardening-service-sec .gardening-service-box {
    background: #f7f7f7;
    border-radius: 30px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.gardening-service-sec .gardening-service-box:hover {
    transform: translateY(-8px);
}

/* Content */
.gardening-service-sec .gardening-service-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gardening-service-sec .gardening-service-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* Image */
.gardening-service-sec .gardening-service-img img {
    width: 100%;
    border-radius: 20px;
}

.gardening-participants-box{
    padding: 25px;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s ease;
	height: 100%;
}

.gardening-participants-box:hover{
    background-color: var(--secondary-color);
}

.gardeing-participants-icon{
    margin-bottom: 20px;
}

.gardeing-participants-icon i{
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.gardening-participants-box:hover  .gardeing-participants-icon i{
    background-color: #fff;
    color: var(--secondary-color);
}

.gardening-participants-box h4{
    color: var(--teritary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.gardening-participants-box:hover h4{
    color: #fff;
}

.gardening-participants-box p{
    color: #646464;
    transition: all 0.3s ease;
}

.gardening-participants-box:hover p{
    color: #fff;
}

/* pricing-section */
.pricing-sec {
    background: #fff;
	padding-bottom: 60px;
}

/* Card */
.pricing-sec .pricing-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

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

/* Header */
.pricing-sec .pricing-header {
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    font-size: 16px;
}

.pricing-sec .pricing-header i {
    margin-right: 6px;
}

/* Body */
.pricing-sec .pricing-body {
    padding: 30px 25px;
}

/* Price */
.pricing-sec .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--teritary-color);
}

.pricing-sec .price sup {
    font-size: 18px;
}

/* Duration */
.pricing-sec .duration {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.pricing-sec .duration i {
    margin-right: 5px;
}

/* List */
.pricing-sec .pricing-body ul {
    list-style: none;
    padding: 0;
}

.pricing-sec .pricing-body ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.pricing-sec .pricing-body ul li i {
    color: #000;
    font-size: 12px;
}

/* Button */
.pricing-sec .pricing-btn {
    text-transform: uppercase;
    background-color: var(--secondary-color);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.pricing-sec .pricing-btn i {
    margin-left: 5px;
}

.pricing-sec .pricing-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Featured */
.pricing-sec .pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-detail-left-box p strong {
    color: #0f2958;
    font-weight: 900;
}


/* 30.04.2026 */
.booking-form-content p {
    margin-bottom: 0;
}

.pagination-box span {
    background: #4a6927;
    padding: 10px;
    color: #fff;
    border-radius: 6px;
    /* font-size: 17px; */
    margin: 0 2px;
}

.pagination-box a {
    text-align: center;
    background: #4a6927;
    /* width: 30px; */
    /* height: 30px; */
    padding: 10px;
    border-radius: 6px;
    color: #fff;
	margin: 2px;
}

.pagination-box {
    text-align: center;
}

section.gardening-participants-sec {
    padding: 0 0 60px 0;
}

/* Responsive */
@media only screen and (min-width: 1440px) {
	
	p {
    font-size: 18px;
}
	
	.title {
    font-size: 40px;
}
	
	.hero-text h3 {
    font-size: 54px;
}
	
	.service-title h4 a {
    font-size: 26px;
}
	
	.easy-top-text h3 {
    font-size: 40px;
}
	
	.easy-box h4 {
    font-size: 26px;
}
	
	.faq-left-box h3 {
    font-size: 40px;
}
	
	.testimonial-main-text h4{
    font-size: 26px;
}
	
	.about-mission-box h4 {
    font-size: 26px;
}
	
	.service-detail-left-box h4 {
    font-size: 26px;
}
	
	.ndis-service-content .ndis-service-box .content h4 a {
    font-size: 26px;
}
	
	.gardening-participants-box h4 {
    font-size: 26px;
}

	
	
}

@media only screen and (max-width: 1280px) {

}

@media only screen and (max-width: 1199px) {
	
	.navbar-btns {
    gap: 10px;
}
	
	.navbar-btns a {
    padding: 8px 16px;
}
	
	

}

@media only screen and (max-width: 1140px) {
	
	.navbar-links ul {
    gap: 24px;
}
	
	.navbar-links ul li a {
    font-size: 14px;
}
	
	.navbar-logo img {
    width: 220px;
    height: auto;
}
	

}

@media only screen and (max-width: 1024px) {
	
	.navbar-btns a {
        padding: 6px 12px;
		font-size: 14px;
    }
	
	.navbar-btns {
        gap: 4px;
    }
	
	.navbar-logo img {
        width: 194px;
        height: auto;
    }

}

@media only screen and (max-width: 991px) {
	


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

/* Hamburger Button */
.navbar-toggler {
  width: 45px;
  height: 40px;
  border: none;
  background: #4a6927;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}
	
	/* Offcanvas */
.offcanvas {
  width: 280px;
}

/* Mobile menu */
.mobile-menu {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: 12px;
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  display: block;
	        border-bottom: 1px solid #f2f2f2;
        padding-bottom: 6px;
}

/* Mobile buttons */
.mobile-btns a {
  text-transform: uppercase;
    background-color: var(--secondary-color);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
	display: block;
	margin: 10px 0;
}
	
	.mobile-btns a:hover{
		background: var(--primary-color);
	}
	
	.navbar-logo img {
        width: 260px;
        height: auto;
    }
	
	.main-navbar.sticky {
    max-width: 960px;
}
	
	.header-left-content {
    gap: 6px;
}
	
	.header-left-content a {
    font-size: 12px;
	margin-left: 0;
}
	
	section.booking-sec {
    z-index: 2;
    position: relative;
    top: 0px;
    right: 0px;
    width: 100%;
    padding-top: 40px;
}
	
	.hero-slider .slick-slide {
    height: 650px;
}
	
	.hero-text {
    padding-top: 204px;
    width: 100%;
    text-align: center;
}
	
	.hero-icon-img {
    display: flex;
    justify-content: center;
    align-items: center;
}
	
	.hero-btn {
    justify-content: center;
}
	
	.hero-text h3 {
    font-size: 44px;
}
	
	.title {
    font-size: 34px;
}
	
	.padd-sec {
    padding: 40px 0;
}
	
	.about-sec::before {
    height: 100%;
}
	
	.about-sec {
    height: auto;
}
	
	.easy-sec {
    height: auto;
    padding: 80px 0 130px 0;
}
	
	.faq-accordion-content.wow.animate__.animate__fadeInUp.animated {
    margin-top: 20px;
}
	
	.footer-logo img {
    width: 300px;
    height: auto;
}
	
	.inner-banner-text h3 {
    font-size: 44px;
}
	
	.inner-banner-bg {
    width: 100%;
    height: 480px;
}
	
	.inner-banner-text {
    padding-top: 200px;
    width: 100%;
}
	
	.faq-left-box h3 {
    font-size: 34px;
}
	
	.menu-item-has-children > .custom-dropdown {
        display: none;
        position: static;
        width: 100%;
        box-shadow: none;
    }

    .menu-item-has-children.open > .custom-dropdown {
        display: block;
    }
	
	.menu-item-has-children > a {
     position: relative;
        padding-right: 25px;
		display: flex;
        justify-content: space-between;
        align-items: center;
}

    /* real Font Awesome icon */
.menu-item-has-children > a i {
    pointer-events: none;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.3s ease;
}

/* rotate on open */
.menu-item-has-children.open > a i {
    transform: translateY(-50%) rotate(180deg);
}
	
	.clk_btn {
    top: 0 !important;
    right: 0 !important;
}
	
	.ndis-referral-sec .form-box {
    padding: 30px 30px !important;
}
	
	.hero-text h4 {
    font-size: 34px !important;
}
	
	

}


@media only screen and (max-width: 980px) {

}

@media only screen and (max-width: 840px) {
	
	.main-navbar.sticky {
        max-width: 800px;
    }

}


@media only screen and (max-width: 800px) {
	
	.main-navbar.sticky {
        max-width: 767px;
    }

}


@media only screen and (max-width: 768px) {
	
	.main-navbar {
    top: 36px;
}
	
	.main-navbar.sticky {
        max-width: 710px;
    }

}

@media only screen and (max-width: 767px) {
	
	.header-right-content {
    display: none;
}
	
	.header-left-content i {
    font-size: 14px;
    margin-right: 0px;
}
	
	    .hero-text h3 {
        font-size: 38px;
    }
	
	.hero-text {
        padding-top: 156px;
    }
	
	    .hero-text h4 {
        font-size: 28px !important;
    }
	
	    .hero-slider .slick-slide {
        height: 550px;
    }
	
	.title {
        font-size: 30px;
    }
	
	.easy-top-text h3 {
    font-size: 30px;
}
	
	.faq-sec {
    padding: 40px 0;
    background: #0f2958;
}
	
	.reliable-sec {
    padding: 40px 0;
    background: #f2f2f2;
}
	
	.easy-sec {
        height: auto;
        padding: 40px 0;
        background: #0f2958;
    }
	
	    .about-sec {
        height: auto;
        background: #f2f2f2;
        padding: 40px 0;
    }
	
	.with-gap {
    padding-left: 0;
}
	
	.about-img {
    width: 100%;
}

	.about-nature-box{
    display: none;
}
	
	.faq-left-box h3 {
    font-size: 30px;
    color: #fff;
}
	
	.inner-banner-text {
        padding-top: 174px;
        width: 100%;
    }
	
	    .inner-banner-bg {
        width: 100%;
        height: 430px;
    }
	
	.inner-banner-text h3 {
        font-size: 36px;
    }
	
	.about-page-img {
    height: 400px;
}

}

@media only screen and (max-width: 667px) {
	
	.main-navbar.sticky {
        max-width: 610px;
    }
	
	.service-img {
    height: 250px;
}

}

@media only screen and (max-width: 600px) {
	
	    .main-navbar.sticky {
        max-width: 560px;
    }

}

@media only screen and (max-width: 500px) {
	
	    .header-left-content a {
        font-size: 10px;
    }
	
	.main-navbar.sticky {
        max-width: 480px;
    }
	
	.hero-text h3 {
        font-size: 28px;
    }
	
	    .hero-slider .slick-slide {
        height: 500px;
    }
	
	.title {
        font-size: 25px;
    }
	
	.service-title h4 a {
    font-size: 22px;
}
	
	.easy-top-text h3 {
        font-size: 25px;
    }
	
	.faq-left-box h3 {
    font-size: 25px;
}
	
	.easy-box h4 {
    font-size: 22px;
}
	
	.about-mission-box h4 {
    font-size: 22px;
}
	
	.inner-banner-text {
        padding-top: 210px;
        width: 100%;
    }
	
	.inner-banner-text h3 {
        font-size: 30px;
    }
	
	.inner-banner-bg {
        width: 100%;
        height: 450px;
    }
	
	.ndis-service-content .ndis-service-box .content h4 a {
    font-size: 22px;
}
	
	.pricing-sec .price {
    font-size: 44px;
}
	
	.service-detail-left-box h4 {
    font-size: 22px;
}
	
	.about-experience{
    bottom: -30px;
    right: 0;
}
	
	.hero-text h4 {
        font-size: 20px !important;
    }
	
	    .hero-text {
        padding-top: 194px;
    }

}

@media only screen and (max-width: 480px) {
	
	.main-navbar.sticky {
        max-width: 414px;
    }
	
	.navbar-logo img {
        width: 180px;
        height: auto;
    }
	
	.testimonial-box {
	text-align: center;
    flex-direction: column-reverse;
}
	
	.header-content-box {
    display: none;
}
	
	.main-navbar {
        top: 10px;
    }
	
	.ndis-referral-sec .form-box {
    padding: 30px 20px !important;
}
	

}

@media only screen and (max-width: 414px) {
	
	    .main-navbar.sticky {
        max-width: 375px;
    }
	
	.contact-call-box i {
    width: 40px;
    height: 40px;
    font-size: 20px;
}
	
	.contact-call-box a {
    font-size: 13px;
}
	
	.contact-call-box {
    padding: 20px 10px;
}
	
	.hero-slider .slick-slide {
        height: 570px;
    }

}

@media only screen and (max-width: 375px) {
	
/* 	.hero-text {
        padding-top: 194px;
    }
	
	.hero-slider .slick-slide {
        height: 520px;
    } */
	
	.main-navbar.sticky {
        max-width: 360px;
    }

}

@media only screen and (max-width: 360px) {
	
	.main-navbar.sticky {
        max-width: 320px;
    }
	
	.inner-banner-text ul li a {
    font-size: 14px;
}

}


@media only screen and (max-width: 320px) {
	
	.main-navbar.sticky {
        max-width: 294px;
    }

}

.clk_btn {
    position: absolute;
    top: -3px;
    right: -15px;
}

.about-page-left-box.comfort-post {
    position: sticky;
    top: 66px;
}


/* 04.05.2026 */
ul.custom-dropdown .clk_btn {
    right: 8px;
    top: 3px;
}

.hero-text h4 {
    margin-top: 30px;
    color: #fff;
    font-size: 38px;
}
