@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');

body {
    font-family: "Dosis", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



:root {
    --green: #36913a;
    --orange: #f25d38;
}

a {
    text-decoration: none;
}

p {
    font-size: 18px;
    margin-bottom: 0px;
}


ul {
    padding: 0px;
    margin: 0;
}

ul li {
    list-style: none;
}



section {
    padding: 50px 0px;
}

@media(max-width: 767px) {
    section {
        padding: 20px 0px;
    }

    p {
        font-size: 14px;
        text-align: justify;
    }
}






/* fixed icon start */
.whats-fixed {
    position: fixed;
    bottom: 25%;
    left: 1%;
    z-index: 9999;

}

.whats-fixed img {
    height: 50px;
    filter: drop-shadow(rgba(0, 0, 0, 0.629) 0px 4px 12px);

}

.phone-fixed {
    position: fixed;
    bottom: 25%;
    right: 1%;
    z-index: 9999;

}

.phone-fixed img {
    height: 50px;
    filter: drop-shadow(rgba(0, 0, 0, 0.629) 0px 4px 12px);
}

/* fixed icon start */



/* topbar css start */
.topbar {
    display: flex;
    justify-content: space-around;
    background-color: var(--green);
    padding: 9px;
}

.topbar-email-name {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 10px;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.icon-wrapper i {
    font-size: 17px;
    color: #fff;
}

.name-email a span {
    color: rgb(243, 243, 23);
}

.name-email p {
    margin-bottom: 0;
    font-size: 15px;
}

.name-email a {
    color: #fff;
}

.email-add {
    font-size: 13px !important;
}

@media (max-width: 767px) {

    .topbar {
        flex-direction: column;
        align-items: center;
        gap: 0px;
        padding: 5px 0;
        text-align: center;
    }

    .have-quest {
        display: none;
    }

    .topbar-email-name {
        gap: 5px;
        padding-left: 0;
        justify-content: center;
    }

    .name-email p,
    .name-email a {
        font-size: 10px;
    }

    .topbar-icon {
        justify-content: center;
        flex-wrap: wrap;
    }

    .icon-wrapper i {
        font-size: 12px;
    }

    .topbar-icon a {
        width: 20px;
        height: 20px;
    }

    .topbar-icon i {
        font-size: 10px;
    }

}

/* topbar css end */


/* subpage banner start */

.sub-page {
    background: url(../img/banner/sylvan-sub-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sub-page-heading {
    padding: 100px 50px;
    text-align: start;
}

.sub-page-heading h1 {
    color: #000;
    font-size: 50px;
    font-weight: 600;
    text-align: start;
}

.sub-page-heading p a,
.sub-page-heading p i {
    text-decoration: none;
    color: #000;
}

@media(max-width: 768px) {
    .sub-page-heading h1 {
        color: #000;
        font-size: 18px;
        font-weight: 600;
    }

    .sub-page-heading {
        padding: 20px 0px;
        text-align: start;
    }

    .sub-page-heading p {
        font-size: 10px;
    }
}

/* sub page banner end */




/* navbar css start */

.navbar {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: sticky;
    padding: 0;
}

.navbar-brand img {
    height: 90px;
}

.navbar-nav .nav-item .nav-link {
    color: #000;
    font-weight: 500;
    transition: 0.1s ease-in-out;
    padding: 5px 10px;
    font-size: 18px;
}

.navbar-nav .nav-item .nav-link:hover {
    background-color: var(--orange);
    color: #fff;
    padding: 5px 10px;
}




.active-nav {
    background-color: var(--orange);
    color: #fff !important;
    padding: 5px 15px;
}




.nav-soical-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.nav-soical-icon a i {
    border: 1px solid var(--orange);
    color: var(--orange);
    font-size: 18px;
    padding: 12px 12px;
    border-radius: 50%;
    transition: 0.4s ease-in-out;

}

.nav-soical-icon a i:hover {
    background-color: var(--orange);
    color: #fff
}


.dropdown-menu .dropdown-item {
    font-weight: 500;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--orange);
    color: #fff;
}

@media(max-width: 767px) {
    .navbar-brand img {
        height: 50px;
    }

    .navbar-nav .nav-item .nav-link {
        color: #000;
        font-weight: 500;
        transition: 0.1s ease-in-out;
        padding: 5px 10px;
        font-size: 16px;
    }

    .nav-soical-icon {
        display: flex;
        justify-content: start;
        align-items: start;
        gap: 10px;
    }

    .nav-soical-icon a i {
        border: 1px solid var(--orange);
        color: var(--orange);
        font-size: 12px;
        padding: 8px 8px;
        border-radius: 50%;
        transition: 0.4s ease-in-out;

    }
}








/* navbar css end */




/* crousel css start */
.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.596), rgba(0, 0, 0, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.carousel-caption h2 {
    font-size: 50px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.carousel-caption p {
    font-size: 17px;
    margin-top: 10px;
}

.carousel-caption .btn {
    background: #f25d38;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    transition: 0.3s;
}

.carousel-caption .btn:hover {
    background: #36913a;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 15px !important;
}

.carousel-item img {
    width: 100%;
}

@media(max-width: 767px) {
    .carousel-caption h2 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .carousel-caption p {
        font-size: 14px;
        /* margin-top: 10px; */
    }

    .carousel-caption .btn {
        padding: 5px 20px;
        font-size: 12px;
    }
}

/* crousel css end */



/* about us css start */

.about-heading {
    margin-bottom: 13px;

}

.about-heading h1 {
    color: var(--green);
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;

}

.about-content-heading {
    text-align: center;
    margin-bottom: 30px;
}

.about-content-heading h2 {
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 15px;
}

.about-btn {
    text-align: center;
}

.about-btn a {
    background-color: var(--green);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 20px;
    transition: 0.4s ease-in-out;
}

.about-btn a:hover {
    background-color: var(--orange);
    color: #fff;
}

@media(max-width: 767px) {
    .about-heading {
        margin-bottom: 10px;

    }

    .about-heading h1 {
        font-size: 18px;
    }

    .about-content-heading h2 {
        font-size: 26px;
        font-weight: 500;
        margin-bottom: 12px;
    }

}



/* about page */
.about-page-para p {
    text-align: justify;
}

/* about us css end */


/* service css start */

.all-sec-heading {
    margin-bottom: 50px;
}


.all-sec-heading h2 {
    font-size: 45px;
    font-weight: 600;
    text-align: center;
}

.service-name h3 {
    font-size: 35px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 12px;
}

.service-para {
    margin-bottom: 30px;
}


.service-content {
    background: url(../img/service/service-bg.jpg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.service-btn a {
    background-color: var(--green);
    color: #fff;
    font-size: 20px;
    padding: 5px 20px;
    transition: 0.4s ease-in-out;
}

.service-btn a:hover {
    background-color: var(--orange);
    color: #fff;
}

@media(max-width: 767px) {
    .all-sec-heading {
        margin-bottom: 25px;
    }

    .all-sec-heading h2 {
        font-size: 25px;
        font-weight: 500;
        text-align: center;
    }

    .service-content {
        background: none;

    }

    .service-btn {
        margin-bottom: 12px;
    }

    .service-name h3 {
        font-size: 23px;
        font-weight: 600;
        color: var(--green);
        margin-bottom: 12px;
    }

}

/* service css end */

/* why choose us css start */
.section-title {
    font-size: 35px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--green);
}

.section-subtitle {
    margin-bottom: 20px;
}


.choose-list {
    margin-top: 20px;
}

.choose-item {
    margin-bottom: 25px;
    padding-left: 45px;
    position: relative;
}

.choose-item i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 25px;
    color: var(--orange);
}

.choose-item h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--green);
}

.choose-item p {
    color: #666;
}

.why-img img {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.why-img img:hover {
    transform: scale(1.03);
}

@media(max-width: 767px) {
    .why-img {
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 26px;
        font-weight: 600;
        color: #222;
        margin-bottom: 12px;
    }
}

/* why choose us css end */

/* testimonial css start */

.testimonial-section {
    position: relative;
    background: url(../img/why-choose/why-choose-img-sylvan.jpg) center/cover no-repeat;
    padding: 80px 20px;
    color: #fff;
}

.testimonial-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.6);
    z-index: 0;
}

.testimonial-section .container {
    position: relative;
    z-index: 1;
}

/* Small Tag */
.tag {
    background: #f25d38;
    padding: 6px 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* Title */
.title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Quotes */
.quote {
    font-style: italic;
    max-width: 650px;
    margin: 0 auto 15px;
    color: #eee;
}

.author {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #f5c542;
}



.test-slide {
    background-color: #00000083;
    padding: 30px 40px;
}

@media(max-width: 767px) {
    .tag {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .title {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 20px;
    }



    .test-slide {
        background-color: #00000083;
        padding: 15px 30px;
    }

    .quote {
        font-size: 12px;
    }

    .author {
        font-size: 16px;
    }

    .carousel-control-icon {
        font-size: 12px;
        color: #f5c542;

    }
}

/* testimonial css end */

/* blog css start */

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin: 2px;

}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-img img {
    width: 100%;
    /* height: 220px; */
    object-fit: cover;
    transition: 0.4s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-category {
    background: var(--orange);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    color: var(--green);
    font-weight: 600;
    font-size: 20px;
}

.blog-content p {
    font-size: 15px;
    color: #555;
    margin: 10px 0;
}

.read-more {
    text-decoration: none;
    color: var(--orange);
    font-weight: 600;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--green);
}

@media(max-width: 767px) {
    .blog-content {
        padding: 15px;
    }

    .blog-content h4 {
        font-size: 18px;
    }

    .blog-content p {
        font-size: 14px;
    }

    .read-more {
        font-size: 12px;
    }
}

/* blog css end */

/* blo-detail css start */

.blog-details-big-img {
    box-shadow: #8c0d0d1a 0px 4px 12px;
    padding: 10px;
    margin-bottom: 5px;
}

.recent-link {
    text-decoration: none;
}

.blog-content h3 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 12px;
}

.recent-content h3 {
    font-size: 17px;
    color: #000;
    font-weight: 600;
}

.recent-content p {
    color: #000;
    font-size: 14px;
}

.recent-content p i {
    color: var(--orange);
    padding-right: 4px;
}
.name-recent h4{
    font-size: 25px;
    font-weight: 600;
}


.recent-blog {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px dotted var(--orange);

}

@media(max-width: 767px) {
    .recent-content h3 {
        font-size: 16px;
        color: #000;
        font-weight: 600;
    }

    .blog-content h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 12px;
    }
    .name-recent h4{
    font-size: 18px;
    font-weight: 600;
}
}





