@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


:root {
    --red: #DA251C;
    --blue: #29176E;
}


a {
    text-decoration: none;
}

p {
    font-size: 18px;
}

ul {
    list-style: none;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 32px;
}

section {
    padding: 50px 0px;
}

@media(max-width: 767px) {
    section {
        padding: 30px 0px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 28px;
    }

    p {
        font-size: 15px;
        text-align: justify;
    }
}

/* h1 heading css start ======================================*/

.dotted-heading {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    font-weight: bold;
}

.dotted-heading::before,
.dotted-heading::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    border-top: 2px dotted #DA251C;
    transform: translateY(-50%);
}

.dotted-heading::before {
    left: -60px;
}

.dotted-heading::after {
    right: -60px;
}

/* h1 heading css start =============================*/



/* topbar css start=================================== */
.topbar-section {
    background-color: var(--blue);
    overflow: hidden;
    white-space: nowrap;
    padding: 10px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scroll-left 40s linear infinite;
    color: #fff;
    font-size: 15px;
}

.marquee-content span {
    margin-right: 50px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .marquee-content {
        font-size: 12px;
    }
}

/* topbar css end=================================== */




/* subpage banner start */

.sub-page {
    background: linear-gradient(to right, rgba(3, 37, 100, 0.507), #00000017), url(../image/banner/demo-sub-page-sunrise.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sub-page-heading {
    padding: 100px 50px;
    text-align: start;
}

.sub-page-heading h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 600;
}

.sub-page-heading p a,
.sub-page-heading p i {
    text-decoration: none;
    color: #fff;
}

@media(max-width: 767px) {
    .sub-page-heading h2 {
        color: #fff;
        font-size: 30px;
        font-weight: 600;
    }

    .sub-page-heading {
        padding: 30px 40px;
        text-align: start;
    }
}

/* sub page banner end */




/* fixed icon css start */
/* fixed icon start */
.whatsapp-icon,
.phone-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 20px;
    z-index: 100;
}

.whatsapp-icon {
    right: 2%;
}

.phone-icon {
    left: 2%;
}

.whatsapp-icon img,
.phone-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.whatsapp-icon img:hover,
.phone-icon img:hover {
    transform: scale(1.1);
    /* transform: translateZ(0.5s); */
}

@media (max-width: 768px) {
    .whatsapp-icon {
        right: 0%;
    }

    .phone-icon {
        left: 0%;
    }
}

/* fixed icon end */
/* fixed icon css end */



/* navbar css start ============================================================== */

.carousel-item img {
    width: 100%;
}

.navbar-brand .logo {
    width: 120px;
}

.nav-item .nav-link {
    color: #000;
    font-weight: 500;
}

.nav-active {
    background-color: var(--blue);
    color: #fff !important;
    border-radius: 5px;
    /* padding: 4px 7px; */
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    background-color: #29176E;
}

.dropdown-menu .dropdown-item {
    color: #fff;
}

.dropdown-menu .dropdown-item:hover {
    background: none;
    color: #f8bfbf;
}


.head-icons {
    /* background: rgb(14, 13, 13); */
    padding: 8px 10px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.head-icons img {
    width: 25px;

    /* box-shadow: rgba(239, 58, 8, 0.825) 0px 2px 3px 3px; */
    border-radius: 10px;
}

@media(max-width: 767px) {
    .navbar-brand .logo {
        width: 95px;
    }

    .navbar-toggler {
        border: none;
    }

}

/* navbar css end ============================================================== */


/* activity card css start =========================================================== */
.acticity-card {
    background-color: #794846;
    padding-bottom: 30px;
    /* space for dots */
}

.activity-card img {
    background: #fff;
    border-radius: 50%;
    padding: 3px 3px 3px 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.5;
    transition: 0.3s;
}

.owl-dot.active {
    background: #fcd12a;
    opacity: 1;
}

@media(max-width:400px) {
    .acticity-card {
        padding: 10px 0px !important;
    }
}

/* activity card css end =========================================================== */


/* about btn ======================================================================== */

/* From Uiverse.io by vinodjangid07 */
.button {
    width: 110px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background-color: #DA251C;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    border: none;
    position: relative;
    cursor: pointer;
    transition-duration: .2s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
    padding-left: 8px;
    transition-duration: .5s;
}

.svgIcon {
    height: 25px;
    transition-duration: 1.5s;
}

.bell path {
    fill: #000;
}

.button:hover {
    background-color: #b4a1ff;
    transition-duration: .5s;
    color: #000;
}

.button:active {
    transform: scale(0.97);
    transition-duration: .2s;
}

.button:hover .svgIcon {
    transform: rotate(250deg);
    transition-duration: 1.5s;
}

/* end about btn ===================================================================== */

/* about us css start =================================================================== */
.all-page-heading {
    margin-bottom: 40px;
}

.all-page-heading p {
    font-weight: 500;
    color: #525151;
    text-align: center;

}

.about-post img {
    width: 100%;
}

.about-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 100%;
    background-color: var(--blue);
    color: #fff;
    padding: 20px 25px;
}

