body {
    margin: 0;
    font-family: Arial, sans-serif;
}


/* Header bar */

.wgl-header-row {
    background: #ffffff;
    color: rgb(211 139 92);
    border-bottom: 1px solid rgba(127, 103, 140, 0.1);
}

.fullwidth-wrapper {
    width: 100%;
}

.text-warning {
    color: #d38b5c !important;
}

.services .text-warning {
    color: #d38b5c !important;
}

.btn-warning {
    background-color: #b8744c !important;
    color: #fff !important;
    border: #b8744c !important;
}

.header-wrapper {
    max-width: 1200px;
    margin: auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}


/* LEFT */

.header-left a {
    color: rgb(211 139 92);
    text-decoration: none;
    font-size: 16px;
    margin-right: 10px;
}

.header-left i {
    margin-right: 5px;
}


/* Divider */

.divider {
    display: inline-block;
    height: 20px;
    width: 1px;
    background: rgba(127, 103, 140, 0.1);
    margin: 0 20px;
}


/* CENTER */

.header-center span {
    font-size: 16px;
    font-style: italic;
}


/* RIGHT */

.header-right a {
    color: rgb(211 139 92);
    font-size: 14px;
    padding: 12px;
    transition: 0.3s;
}

.header-right a:hover {
    color: rgba(127, 103, 140, 1);
}


/* Responsive */

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        height: auto;
        gap: 8px;
        padding: 10px;
        text-align: center;
    }
    .divider {
        display: none;
    }
    .header-container {
        margin: auto;
        height: auto !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
    }
}

.header-container {
    max-width: 1200px;
    margin: auto;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}


/* Header */

.wgl-header-middle {
    background: rgb(60 60 60 / 46%);
    position: sticky;
    top: 0;
    z-index: 999;
}


/* Logo */

.header-left img {
    height: 104px;
}


/* Menu */

.header-menu .menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.menu li.active a {
    color: #b8744c;
}


/* Dropdown */

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000;
    min-width: 180px;
    padding: 10px 0;
}

.sub-menu li {
    padding: 3px 10px;
}

.sub-menu a {
    font-size: 13px;
}

.has-sub:hover>.sub-menu {
    display: block;
}

.sub-menu .has-sub:hover>.sub-menu {
    left: 100%;
    top: 0;
}


/* Right icons */

.header-right {
    display: flex;
    gap: 25px;
    color: #fff;
}

.cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #d8b26e;
    color: #000;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
}


/* Search */

.search-box {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.search-box input {
    width: 60%;
    padding: 15px;
    font-size: 18px;
}


/* Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: #fff;
}


/* Responsive */

@media (max-width: 991px) {
    .header-menu {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        background: #111;
        width: 100%;
    }
    .header-menu.show {
        display: block;
    }
    .menu {
        flex-direction: column;
        padding: 20px;
    }
    .hamburger {
        display: flex;
    }
    .wgl-header-row {
        display: none !important;
    }
}

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: "Playfair Display", serif;
    margin-top: -100px;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: 1s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 20px;
}

.tag {
    letter-spacing: 4px;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
}

.content h1 {
    font-size: 90px;
    margin: 20px 0;
}

.content p {
    font-size: 18px;
    line-height: 1.8;
    font-family: Nunito, sans-serif;
}

.buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    margin: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.btn.primary {
    background: #a35e30;
    color: #fff;
}

.color-btn {
    color: #a35e30;
}

.btn.secondary {
    background: rgb(213 139 92 / 38%);
    color: #fff;
}

.btn:hover {
    transform: translateY(-3px);
}


/* Arrows */

.arrow {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    user-select: none;
}

.arrow.left {
    left: 40px;
}

.arrow.right {
    right: 40px;
}


/* Dots */

.dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    margin: 0 6px;
    cursor: pointer;
}

.dots span.active {
    background: #fff;
}


/* Responsive */

@media (max-width: 768px) {
    .content h1 {
        font-size: 42px;
    }
    .content p {
        font-size: 15px;
    }
    .hero-slider {
        margin-top: -10px;
    }
}

.footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-logo {
    width: 80px;
    padding: 0;
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social span {
    margin-right: 10px;
    font-size: 14px;
}

.footer-social a {
    color: #fff;
    margin-right: 12px;
    font-size: 15px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
}


/* LINKS */

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}