/* blo-detail css end */



/* contact css start */

.contact-unique {
    width: 100%;

}


.contact-image {
    background: url(../img/blog/blog-3-img-sylvan.jpg) center/cover no-repeat;
    position: relative;
}

.contact-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(54, 145, 59, 0.87);
}

.contact-image .overlay-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.contact-image h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 14px;
}

.contact-image p {
    margin-bottom: 10px;
    color: #f1f1f1;
}

.contact-image i {
    color: var(--orange);
    margin-right: 8px;
}

.contact-form-box {
    max-width: 500px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 50px;
}

.contact-form-box input,
.contact-form-box textarea {
    border: 1px solid #ddd;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: var(--green);
    box-shadow: none;
}

.contact-form-box button {
    background: var(--green);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-form-box button:hover {
    background: var(--orange);
}

@media(max-width: 767px) {
    .contact-image {
        margin-bottom: 20px;
    }

    .contact-image h2 {
        font-size: 26px;
    }

    .contact-form-box {

        padding: 2dvh;
    }
}


/* contact page css */
.main-contact-detail {
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px;
}

.small-card-contact h2 {
    font-size: 21px;
    font-weight: 600;
}

.small-card-contact p {
    font-size: 16px;
}

.sunrise-map iframe {
    width: 100%;
    height: 300px;
}

@media(max-width: 767px) {
    .small-card-contact {
        margin-bottom: 15px;
    }

    .small-card-contact p {
        text-align: center;
    }
}


.enquri {
    background-color: #f5f5f5;
}

/* captcha start */
.captchasep1 {
    display: flex;
}

.captchasep1 input {
    width: 100% !important;
    margin-top: 0 !important;
    height: 50px;
}

.captchasep1 .captcha-codes-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    border-radius: 5px;
    border-top: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    font-weight: bolder !important;
}