.about-detail-content h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-detail-content span {
    color: var(--red);
}

@media(max-width: 767px) {
    .about-detail {
        padding: 14px 15px;
    }

    .about-detail-content h3 {
        font-size: 23px;
    }

    .all-page-heading {
        margin-bottom: 25px;
    }

}

@media(max-width: 1220px) {
    .about-post {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
}

/* about us css end =================================================================== */


/* products css start ====================================================== */
.category-card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover img {
    transform: scale(0.9);
}

.category-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;
    text-align: center;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overlay-content h3 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.read-more-btn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
    /* border: 1px solid #fff; */
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    background-color: transparent;
}

.category-card:hover .read-more-btn {
    background-color: var(--red);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media(max-width: 767px) {
    .overlay-content h3 {
        color: #fff;
        font-size: 19px;
        font-weight: bold;
        margin-bottom: 15px;
    }
}

/* products css end================================================================= */


/* why choose us css start */
.why-choose-us {
    background-color: #29176E;
}

.one-card-choose {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.choose-card-content {
    text-align: center;
    color: #fff;
}

.choose-card-content img {
    background-color: #fff;
    padding: 20px 20px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px dotted #DA251C;
    margin-bottom: 15px;
}

.choose-card-content:hover img {
    transform: scale(0.9);
    transition: 0.4s ease-in-out;
}

.choose-card-content h3 {
    font-size: 18px;
    font-weight: 600;

}

.choose-card-content p {
    font-size: 16px;
    color: #c9c9c9;
}

@media(max-width: 767px) {
    .choose-card-content p {
        text-align: center;
    }

    .big-choose-us-post img {
        margin-bottom: 35px;
    }

    .one-card-choose {
        margin-bottom: 20px;
    }
}

/* why choose us css end */


/* blog card css start */
.our-blogs {
    overflow: hidden;
}

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* margin-bottom: 20px; */
    transition: .5s ease-in-out;
}

.blog-card:hover {
    transition: .5s ease-in-out;
    transform: scale(1.05);
}

.blog-card img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: bold;
    /* margin-bottom: 10px; */
    color: white;
    text-align: start;
}

.blog-content p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-content p {
    margin: 0;
    font-size: 14px;
    text-align: start;
}

.blog-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 11px;
}

.blog-content a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.blog-content a:hover {
    text-decoration: underline;
}

.blog-icon {
    font-size: 18px;
    margin-right: 5px;
    color: #ffcc00;
}


@media(max-width: 992px) {
    .blog-card {
        margin-bottom: 20px;
    }
}

/* blog card css end */


/* blog-details css start */
.blog-detail-content {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 5px;
}

.blog-detail-date {
    margin-bottom: 15px;
}

.blog-detail-date span {
    color: #555555;
    font-size: 14px;
}

.blog-detail-heading h1 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-detail-post {
    margin-bottom: 15px;
}

.blog-detail-para h2 {
    font-size: 21px;
    font-weight: 600;
}

.blog-detail-para p {
    font-size: 16px;
    text-align: justify;
}



.main-recent-blog {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
}

.recent-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.recent-card {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.recent-card:last-child {
    border-bottom: none;
}

.recent-card-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.recent-card-detail {
    flex: 1;
}

.recent-date {
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.recent-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 0;
}


@media(max-width: 767px) {
    .blog-detail-heading h1 {
        font-size: 19px;
    }

    .blog-detail-para h2 {
        font-size: 19px;
    }

    .blog-detail-para p {
        font-size: 14px;
    }

}

/* blog-details css end */



/* contact us css start */
.contact-section {
    background: linear-gradient(#0000007a), url(../image/contact/contact-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* color: white; */
    padding: 80px 0;
    position: relative;
}

.contact-overlay {
    background-color: rgba(0, 0, 0, 0.65);
    padding: 50px;
    border-radius: 10px;
}

.form-control,
.form-control:focus {
    background-color: #1f1f1f;
    border: none;
    color: white;
}

.form-control::placeholder {
    color: #fff;
}

.contact-overlay form input::placeholder {
    color: #fff;
}

.form-label {
    color: #ccc;
}

.btn-red {
    background-color: var(--blue);
    color: white;
    border: none;
}

.btn-red:hover {
    background-color: var(--blue);
    color: #fff;

}




/* captcha start */
.captchasep1 {
    display: flex;
}

.captchasep1 input {
    width: 100% !important;
    margin-top: 0 !important;
    height: 63px;
}

.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: 24px;
    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;
    }
}



/* 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;
    }
}

/* contact us css end */




/* faq-section style start */
.faq {
    padding: 50px 0px;
}

.faq-content {
    padding: 20px 100px;
}