/* CONTACT */

.footer-contact a {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-contact i {
    margin-right: 10px;
}


/* GALLERY */

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.footer-gallery img {
    width: 100%;
    cursor: pointer;
    transition: .3s;
}

.footer-gallery img:hover {
    transform: scale(1.05);
}


/* COPYRIGHT */

.rr-footer-bottom {
    background: #1b7261;
    text-align: center;
    padding: 18px;
    font-size: 14px;
    margin-top: 90px;
}


/* POPUP */

.img-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.img-popup img {
    max-width: 80%;
    max-height: 80%;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.services {
    background-color: #edf5f7;
}

.service-card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-no {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 46px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);
}

.service-icon {
    font-size: 42px;
    color: #a35e30;
}

.service-card h5::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #a35e30;
    margin: 12px auto;
}

.rr-footer-main {
    background: #a35e30;
    padding-top: 80px;
    font-family: Poppins, sans-serif;
    color: #fff;
}

.rr-footer {
    margin-top: 0;
}

.rr-footer {
    font-family: Poppins, sans-serif;
    color: #fff;
}


/* ABOUT SECTION */

.rr-about-section {
    background: #fff;
    font-family: 'Poppins', sans-serif;
}


/* IMAGE */

.about-img img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
}


/* TEXT */

.about-subtitle {
    color: #a35e30;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    font-family: 'Georgia', serif;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}


/* BUTTON */

.rr-btn {
    background: #a35e30;
    color: #fff;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 0;
    transition: 0.3s;
}

.rr-btn:hover {
    background: #1b7261;
    color: #fff;
    transform: translateY(-3px);
}

.btn:hover {
    background: #1b7261;
    color: #fff;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .about-title {
        font-size: 30px;
    }
}


/* MAIN SECTION */

.rr-video-main {
    position: relative;
    padding: 180px 0;
    background-image: url("../img/rr-video-main.jpg");
    background-size: cover;
    background-position: center;
}


/* OVERLAY */

.rr-video-main .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}


/* VIDEO WRAP */

.rr-video-wrap {
    position: relative;
    z-index: 2;
}


/* PLAY BUTTON */

.rr-video-play {
    width: 90px;
    height: 90px;
    border: 2px solid #1B7262;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rr-video-play:hover {
    background: #1B7262;
}

.rr-video-play:hover svg path {
    stroke: #fff;
}


/* MODAL */

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.video-box {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
}

.video-box iframe {
    width: 100%;
    height: 450px;
}


/* CLOSE BUTTON */

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .rr-video-main {
        padding: 120px 0;
    }
    .rr-video-play {
        width: 70px;
        height: 70px;
    }
    .video-box iframe {
        height: 260px;
    }
}

.gallery-section .g-4 {
    padding-top: 50px;
}

.gallery-heading h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-heading p {
    max-width: 600px;
    margin: auto;
    color: #666;
}