.captchasep1 .captcha-codes-sec p {
    margin-bottom: 0;
    letter-spacing: 9px;
    font-style: italic;
    font-size: 18px;
    padding: 10px;
    height: 100%;
    /* color: #fff; */
    font-weight: bolder !important;
}

@media (max-width: 768px) {
    .captchasep1 .captcha-codes-sec p {
        font-size: 24px;
    }

    .captchasep1 {
        margin-bottom: 10px;
    }
}

@media (max-width: 992px) {
    .captchasep1 .captcha-codes-sec p {
        font-size: 18px;
    }
}

.captchasep1 .captcha-codes-sec {
    margin-bottom: 10px;
}

.captchasep1 .captcha-codes-sec button {
    font-style: italic;
    font-size: 22px;
    outline: none;
    background: transparent;
    height: 100%;
    border: none;
    font-weight: bolder;
}

.captchasep1 .captcha-codes-sec button i {
    background: #000;
    color: #fff;
    padding: 3px;
    border-radius: 6px;
}

@media screen and (max-width: 600px) {
    .captchasep1 {
        display: flex;
        flex-direction: column !important;
    }

    .captchasep1 .captcha-codes-sec {
        border-left: 1px solid #ced4da;
        border-right: 1px solid #ced4da;
        border-bottom: 1px solid #ced4da;
        margin-top: 3px;
    }
}

