﻿
* {
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
	 margin: 0;
    font-family: "Philosopher", sans-serif;
}

/* Topbar */
.topbar {
    background: #000;
    padding: 8px 0;
    font-size: 14px;
}

.top-contact span,
.top-social a {
    padding: 0 12px;
    border-right: 1px solid #333;
}

    .top-contact span:last-child,
    .top-social a:last-child {
        border-right: none;
    }

.top-social a {
    color: #fff;
    text-decoration: none;
}

/* Header main */
.header-main {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.logo {
    margin: 0 10px;
}

/* NAV MENU STYLING */
.navbar-nav .nav-link {
    font-weight: 600;
    padding: 10px 18px;
    position: relative;
    overflow: hidden;
}

/* Active menu item */
.navbar-nav .active .nav-link {
    color: #ff0000 !important;
}

/* Hover Animation Left to Right */
.navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    left: -100%;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: #ff0000;
    transition: all .3s ease;
}

.navbar-nav .nav-link:hover:before {
    left: 0;
}

/* MOBILE */
@media(max-width:767px) {
    .top-contact, .top-social {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

        .top-contact span {
            width: 100%;
            border-right: none !important;
            padding: 4px 0;
        }

    .top-social {
        margin-top: 5px;
        border-top: 1px solid #333;
        padding-top: 6px;
    }

    .navbar-nav {
        text-align: center;
    }

    .logo-area {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
}
/* ================= TOP BAR ================= */
.top-bar {
    background: #fff7ec;
    padding: 10px 0;
    font-size: 14px;
}
/* Desktop: single line */
@media(min-width:768px) {
    .top-bar .top-contact,
    .top-bar .social-icons {
        display: flex !important;
        align-items: center;
    }

        .top-bar .top-contact span {
            margin-right: 15px;
            border-right: 1px solid #000;
        }

            .top-bar .top-contact span:last-child {
                border-right: none;
            }

    .social-icons {
        margin: 0;
    }
}

/* Mobile: stacked */
@media(max-width:767px) {
    .top-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

        .top-contact span {
            display: block;
            margin: 2px 0;
            border-right: none;
            text-align: center;
        }

    .social-icons {
        margin-top: 6px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}

.top-contact i {
    margin-right: 6px;
    color: #fe8f02;
}

.social-icons a {
    margin: 0 8px;
    font-size: 16px;
    padding-right: 7px;
    border-right: 1px solid #000;
    color: #444;
    transition: .3s;
}

    .social-icons a:last-child {
        border-right: 0px solid #000;
    }

    .social-icons a:hover {
        color: #007bff;
        transform: translateY(-3px);
    }

/* ================= LOGO MID BAR ================= */
.logo-section {
    background: #fff;
}

    .logo-section img {
        margin: 0 10px;
    }

/* ================= DESKTOP STICKY WRAPPER ================= */
.desktop-sticky {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* ================= NAV MENU ================= */
.navbar-nav .nav-item {
    margin-right: 18px;
}

    .navbar-nav .nav-item:last-child {
        margin-right: 0;
    }

.navbar-nav .nav-link {
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all .3s ease;
}

@media(min-width:992px) {
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: #fe8f02;
        color: #fff !important;
    }

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove bootstrap caret */
.navbar .dropdown-toggle::after {
    display: none !important;
}

/* FontAwesome caret rotation */
.dropdown-toggle i.fa-caret-down {
    transition: transform .3s ease;
}

.dropdown:hover .dropdown-toggle i.fa-caret-down {
    transform: rotate(180deg);
}

/* Dropdown animation */
.dropdown-menu {
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s ease;
}

    .dropdown-menu.show {
        opacity: 1;
        transform: translateY(0px);
    }

/* ================= MOBILE NAVBAR ================= */
@media(max-width:767px) {
    /* hide mid logo in mobile */
    .logo-section {
        display: none;
    }

    .navbar.mobile-sticky {
        position: sticky;
        top: 0;
        z-index: 9999;
        background: #fff;
        box-shadow: 0 2px 6px rgba(0,0,0,.1);
    }
    /* mobile nav spacing */
    .navbar-nav .nav-item {
        margin: 6px 0;
    }

    .navbar-brand img {
        height: 55px;
    }
}

.swiper {
    width: 100%;
    height: auto; /* you can change height or make responsive */
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    background: #ddd;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: #1e88e5;
}

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
@media(max-width:991px)
	{
  .swiper-slide img {
        width: 100%;
        height: 178px;
        object-fit: cover;
		}
    .swiper-button-prev,
    .swiper-button-next,
    .swiper-pagination {
        display: none !important;
    }
		.about-content h1 {
    color: #fe8f02;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}
}

.bg-astro {
    background: #fff7ec;
}

.swiper-button-next,
.swiper-button-prev {
    background: #fe8f02;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

    .swiper-button-next:after,
    .swiper-button-prev:after {
        color: #fff;
        font-size: 20px;
    }

.about-astro-bg {
    background: #fff7ec;
}

.about-content {
    position: relative;
    z-index: 1;
}

    .about-content h1 {
        color: #fe8f02;
        font-size: 36px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .about-content p {
        color: #575757;
        line-height: 24px;
		text-align:justify;
    }

.rotating-image {
    display: inline-block; /* Keeps size based on image */
    border-radius: 50%; /* Makes container circular */
    overflow: hidden; /* Hide any overflow */
}

    .rotating-image img {
        display: block;
        max-width: 100%; /* Scales image to container */
        height: auto; /* Maintain aspect ratio */
        border-radius: 50%; /* Circular image */
        animation: spin 5s linear infinite;
    }

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

.usp-wrap {
    background-color: #fff;
    border: 1px solid rgba(254,143, 2, 0.4);
    border-radius: 20px;
    padding: 20px 20px;
    text-align: center;
    transition: all 0.3s ease-in-out 0s;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.usp-icon {
    background-color: rgba(201, 59, 3, 0.05);
    border: 1px solid rgba(254, 143, 2, 0.4);
    border-radius: 100%;
    height: 70px;
    width: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    padding: 15px;
}

.usp-title {
    margin-bottom: 0;
}

.usp-desc {
    color: #545454;
    margin: 15px 0 0;
    line-height: 24px;
}

.service-wrap {
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid rgba(254, 143, 2, 0.15);
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 100%;
}

.service-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

    .service-image > a {
        display: block;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.service-summary {
    padding: 24px;
    width: 100%;
}

.service-title {
    font-size: 18px;
    margin: 0;
}

.service-content {
    color: #575757;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 15px;
}

    .service-content p {
        margin: 0;
    }

.border-line {
    border-top: 1px solid rgba(254, 143, 2, 0.4);
    margin: 15px 0 10px;
    height: 10px;
    position: relative;
}

    .border-line::before {
        background-color: #fff;
        border: 1px solid rgba(254, 143, 2, 0.4);
        border-radius: 100%;
        content: "";
        display: block;
        position: absolute;
        top: -5px;
        left: 0;
        width: 10px;
        height: 10px;
    }

    .border-line::after {
        background-color: #fff;
        border: 1px solid rgba(254, 143, 2, 0.4);
        border-radius: 100%;
        content: "";
        display: block;
        position: absolute;
        top: -5px;
        right: 0;
        width: 10px;
        height: 10px;
    }

.btn-read-more {
    background-color: rgb(254, 143, 2);
    border-color: rgb(254, 143, 2);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    padding: 9px 20px;
    line-height: 20px;
}

    .btn-read-more i {
        margin-left: 7px;
    }

.section-subtitle {
    color: rgb(254, 143, 2);
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    align-items: center;
}

.section-title {
    color: rgb(254,143,2);
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    position: relative;
}

.section-header {
    margin: 0 0 40px;
    position: relative;
}

.service-item {
    display: flex;
    margin-bottom: 24px;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: rgb(254,143,2);
}

.why-item {
    display: flex;
    margin-bottom: 24px;
}

.why-wrap {
    background-color: transparent;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.why-icon {
    background-color: rgba(252,161,54,0.4);
    border-radius: 100%;
    min-width: 80px;
    margin-right: 20px;
    width: 80px;
    height: 80px;
    padding: 15px;
}

.why-title {
    margin-bottom: 0;
}

.why-content {
    color: #6f6f6f;
    margin-top: 10px;
}

.why-image {
    border-radius: 20px;
    border: 1px solid rgba(201, 59, 3, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 10px;
}

    .why-image::before {
        content: "";
        padding-bottom: 100%;
        display: block;
    }

.why-image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(165,105,36,0.9);
    padding: 20px;
    color: #fff;
    font-size: 16px;
    width: 80%;
    border-radius: 0 5px 0 0;
}

.section-description {
    margin: 10px auto 0;
}

.section-subtitle2 {
    color: #a56824;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    align-items: center;
}

.section-title2 {
    color: #a56824;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    position: relative;
}

.enquiry-summery-column {
    position: relative;
}

.enquiry-form {
    background-color: #fff;
    border: 1px solid rgba(201, 59, 3, 0.3);
    border-radius: 20px;
    padding: 20px;
}

    .enquiry-form h4 {
        margin-bottom: 15px;
    }

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.zodiac-item {
    display: flex;
    margin-bottom: 24px;
}

.zodiac-wrap {
    position: relative;
    text-align: center;
    width: 100%;
}

.zodiac-icon {
    background-color: rgba(201, 59, 3, 0.05);
    border: 1px solid rgba(201, 59, 3, 0.4);
    border-radius: 100%;
    margin: 0 auto 15px;
    min-width: 80px;
    width: 100px;
    height: 100px;
    padding: 15px;
}

.zodiac-title {
    margin-bottom: 0;
}

.zodiac-content {
    color: #545454;
    margin-top: 5px;
}

.zodiac-item:hover .zodiac-icon {
    background-color: rgba(201, 59, 3, 0.15);
}

.testimonial-item {
    padding: 0 12px;
    position: relative;
    -webkit-transition: all 0.5 ease-in-out;
    transition: all 0.5 ease-in-out;
}

.testimonial-wrap {
    background-color: #fff;
    border: 1px solid rgba(201, 59, 3, 0.4);
    border-radius: 20px;
    padding: 30px 30px;
    position: relative;
    margin-bottom: 35px;
}

.testimonial-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-image {
    background-color: rgba(201, 59, 3, 0.4);
    border-radius: 100%;
    margin: 0 20px 0 0;
    height: 80px;
    width: 80px;
    min-width: 80px;
    padding: 2px;
}

    .testimonial-image img {
        border-radius: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonial-head {
    width: 100%;
}

.testimonial-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.testimonial-meta {
    color: #808080;
    display: inline-block;
    margin: 5px 0 0;
}

.border-line {
    border-top: 1px solid rgba(201, 59, 3, 0.4);
    margin: 15px 0 10px;
    height: 10px;
    position: relative;
}

    .border-line::before {
        background-color: #fff;
        border: 1px solid rgba(201, 59, 3, 0.4);
        border-radius: 100%;
        content: "";
        display: block;
        position: absolute;
        top: -5px;
        left: 0;
        width: 10px;
        height: 10px;
    }

    .border-line::after {
        background-color: #fff;
        border: 1px solid rgba(201, 59, 3, 0.4);
        border-radius: 100%;
        content: "";
        display: block;
        position: absolute;
        top: -5px;
        right: 0;
        width: 10px;
        height: 10px;
    }

.testimonial-quote {
    font-size: 40px;
    margin-bottom: 15px;
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.05;
}

.testimonial-star {
    color: #FFB900;
}

.testimonial-content {
    padding: 15px 0 0;
}

    .testimonial-content p {
        font-size: 14px;
        line-height: 24px;
        margin: 0;
    }

.slick-dots li button {
    background-color: #fff;
    border: 1px solid #808080;
    border-radius: 100%;
    color: transparent;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 10px;
    padding: 0;
    position: relative;
    width: 10px;
}

.slick-dots li.slick-active button {
    background-color: rgb(254, 143, 2);
    border: 1px solid rgb(254, 143, 2);
    width: 20px;
    border-radius: 5px;
}

.slick-dots li button:before {
    content: "" !important; /* Removes Slick default grey dot */
}

.footer-section {
    padding-top: 0;
}

.footer {
    background-color: #2e1518;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.footer-top {
    padding: 50px 0 0;
    position: relative;
    z-index: 10;
}

.footer-widget-outer {
    padding: 0;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-widget-title {
    color: #ffc367;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.footer p, .footer a {
    color: #fff;
    line-height: 24px;
}

.footer-contact > p {
    position: relative;
}

.footer-contact i {
    display: table-cell;
    padding-right: 15px;
}

.footer-contact span {
    display: table-cell;
}

.footer-column ul {
    padding: 0;
    margin: 0;
}

.footer-column li {
    display: flex;
    position: relative;
}

    .footer-column li a {
        display: block;
        line-height: 24px;
        padding: 3px 0;
        text-decoration: none;
    }

.footer-bottom {
    background-color: #fff7ec;
    position: relative;
}

.footer-bottom-outer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.copyright p {
    margin: 18px 0;
    color: #000;
}

.footer-social-icon {
    margin: 12px 0;
    text-align: right;
    padding: 0;
}

    .footer-social-icon li {
        display: inline-block;
        margin: 0 5px;
        width: auto;
    }

        .footer-social-icon li a {
            text-decoration: none;
        }

        .footer-social-icon li.facebook a {
            background-color: #3b5998;
        }

        .footer-social-icon li a span {
            display: none;
        }

        .footer-social-icon li.instagram a {
            background-color: #8a3ab9;
        }

        .footer-social-icon li a {
            background-color: #676767;
            box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
            border-radius: 100%;
            color: #fff;
            font-size: 16px;
            height: 35px;
            width: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-social-icon li.twitter a {
            background-color: #000000;
        }

        .footer-social-icon li.telegram a {
            background-color: #00bdec;
        }

.page-banner-section {
    position: relative;
}

.page-banner-image {
    background-attachment: scroll;
    background-image: url(assets/images/page-banner.jpg);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-banner {
    background-color: transparent;
    border-color: #ededed;
    border-style: solid;
    border-width: 1px 0;
    position: relative;
}

.page-banner-image::before {
    background-color: rgba(0, 0, 0, 0.60);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.page-banner-image .page-banner-wrap {
    color: #fff;
    padding: 15% 0;
    text-align: center;
}

.page-banner-wrap {
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.page-banner-image .page-banner-title {
    color: #fff;
    margin: 0 0 15px;
    font-size: 36px;
}

.page-banner-image .breadcrumbs {
    margin: 5px 0;
    font-size: 14px;
    line-height: 20px;
}

.trail-browse {
    display: none;
}

.breadcrumb-items {
    padding: 0;
}

.page-banner-image .breadcrumb-item {
    color: #ccc;
}

.breadcrumb-item {
    display: inline-block;
    list-style-type: none;
}

.page-banner-image .breadcrumb-item + .breadcrumb-item::before, .page-banner-image .breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    font-size: 14px;
    opacity: 0.8;
    padding-right: 7px;
}

.single-service-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 24px;
}

.page-section-title {
    color: #101010;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
}

    .page-section-title::before {
        content: '';
        background-color: #C93B03;
        bottom: -1px;
        height: 2px;
        left: 0px;
        position: absolute;
        width: 45px;
    }

.single-service-summery {
    margin-bottom: 25px;
}

.single-service-overview {
    position: relative;
}

p {
    margin-bottom: 10px;
}

ul.bullet {
    margin: 0;
    padding-left: 15px;
}

/* Sidebar Widget */
.widget {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 25px;
}

/* Title */
.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #101010;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e1e1e1;
    position: relative;
}

    .widget-title::before {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 45px;
        height: 2px;
        background: #C93B03;
    }

/* Each list item */
.cpw-item {
    border-bottom: 1px solid #e1e1e1;
    padding: 12px 0;
}

    .cpw-item:last-child {
        border-bottom: none;
    }

/* Flex alignment */
.cpw-post-header {
    display: flex;
    align-items: center;
}

/* Service image */
.cpw-post-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 12px;
}

/* Titles */
.cpw-post-title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

    .cpw-post-title a {
        color: #1e1e1e;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .cpw-post-title a:hover {
            color: #C93B03;
        }

/* Hover effect */
.cpw-item:hover {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .cpw-post-image img {
        width: 60px;
        height: 60px;
    }

    .cpw-post-title {
        font-size: 14px;
    }
}

.page-title {
    position: relative;
    color: #101010;
    margin-bottom: 30px;
}

.text-center .page-title::after {
    margin: 10px auto;
}

.page-title::after {
    content: "";
    border-bottom: 2px solid #b7b7b7;
    display: block;
    width: 65px;
    margin: 10px 0;
}

.contact-page-content {
    margin-bottom: 20px;
}

.contact-info {
    position: relative;
}

    .contact-info > ul {
        display: flex;
        padding-left: 0;
        flex-wrap: wrap;
        justify-content: center;
        list-style: none;
    }

    .contact-info li {
        display: flex;
        width: 100%;
    }

.contact-wrap {
    width: 100%;
    display: flex;
}

.contact-icon {
    background-color: rgba(201, 59, 3, 0.2);
    border-radius: 100%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-width: 50px;
}

.contact-text {
    text-align: left;
}

.contact-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
}

.contact-text p {
    color: #575757;
    margin: 0;
}

.contact-info li + li {
    border-top: 1px solid #e0e0e0;
    padding-top: 16px;
    margin-top: 16px;
}

.contact-form-title, .contact-info-title {
    border-bottom: 1px solid #e0e0e0;
    color: #262626;
    margin: 0 0 25px;
    padding: 0 0 10px;
    position: relative;
}

    .contact-form-title::before, .contact-info-title::before {
        content: '';
        background-color: #C93B03;
        bottom: -1px;
        height: 2px;
        left: 0px;
        position: absolute;
        width: 45px;
    }