.gallery-box {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-box:hover img {
    transform: scale(1.08);
}

.wedding-testimonial {
    padding: 90px 0;
    background: #f9f7f3;
    font-family: 'Georgia', serif;
}

.testimonial-title {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-title span {
    color: #b9985a;
    letter-spacing: 2px;
    font-size: 14px;
}

.testimonial-title h2 {
    font-size: 40px;
    font-weight: 500;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-box {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.testimonial-box h4 {
    margin-top: 20px;
    font-size: 18px;
}

.testimonial-box span {
    color: #888;
    font-size: 14px;
}

.stars {
    margin-top: 10px;
    color: #c59d5f;
    font-size: 18px;
}

.testimonial-box.highlight {
    background: #fffaf0;
    border: 1px solid #e6d5b8;
}


/* Mobile */

@media(max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-section {
    padding: 100px 0;
    background: #f9f7f3;
    font-family: 'Georgia', serif;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.testimonial-card h4 {
    margin-top: 20px;
    font-size: 18px;
}

.testimonial-card span {
    font-size: 14px;
    color: #888;
}

.stars {
    margin-top: 10px;
    color: #c59d5f;
    font-size: 18px;
}


/* Swiper */

.swiper {
    padding-bottom: 60px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #b9985a !important;
}

.swiper-pagination-bullet-active {
    background: #b9985a;
}


/* =========================
   GLOBAL RESPONSIVE RESET
========================= */


/* =========================
   HEADER RESPONSIVE
========================= */

@media (max-width: 991px) {
    .header-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        padding: 80px 20px;
        transition: 0.4s ease;
        z-index: 999;
    }
    .header-menu.active {
        right: 0;
    }
    .menu {
        flex-direction: column;
        gap: 15px;
    }
    .menu li a {
        display: block;
        padding: 1px 0;
        font-weight: 500;
    }
    .menu a {
        color: #000000;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 1px;
        font-size: 20px;
    }
    .header-right {
        display: none;
    }
    .hero-slider {
        height: 50vh !important;
    }
}


/* =========================
   HERO SLIDER RESPONSIVE
========================= */

@media (max-width: 768px) {
    .hero-slider {
        height: 90vh;
    }
    .hero-slider .content {
        padding: 0 20px;
        text-align: center;
    }
    .hero-slider h1 {
        font-size: 28px;
    }
    .hero-slider p {
        font-size: 14px;
    }
    .hero-slider .buttons {
        flex-direction: column;
        gap: 10px;
    }
}


/* =========================
   ABOUT SECTION
========================= */

@media (max-width: 768px) {
    .rr-about-section {
        text-align: center;
    }
}


/* =========================
   SERVICES
========================= */

@media (max-width: 768px) {
    .service-card {
        padding: 30px 20px;
    }
}


/* =========================
   BOOKING FORM
========================= */

@media (max-width: 768px) {
    .booking-form {
        margin-top: 30px;
    }
}


/* =========================
   GALLERY
========================= */

.gallery-box img {
    border-radius: 12px;
}


/* =========================
   BLOG
========================= */

@media (max-width: 768px) {
    .blog-card img {
        height: 220px;
        object-fit: cover;
    }
}


/* =========================
   TESTIMONIAL
========================= */

.testimonial-section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }
    .testimonial-card p {
        font-size: 15px;
    }
}


/* =========================
   FOOTER
========================= */

@media (max-width: 768px) {
    .footer-gallery {
        justify-content: center;
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
    .gallery-section .gallery-box {
        height: 260px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 575px) {
    .gallery-section .gallery-box {
        height: 220px;
    }
    .gallery-heading h2 {
        font-size: 24px;
    }
    .gallery-heading p {
        font-size: 14px;
    }
}

.page-title {
    position: relative;
    background: url("../img/bagpiperband.jpg") center/cover no-repeat;
    padding: 200px 0;
    margin-top: -100px;
}

.page-title-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.page-title-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.page-title-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.breadcrumb {
    display: inline-flex;
    gap: 8px;
    font-size: 14px;
    justify-content: center;
}

.breadcrumb a {
    color: #a35e30;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #fff;
}

.breadcrumb .current {
    opacity: 0.8;
}


/* =====================
   RESPONSIVE
===================== */

@media (max-width: 768px) {
    .page-title {
        padding: 130px 0;
    }
    .page-title-content h1 {
        font-size: 28px;
    }
}

.event-box {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.event-box img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.event-box:hover {
    transform: translateY(-8px);
}

.contact-section {
    background: #f9f9f9;
}

.small-title {
    color: #a35e30;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.info-text {
    color: #666;
    margin-bottom: 25px;
}

.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-box i {
    font-size: 22px;
    color: #a35e30;
    margin-top: 5px;
}

.info-box h5 {
    margin: 0;
    font-weight: 600;
}

.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-box h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.form-control {
    border-radius: 10px;
    padding: 12px;
}

.btn-submit {
    background: #a35e30;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
}

.btn-submit:hover {
    background: #1b7261;
}

.hero-contact h1 {
    color: #fff;
}

.hero-contact span {
    color: #fff !important;
}

.contact-box {
    background: linear-gradient(145deg, #a35e30, #a35e30a9);
    color: #f5f5f5;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}


/* Headings */

.contact-box h4 {
    color: #fff;
    font-size: 24px;
}

.contact-box h6 {
    color: #fff;
    letter-spacing: 1px;
}


/* Paragraph */

.contact-box p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}


/* Paragraph */

.contact-box p a {
    color: #fff;
    text-decoration: none;
}


/* Icons */

.contact-box i {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
    min-width: 18px;
}


/* Serve text */

.serve-text {
    color: #fff;
}


/* Social icons */

.contact-social a i {
    color: #000;
    margin: 0;
}

.contact-social a i:hover {
    color: #a35e30;
    margin: 0;
}

.contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    background: #fff;
    color: #fff;
    margin-right: 12px;
    font-size: 18px;
    transition: 0.3s ease;
}

.contact-social a:hover {
    background: #1B7262;
    text-decoration: none;
    color: #683818;
    transform: translateY(-4px);
}

::marker {
    font-size: 0;
}

.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.sub-title {
    color: #c59d5f;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0 20px;
}

.about-content p {
    color: #666;
    margin-bottom: 15px;
}

.about-feature {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.about-feature i {
    font-size: 36px;
    color: #c59d5f;
    margin-top: 5px;
}

.about-feature h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.divider {
    height: 1px;
    background: #eee;
}


/* ======================
   RESPONSIVE
====================== */

@media (max-width: 768px) {
    .main-title {
        font-size: 26px;
    }
}


/** **/

.about-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
}

.about-box i {
    font-size: 34px;
    color: #c89b3c;
    margin-bottom: 15px;
}

.mission-section {
    background: #f9f9f9;
}

.mission-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.mission-box.bg-dark {
    background: #111 !important;
}

.section-tag {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c89b3c;
    margin-bottom: 10px;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    margin-bottom: 12px;
    font-size: 16px;
}

.why-list i {
    color: #a35e30;
    margin-right: 10px;
}

.achievements-section {
    background: linear-gradient(135deg, #a35e30, #a35e30a6);
}

.achievement-box {
    background: rgba(255, 255, 255, 0.06);
    padding: 30px 15px;
    border-radius: 16px;
    height: 100%;
    transition: 0.35s ease;
}

.achievement-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
}

.achievement-box h3 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.achievement-box span {
    display: block;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
}

.section-title h2 {
    font-weight: 700;
}

.section-title p {
    color: #777;
}


/* ===== PAGE BANNER ===== */

.page-banner {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url("img/ghori-banner.jpg") center/cover no-repeat;
    padding: 120px 0;
    color: #fff;
    text-align: center;
}

.page-banner h1 {
    font-size: 44px;
    font-weight: 700;
}

.page-banner p {
    font-size: 18px;
    opacity: .9;
}


/* ===== SERVICE BOX ===== */

.service-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
    transition: .3s;
    height: 100%;
}

.service-box i {
    font-size: 42px;
    color: #c59d3c;
    margin-bottom: 15px;
}

.service-box:hover {
    transform: translateY(-8px);
}


/* ===== WHY LIST ===== */

.why-list li {
    margin-bottom: 10px;
    font-size: 16px;
}


/* ===== CTA ===== */

.cta-ghori {
    background: linear-gradient(135deg, #a35e30, #683818);
}

.cta-ghori h2 {
    color: #fff;
}


/* ===== STATS ===== */

.stats-section {
    background: #a35e30;
}

.stats-section h4 {
    font-size: 30px;
    color: #fff;
    padding: 20px;
    font-weight: 700;
}

.stat-box {
    background: rgba(255, 255, 255, .05);
    padding: 30px 15px;
    border-radius: 12px;
    transition: .3s;
}

.stat-box:hover {
    transform: translateY(-6px);
}

.stat-box h3 {
    color: #fff;
    font-weight: 700;
    font-size: 36px;
}

.stat-box p {
    color: #fff;
    font-size: 14px;
    letter-spacing: .5px;
}


/* ===== WHY DARK SECTION ===== */

.why-dark-box {
    background: #1b7261;
    padding: 30px 25px;
    border-radius: 14px;
    color: #fff;
    height: 100%;
    position: relative;
}

.why-dark-box span {
    font-size: 32px;
    font-weight: 700;
    color: #a35e30;
    display: block;
    margin-bottom: 10px;
}

.why-dark-box p {
    font-size: 14px;
    color: #fff;
}

.wgl-header-middle {
    position: relative;
    transition: all 0.35s ease;
    z-index: 999;
}

.wgl-header-middle.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.wgl-header-middle.is-sticky .menu li a {
    color: #fff;
}

.wgl-header-middle.is-sticky .menu li a:active {
    color: #683818;
}

@media (max-width: 991px) {
    .wgl-header-middle.is-sticky .menu li a {
        color: #000 !important;
        font-size: 20px;
        font-weight: 700;
    }
    .wgl-header-middle {
        padding: 5px;
    }
    .header-left img {
        height: 60px;
    }
}

.blog-meta span {
    margin-right: 15px;
    font-size: 14px;
    color: #777;
}

.blog-list li {
    margin-bottom: 10px;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #a35e30;
    padding: 20px;
    font-style: italic;
}

.sidebar-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.sidebar-box h4 {
    margin-bottom: 15px;
    font-weight: bold;
}

.blog-royal1 span {
    font-size: 16px;
    font-weight: 700;
}

.blog-section .g-4 {
    margin-top: 40px;
}

.blog-heading h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-heading p {
    max-width: 600px;
    margin: auto;
    color: #666;
}


/* Blog Card */

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 14px;
    color: #999;
}

.blog-content h3 {
    font-size: 20px;
    margin: 10px 0;
}

.blog-content p {
    color: #666;
    font-size: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #c59d5f;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
}

.blog-meta span {
    font-size: 14px;
    color: #777;
    margin-right: 15px;
}

.blog-content h2,
.blog-content h3 {
    font-weight: 700;
}

.blog-content h4,
.blog-content h5 {
    font-weight: 700;
}

.blog-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.blog-quote {
    background: #f8f4ff;
    border-left: 5px solid #7b2cbf;
    padding: 25px;
    border-radius: 12px;
    margin: 35px 0;
    font-style: italic;
}

.sidebar-box {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.sidebar-box h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.recent-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.tag a {
    display: inline-block;
    padding: 6px 14px;
    background: #f2f2f2;
    border-radius: 20px;
    font-size: 13px;
    margin: 5px;
    text-decoration: none;
    color: #333;
}


/* Footer Location Wrapper */

.foot_location {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    line-height: 1.9;
}


/* Footer Location Links */

.foot_location .ft_loc {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}


/* Hover Effect */

.foot_location .ft_loc:hover {
    color: #000;
    text-decoration: underline;
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .foot_location {
        padding: 15px 10px;
        line-height: 2.2;
    }
    .foot_location .ft_loc {
        font-size: 13px;
    }
}


/** **/


/* =========================
   TABLET RESPONSIVE
========================= */

@media (max-width: 991px) {
    .hero-slider {
        height: 75vh;
        margin-top: -80px;
    }
    .hero-slider h1 {
        font-size: 46px;
    }
    .hero-slider p {
        font-size: 16px;
    }
}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {
    .hero-slider {
        height: 85vh !important;
        margin-top: 0;
    }
    .hero-slider .content {
        padding: 0 20px !important;
    }
    .hero-slider h1 {
        font-size: 30px !important;
    }
    .hero-slider p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    .hero-slider .buttons {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .hero-slider .btn {
        width: 40% !important;
        padding: 12px 0 !important;
    }
    .hero-slider .arrow {
        display: none !important;
    }
    .content {
        width: 100% !important;
    }
    .header-menu .menu {
        gap: 0px;
    }
    .menu a {
        font-size: 14px;
    }
    .wgl-header-middle.is-sticky .menu li a {
        font-weight: 500;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
    .hero-slider {
        height: 70vh !important;
        margin-top: -80px;
    }
    .hero-slider h1 {
        font-size: 24px !important;
    }
    .hero-slider .tag {
        font-size: 12px !important;
        letter-spacing: 2px!important;
    }
}


/** **/

@media (max-width: 768px) {
    .header-left img {
        height: 60px;
    }
    .hamburger {
        display: flex;
    }
    .header-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #fff;
        transition: 0.3s;
        padding-top: 100px;
    }
    .header-menu.active {
        right: 0;
    }
    .header-menu .menu {
        flex-direction: column;
        gap: 10px;
        padding-left: 20px;
    }
    .header-menu .menu li a {
        color: #000;
        font-size: 16px;
    }
    .sub-menu {
        position: static;
        display: none;
        background: #f2f2f2;
    }
    .has-sub.active .sub-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .sub-menu {
        display: none;
    }
    .has-sub.active .sub-menu {
        display: block;
    }
}