.map-syl iframe {
    width: 100%;
    height: 350px;
}



/* contact css end */


/* gallery-css start */

.photo-gallery {
    background: #fafafa;
}



.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Masonry-style look */
.gallery-card.tall {
    height: 450px;
}



.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Overlay Text */
.gallery-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card .overlay span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-card:hover .overlay {
    opacity: 1;
}

/* gallery css end */











/* footer section css start */

.footer-section {
    background-color: #343a40;
    padding: 30px 50px;
}

.footer-section .rowy {
    padding-bottom: 0px !important;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo a img {
    height: 150px;
}

.about-footer {
    color: #fff;
}

.about-footer .name-footer-heading h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px
}

.about-footer .about-footer-para p {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
}

.about-footer ul li {
    line-height: 2;

}

.about-footer ul li a {
    color: #fff;
    font-size: 16px;
    transition: 0.5s ease-out;
}

.about-footer ul li a:hover {
    color: var(--orange);
}

.footer-soical-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-soical-links a {
    color: #fff;
}

.footer-soical-links a i {
    font-size: 20px;
    background-color: var(--orange);
    padding: 15px;
    border-radius: 50%;
    transition: 0.5s ease-in-out;
}

.footer-soical-links a i:hover {
    background-color: #fff;
    color: var(--orange);
}

@media(max-width: 767px) {
    .footer-section {
        padding: 15px 25px;
    }

    .footer-logo a img {
        height: 100px;
    }

    .footer-logo {
        margin-bottom: 12px;
    }

    .about-footer .name-footer-heading h2 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px
    }

    .about-footer .about-footer-para p {
        font-size: 14px;

    }

    .about-footer {
        margin-bottom: 15px;
    }

    .about-footer ul li a {
        font-size: 14px;

    }

    .social-heading {
        text-align: start !important;
    }

    .footer-soical-links {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 15px;
    }

    .footer-soical-links a i {
        font-size: 12px;
        padding: 12px;

    }

}

@media(max-width: 991) {
    .footer-soical-links {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 15px;
    }

    .footer-soical-links a i {
        font-size: 12px;
        padding: 12px;

    }
}




/* copyright */

.main-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right-side p,
.left-side p {
    color: #fff;
}

.left-side p a {
    text-decoration: none;
    color: #fff;
}

@media (max-width: 767px) {
    .footer-line {
        margin-bottom: 10px;
    }

    .main-copyright {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .right-side p {
        text-align: center;
    }

    .logo-icon {
        margin-bottom: 20px;
    }

    .right-side p,
    .left-side p {
        color: #fff;
        font-size: 12px;
        margin-bottom: 0px;
    }
}
/* footer end */




/* success style start */
.success-form {
  padding: 50px 0;
}

.success-form .success-head {
  text-align: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 50px 10px;
}

.success-form .success-head i {
  color: #87bd48;
  font-size: 100px;
  border: 10px solid #87bd48;
  border-radius: 50%;
  padding: 15px 22px;
}

.success-form .success-head h1 {
  color: #155391;
  margin: 13px 0 0;
}

.success-form .success-head p {
  margin-bottom: 28px !important;
}

.success-form .success-head a {
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
}

/*success style end */