.accordion-button::after {
    content: "";
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    left: 0;
    background-image: url(../image/contact/plus-faq-sunrise.png) !important;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

.accordion-button {
    outline: none !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    color: #000 !important;
}

.accordion-item p {
    margin-bottom: 0px;
    margin-left: 10px !important;
    font-size: 18px;
    font-weight: 500;
    color: var(--blue);
}

@media(max-width: 767px) {
    .faq-content {
        padding: 0px;
    }
}



/* faq-section style end */




/* enquiry page css start  */

/* enquiry section start here */

.enquiry-sec-star .seriv-name {
    color: var(--blue);
    font-size: 12px;
}

.inquiry-content h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.key-feat-enq-fan h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 13px;
}

.overlay-enq-content h3 {
    font-size: 17px;
}

.enquiry-sec-start .left_panel {
    top: 100px !important;
    margin-bottom: 30px;
    position: sticky;
    height: fit-content;


}

@media(max-width:767px) {
    .enquiry-sec-start .left_panel {

        margin-bottom: 30px;
        position: static;
        /* height: fit-content; */


    }

    .key-feat-enq-fan h2 {
        font-size: 23px;
        font-weight: 600;
        margin-bottom: 13px;
    }

    .enq-form {
        margin-bottom: 20px;
    }

}

.enquiry-sec-start .details {
    border: solid 1px #b1adad;
    background: #eeeeee47;
    padding: 25px;
}


.enquiry-sec-start .product-title {
    text-transform: UPPERCASE;
    font-weight: bold;
}

.enquiry-sec-start .product-title {
    margin-top: 0;
    margin-bottom: 25px;
}

.enquiry-sec-start h4 {
    position: relative;
    margin-bottom: 30px;
}

.enquiry-sec-start h4:before {
    background: #e30613;
    bottom: -12px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 25px;
}

.enquiry-sec-start .product-description {
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 5px;
    text-align: justify;
}

.enquiry-sec-start .table {
    border: solid 1px #eee;
    background: #fff !important;
}

.view-btn {
    background-color: #23466d;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.captcha-sec button {
    border: none;
    outline: none;
    background: #e2dfdf;
    font-size: 20px;
    margin: 0 5px;
    background: #23466d !important;
    color: var(--light) !important;
    padding: 5px 10px;
}

.captcha-sec p {
    color: var(--dark) !important;
    margin: 0 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    width: 50%;
    text-align: center !important;
    letter-spacing: 10px;
    font-family: "League Spartan", serif;
}



.feature-heading {
    display: inline-block;
    background-color: var(--blue);
    /* background-color: #0072b983; */
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 500;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
}

.feature-heading h1 {
    font-size: 24px;
}

.feature-heading .lines {
    position: absolute;
    top: -8px;
    right: -12px;
    width: 30px;
    height: 30px;
}

.feature-heading .lines::before,
.feature-heading .lines::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 5px;
    /* background-color: #7a83f3; */
    background-color: var(--blue);
    border-radius: 10px;
    transform-origin: left center;
}

.feature-heading .lines::before {
    transform: rotate(deg);
    top: 4px;
    left: 0px;
}

.feature-heading .lines::after {
    transform: rotate(75deg);
    top: 0px;
    left: 6px;
}

.feature-heading .lines::after {
    width: 19px;
    top: -5px;
    left: 10px;
    transform: rotate(80deg);
}

.experience-col {
    background-color: var(--blue);
}


/* enquiry section */
.enquiry-sec-start .main-img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.enquiry-sec-start .thumbnail-images img {
    object-fit: cover;
    margin-right: 5px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.enquiry-sec-start .thumbnail-images img:hover {
    border-color: #0d6efd;
}

.enquiry-sec-start .stars {
    color: #ffc107;
}

.enquiry-sec-start .service-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* enquiry section end here */




/* footer css start */
.sunrise-footer {
    background: url(../image/footer/footerbg-sunrise.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
}



.name-footer-heading {
    color: #fff;
}

.name-footer-heading h3 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a img {
    width: 170px;
}

.footer-icon {
    display: flex;
    gap: 20px;
}

.footer-icon a {
    background-color: var(--blue);
    padding: 5px 15px;
    color: #fff;
    border-radius: 5px;
    font-size: 20px;

}

.reach-us p a {
    color: #fff;
    font-size: 14px;
}

.reach-us p a i {
    color: #fff;
    font-size: 16px;
    background-color: var(--blue);
    padding: 4px 6px;
    border-radius: 50%;
    padding-right: 20px;
}

.reach-us p a:hover {
    color: #DA251C;
    transition: 0.3s ease-in-out;
}






@media(max-width: 767px) {
    .part {
        margin-bottom: 40px;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .footer-logo a img {
        width: 140px;
    }

    .name-footer-heading h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .part-1 {
        margin-bottom: 0px;
    }
}



/* copyright */
.copyright-section {
    background-color: var(--blue);
}

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

.right-side p,
.left-side p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0px;
}

.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;
    }
}

/* footet css 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 */