hero-section:root{
    --muzaf-orange:#ff8c00;
    --muzaf-orange-hover:#e07b00;

    --muzaf-sky:#1ea7ff;
    --muzaf-sky-light:#e8f6ff;
    --muzaf-sky-dark:#0084e8;

    --muzaf-green:#2bb673;
    --muzaf-pink:#e63964;
}
/* =========================
   Global Reset & Overflow
========================= */

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;

    font-family: 'Poppins', sans-serif;
    color: #333333;
    background-color: #ffffff;

    -webkit-font-smoothing: antialiased;
}


/* =========================
   Box Sizing
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* =========================
   Responsive Media
========================= */

img,
svg,
iframe,
video {
    max-width: 100%;
}

img {
    height: auto;
}

/* =========================================
   1. GLOBAL RESETS & CONTAINERS
========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

.container,
.container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

/* Utility Classes */
.text-orange { color: var(--muzaf-orange); }
.text-green { color: var(--muzaf-green); }
.text-pink { color: var(--muzaf-pink); }

.bg-orange { background-color: var(--muzaf-orange); }
.bg-green { background-color: var(--muzaf-green); }
.bg-pink { background-color: var(--muzaf-pink); }
.bg-light {
    background: linear-gradient(180deg, #fff7ed 0%, #f0f9ff 100%) !important;
}

/* Global Headings */
.section-label {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--muzaf-pink);
    display: block;
}

.section-headline {
    font-weight: 800;
    font-size: 28px;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.section-headline span {
    color: var(--muzaf-sky);
}

/* Standard Action Buttons */
.btn-action-orange {
    background-color: var(--muzaf-orange);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    font-size: 15px;
}

.btn-action-outline {
    border: 2px solid var(--muzaf-green);
    color: var(--muzaf-green);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 6px;
    background-color: transparent;
    font-size: 15px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    right: 25px;
    bottom: 25px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 99999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 15px;
        bottom: 15px;
        font-size: 27px;
    }
}

/* =========================================
   2. TOP BAR & GLOBAL NAVBAR
========================================= */
.top-bar {
    font-size: 13px;
    border-bottom: 1px solid var(--muzaf-border);
    font-weight: 400;
}

.top-bar a {
    color: #333333;
    text-decoration: none;
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-phone i {
    color: #ff7a00;
    font-size: 22px;
}

.top-phone a {
    color: #ff7a00;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: .5px;
    transition: .3s;
}

.top-phone a:hover {
    color: #1f7a3e;
}

.social-icons a {
    width: 28px;
    height: 28px;
    background-color: var(--muzaf-pink);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 6px;
    font-size: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.logo { margin: 0 !important; padding: 0 !important; }
.logo img { height: 70px !important; }

.navbar {
    padding: 15px 0;
    background-color: #ffffff;
}

.nav-link {
    font-weight: 500;
    color: #333333 !important;
    font-size: 15px;
    padding: 0 14px !important;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--muzaf-orange) !important;
}

.nav-link.active {
    border-bottom: 2px solid var(--muzaf-orange);
}

.dropdown-menu {
    border: 1px solid var(--muzaf-border);
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
    border-radius: 6px;
}

.dropdown-item:hover {
    background-color: #fff8f2;
    color: var(--muzaf-orange);
}

.btn-orange-nav {
    background-color: var(--muzaf-orange);
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 14px;
    border: none;
    text-decoration: none;
}


/* =========================================
   3. WORDPRESS NAVIGATION & DROPDOWN
========================================= */
#header-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#header-menu > li > a {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 3px 14px !important;
    color: #333333 !important;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
}

#header-menu > li > a:hover,
#header-menu > li.current-menu-item > a,
#header-menu > li.current-menu-ancestor > a {
    color: var(--muzaf-orange) !important;
}

#header-menu > li.current-menu-item > a::after,
#header-menu > li.current-menu-ancestor > a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 2px;
    background: var(--muzaf-orange);
    border-radius: 5px;
}

#header-menu .menu-item-has-children {
    position: relative;
}

#header-menu .menu-item-has-children > a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 7px;
    font-size: 12px;
}

#header-menu .menu-item-has-children > a.dropdown-toggle::after {
    border: none;
}

#header-menu .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,.10);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 9999;
}

#header-menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#header-menu .sub-menu li a {
    display: block;
    padding: 10px 18px;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
}

#header-menu .sub-menu li a:hover {
    color: var(--muzaf-orange);
    background: #fff8f2;
}


/* =========================================
   4. HEADER ACTION BUTTONS
========================================= */
.header-btn-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
}

.btn-enquire,
.btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all .35s ease;
}

.btn-enquire {
    color: #f57c00 !important;
    background: #ffffff;
    border: 2px solid #f57c00;
}

.btn-enquire:hover {
    color: #ffffff !important;
    background: #f57c00;
}

.btn-book {
    color: #ffffff !important;
    background: #f57c00;
    border: 2px solid #f57c00;
    box-shadow: 0 10px 25px rgba(245,124,0,.25);
}

.btn-book:hover {
    color: #ffffff !important;
    background: #e56f00;
    border-color: #e56f00;
    transform: translateY(-2px);
}



/* =========================================
   5. RESPONSIVE MEDIA QUERIES
========================================= */
@media (max-width: 991px) {
    #header-menu {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    #header-menu > li {
        width: 100%;
        display: block;
    }

    #header-menu > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0 !important; /* Increased padding for better mobile tap targets */
        width: 100%;
    }

    #header-menu > li.current-menu-item > a::after,
    #header-menu > li.current-menu-ancestor > a::after {
        display: none;
    }

    /* Reset desktop dropdown styles completely for mobile stacking */
    #header-menu .sub-menu {
        position: static;
        display: none; /* Keep hidden by default */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        width: 100%;
        padding: 5px 0 10px 15px; /* Left padding indents sub-items naturally */
        box-sizing: border-box;
    }

    /* FIX: Targets common themes/JS click active classes instead of just hover */
    #header-menu .menu-item-has-children.show > .sub-menu,
    #header-menu .menu-item-has-children.toggled-on > .sub-menu,
    #header-menu .menu-item-has-children.is-open > .sub-menu,
    #header-menu .menu-item-has-children.open > .sub-menu {
        display: block !important;
    }

    /* Clean spacing for the buttons at the bottom */
    .header-btn-group {
        display: flex;
        width: 100%;
        margin: 20px 0 0 0;
        flex-direction: column;
        gap: 12px;
    }

    .btn-enquire,
    .btn-book {
        width: auto !important; /* Force full width on mobile screens to match design */ display:inline-flex!important; text-align:center;
    }
	
	 /* ১. মূল লিংকের ভেতরের লেখা ও অ্যারো দুই দিকে পুশ করবে */
    #header-menu > li > a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
        box-sizing: border-box;
    }

    /* ২. মোবাইলে ফন্ট অসামের অ্যারো আইকনটি নিশ্চিতভাবে দেখানোর জন্য */
    #header-menu .menu-item-has-children > a::after {
        content: "\f107" !important; /* Font Awesome down arrow */
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
        display: inline-block !important;
        margin-left: auto; /* আইকনটিকে একদম ডান কোনায় ঠেলে দেবে */
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    /* ৩. যখন ড্রপডাউনটি ওপেন হবে (is-open ক্লাস যুক্ত হবে), তখন অ্যারোটি ঘুরে যাবে */
    #header-menu .menu-item-has-children.is-open > a::after,
    #header-menu .menu-item-has-children.show > a::after {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
.top-phone a {
    font-size: 16px;
}

.header-btn-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    width: 100%;
    margin: 10px 0 0;
}

.header-btn-group .btn-enquire,
.header-btn-group .btn-book {
    width: 50%;
    flex: 1 1 50%;
    padding: 10px 8px;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
    font-size: 13px;
    white-space: nowrap;}
}


/* =========================================
   HERO SECTION LAYOUT
========================================= */
.hero-section {
    padding: 60px 0 80px 0;
    overflow-x: hidden;
    background: #f8fafc;
}

.hero-container {
    width: 100%;
    max-width: 100%; /* Standard container max-width */
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HERO LEFT CONTENT
========================================= */
.hero-content {
    width: 100%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #2bb673;
    font-weight: 800;
}

.hero-content p {
    margin: 0 0 25px 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.6; width:70%;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.hero-features li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #334155;
    display: flex;
    align-items: center;
}

.hero-features i {
    color: #2bb673;
    margin-right: 10px;
    font-size: 16px;
}

/* =========================================
   HERO IMAGE AREA
========================================= */
.hero-image-area {
    position: relative;
    width: 100%;
    min-height: 600px;
    border-radius: 40px;
    background-image: url("../images/bannerImage.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    /*overflow: hidden;*/
}

/* Overlay */
.hero-image-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0)
    );
    border-radius: inherit;
    pointer-events: none;
}


/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

/* Tablet View (Max width: 991px) */
@media (max-width: 991px) {
    .hero-section {
        padding: 40px 0 60px 0;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-image-area {
        min-height: 450px;
        border-radius: 30px;
        background-position: center center;
    }
}

/* Mobile View (Max width: 767px) */
@media (max-width: 767px) {
    .hero-container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px; width:98%; text-align:center;
    }

    .hero-image-area {
        min-height: 350px;
        border-radius: 20px;
    }
}

/* Small Mobile View (Max width: 575px) */
@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-image-area {
        min-height: 280px;
        border-radius: 15px;
    }
}

/* 24/7 Available Badge */

.availability-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg,#ff8a00,#f57c00);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    margin:18px 0 22px;
    font-size:18px;
    font-weight:700;
    letter-spacing:.5px;
    box-shadow:0 12px 30px rgba(245,124,0,.35);
    animation:pulseBadge 2s infinite;
}

.availability-badge i{
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

@keyframes pulseBadge{
    0%{
        transform:scale(1);
        box-shadow:0 12px 30px rgba(245,124,0,.35);
    }
    50%{
        transform:scale(1.05);
        box-shadow:0 18px 40px rgba(245,124,0,.5);
    }
    100%{
        transform:scale(1);
        box-shadow:0 12px 30px rgba(245,124,0,.35);
    }
}

@media (max-width:768px){

    .availability-badge{
        font-size:15px;
        padding:10px 18px;
    }
}



/* FLOATING FORM */

.hero-form-box{

    position:absolute;

    top:50%;
    left:10px;

    transform:
    translate(-40%, -50%);

    width:400px;

    background:#16346a;

    padding:30px;

    border-radius:25px; margin-top: 20px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.18);

    z-index:5;
	box-sizing: border-box;
    max-width: calc(100vw - 30px);
}

.hero-form-box h4{
    text-align:center;
    margin-bottom:25px;
    font-weight:700; color:#fff!important;
}

.hero-form-box .form-control,
.hero-form-box .form-select{
    height:52px;
    border-radius:10px;
}

.hero-form-box textarea{
    height:120px !important;
}

.hero-form-btn{

    width:100%;
    height:55px;

    border:none;

    border-radius:10px;

    color:#fff;

    font-weight:700;

    background:
    linear-gradient(
        135deg,
        #ff8c00,
        #2bb673
    );
}

.hero-form-box div.wpforms-container-full .wpforms-form .wpforms-field-label {font-weight: 700;
    font-size: 14px!important;}

/* AREAS WE COVER BUTTON */

.areas-cover-btn {
    display: block;
    width: 100%;
    height: 52px;
    line-height: 52px;
    text-align: center;
    margin-top: 15px;

    background: #fff;
    color: #16346a;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    border-radius: 10px;
    border: 2px solid #fff;

    transition: all 0.3s ease;
    box-sizing: border-box;
}

.areas-cover-btn:hover {
    background: transparent;
    color: #fff;
    text-decoration: none;
}

/* =========================
   Large Laptop
========================= */

@media (max-width: 1400px){
	
	

    .hero-content h1{
        font-size:40px;
    }

    .hero-form-box{
        width:360px;
        transform:translate(-30%, -50%);
    }
}

/* =========================
   Laptop / Tablet
========================= */

@media (max-width: 1200px){

    .hero-section{
        padding:40px 0 60px;
    }

    .hero-content{
        width:100%;
        margin-bottom:40px;
    }

    .hero-content h1{
        font-size:36px;
    }

    .hero-image-area{
        min-height:600px;
    }
	
	.hero-content p {
  margin: 25px 25px 25px 0; font-size: 14px;
  color: #555;
}

    .hero-form-box{
        width:280px;
        padding:20px;
        transform:translate(-20%, -50%);
    }
	
	.hero-form-box h4{font-size: 18px;}
	
}

/* =========================
   Tablet
========================= */

@media (max-width: 991px){

    .hero-container{
        padding:0 20px;
    }

    .hero-content{
        text-align:center;
        width:100%;
        margin-bottom:30px;
    }

    .hero-features{
        display:inline-block;
        text-align:left;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-image-area{

        min-height:auto;

        background-position:center;

        padding:40px 20px;

        border-radius:25px;
    }

    .hero-form-box{

        position:relative;

        top:auto;
        left:auto;

        transform:none;

        width:100%;
        max-width:450px;

        margin:0 auto;

        box-shadow:
        0 10px 30px rgba(0,0,0,.12);
    }
}

/* =========================
   Mobile
========================= */

@media (max-width: 767px){

    .hero-section{
        padding:30px 0 50px;
    }

    .hero-container{
        padding:0 15px;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-features li{
        font-size:14px;
    }

    .hero-image-area{
        padding:20px 15px;
        border-radius:20px;
    }

    .hero-form-box{
        width:100%;
        padding:20px;
        border-radius:15px;
    }

    .hero-form-box h4{
        font-size:20px;
    }

    .hero-form-box .form-control,
    .hero-form-box .form-select{
        height:48px;
    }

    .hero-form-btn{
        height:50px;
    }
}

/* =========================
   Small Mobile
========================= */

@media (max-width: 480px){

    .hero-content h1{
        font-size:28px;
    }

    .hero-content p{
        font-size:14px;
    }

    .hero-form-box{
        padding:15px;
    }
}

/* Packages Below Banner Section */

.packages-section {
    position: relative; /* Position relative added for pseudo elements */
    background-image: 
        linear-gradient(rgba(10, 18, 28, 0.88), rgba(10, 18, 28, 0.88)),
        url("../images/driving-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden; /* Fixes side scroll issue */
}

.packages-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.08);
    filter: blur(80px);
    top: -180px;
    left: -150px;
    pointer-events: none;
}

.packages-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 160, 255, 0.08);
    filter: blur(90px);
    bottom: -180px;
    right: -120px;
    pointer-events: none;
}

/* =========================================
   SECTION HEADING
========================================= */

.packages-section .section-label {
    display: inline-block;
    color: #f5c542;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.packages-section .section-headline {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.packages-section .section-headline span {
    color: #f5c542;
}

/* =========================================
   PACKAGE ROW & TITLE
========================================= */

.package-row {
    padding: 35px;
    border-radius: 25px;
}

.package-row-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.package-row-title i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5c542;
    color: #111;
    font-size: 17px;
}

.manual-row {
    background: linear-gradient(
        135deg,
        rgba(232, 245, 233, 0.1),
        rgba(244, 255, 247, 0.2)
    );
    border-left: 6px solid #2bb673;
}

.automatic-row {
    background: linear-gradient(
        135deg, 
        rgba(255, 243, 224, 0.1), 
        rgba(255, 250, 244, 0.2)
    );
    border-left: 6px solid #ff8c00;
}

.manual-row .package-row-title {
    color: #2bb673;
}

.automatic-row .package-row-title {
    color: #ff8c00;
}

/* =========================================
   PACKAGE BOX
========================================= */

.package-box {
    position: relative;
    min-height: 190px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: linear-gradient(180deg, #008e54 0%, #152c5e 50%, #152c5e 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
    overflow: hidden;
}

/* Top shine */
.package-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f5c542;
}

/* Hover */
.package-box:hover {
    transform: translateY(-8px);
    background: linear-gradient(180deg, #008e54 0%, #152c5e 50%, #152c5e 100%);
    border-color: rgba(245, 197, 66, 0.55);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* DURATION & PRICE */
.package-box h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px;
}

.package-box .price {
    color: #f5c542;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.package-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff !important;
    font-weight: 700;
    background: linear-gradient(135deg, #ff8c00, #e63964);
    transition: all 0.3s ease;
}

.package-btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 100, 0.25);
}

/* =========================================
   EXTRA STRIP & CARDS (OPTIONAL COMPONENTS)
========================================= */

.packages-strip {
    margin-top: 90px;
    position: relative;
    z-index: 20;
    padding-bottom: 60px;
}

.package-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-8px);
}

.package-card.featured {
    border: 3px solid var(--muzaf-orange);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 40px;
    transform: rotate(45deg);
}

.package-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--muzaf-dark-slate);
}

.package-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--muzaf-green);
    margin-bottom: 15px;
}

.package-card p {
    margin-bottom: 25px;
}

.package-column {
    background: #fff3e0;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.featured {
    background: #2bb673;
    color: #fff;
}

.featured .package-price,
.featured h3 {
    color: #fff;
}

.packages-strip .col-lg-4:nth-child(1) .package-card {
    background: #fff3e0;
}

.packages-strip .col-lg-4:nth-child(2) .package-card {
    background: #2bb673;
    color: #fff;
}

.packages-strip .col-lg-4:nth-child(3) .package-card {
    background: #fce4ec;
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 991px) {
    .packages-strip {
        margin-top: 40px;
    }

    .package-card.featured {
        transform: none;
    }

    .packages-section .section-headline {
        font-size: 32px;
    }

    .package-row {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .packages-section .section-headline {
        font-size: 26px;
    }

    .package-row-title {
        font-size: 22px;
    }
}

/*-----------------------------------*/

        .badge-l-flag {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ffffff;
            padding: 14px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transform: rotate(12deg);
            z-index: 3;
        }

        /* Feature Pillars - Why Choose Us */

.feature-card{
    position:relative;
    padding:40px 30px;
    border-radius:25px;
    overflow:hidden;
    height:100%;
    transition:all .4s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

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

/* Card 1 */

.pink-bottom{
    background:linear-gradient(135deg,#ff5f8f,#ff8fb1);
    color:#fff;
}

/* Card 2 */

.green-bottom{
    background:linear-gradient(135deg,#2bb673,#54d89a);
    color:#fff;
}

/* Card 3 */

.orange-bottom{
    background:linear-gradient(135deg,#ff8c00,#ffbf47);
    color:#fff;
}

.feature-card h4{
    margin:20px 0 15px;
    font-weight:700;
    color:#fff;
}

.feature-card p{
    margin:0;
    color:rgba(255,255,255,.9);
}

.feature-icon-wrap{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    background:rgba(255,255,255,.2) !important;
    color:#fff !important;
    backdrop-filter:blur(10px);
}

/* Decorative Shapes */

.feature-card::before{
    content:'';
    position:absolute;
    width:140px;
    height:140px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-50px;
    right:-40px;
}

.feature-card::after{
    content:'';
    position:absolute;
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    bottom:-20px;
    left:-20px;
}







        /*.feature-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid #f8f8f8;
            padding: 40px 25px;
            text-align: center;
            height: 100%;
            position: relative;
            border-bottom: 4px solid transparent;
			transition:.35s;
        }*/
        .feature-card.pink-bottom { border-bottom-color: var(--muzaf-pink); }
        .feature-card.green-bottom { border-bottom-color: var(--muzaf-green); }
        .feature-card.orange-bottom { border-bottom-color: var(--muzaf-orange); }
        .feature-icon-wrap {
            width: 60px;
            height: 60px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 20px;
        }
        .feature-card h4{font-size:22px;}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

        /* Five-column Card Layout for Courses */
        @media (min-width: 992px) {
            .col-lg-2-4 {
                flex: 0 0 auto;
                width: 20%;
            }
        }
.course-card{
    position:relative;
    padding:35px 25px;
    border-radius:25px;
    overflow:hidden;
    height:100%;
    text-align:center;
    transition:.4s ease;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

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

.course-card h4{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin:20px 0 15px;
}

.course-card p{
    color:rgba(255,255,255,.9);
    margin-bottom:25px;
}

.course-icon-circle{
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:28px;
    background:rgba(255,255,255,.2)!important;
    color:#fff!important;
    backdrop-filter:blur(10px);
}

.btn-book-now{
    border:none;
    background:#fff;
    color:#111;
    padding:12px 24px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-book-now:hover{
    transform:translateY(-2px);
}

/* Decorative circles */

.course-card::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-40px;
    right:-40px;
}

.course-card::after{
    content:'';
    position:absolute;
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    bottom:-20px;
    left:-20px;
}


.course-card-1{
    background:linear-gradient(135deg,#ff5f8f,#ff8fb1);
}

.course-card-2{
    background:linear-gradient(135deg,#2bb673,#54d89a);
}

.course-card-3{
    background:linear-gradient(135deg,#ff8c00,#ffbf47);
}

.course-card-4{
    background:linear-gradient(135deg,#9c27b0,#ce93d8);
}

.course-card-5{
    background:linear-gradient(135deg,#009688,#4dd0e1);
}



        /*.course-card {
            /*background-color: #ffffff;
			background: linear-gradient( 180deg,#ffffff 0%, #f7fbff 100% );
            border-radius: 12px;
            border: 1px solid #f1f1f1;
            padding: 30px 20px;
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        }*/
        .course-icon-circle {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            margin: 0 auto 10px;
        }
        .course-card h4{font-size:18px;}
        
        .btn-book-now {
            background-color: var(--muzaf-orange);
            color: #ffffff;
            font-weight: 600;
            width: 100%;
            padding: 10px;
            border-radius: 6px;
            border: none;
            font-size: 14px;
        }

        /* Split Frame Pricing Grid Container matching image exactly */
.pricing-section{
    overflow:hidden;
    position:relative;
}



.pricing-wrapper{
    position:relative;
    overflow:hidden;
    min-height:auto;

    background:
    linear-gradient(
        rgba(20,35,70,.45),
        rgba(20,35,70,.45)
    ),
    url('../images/city-bg.png');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    /* Parallax */
    background-attachment:fixed;
}

/*--.pricing-wrapper{
    position:relative;
    overflow:hidden;
    min-height:520px;

    background:
    linear-gradient(
    rgba(20,35,70,.25),
    rgba(20,35,70,.25)
    ),
    url('../images/city-bg.png');

    background-size:cover;
    background-position:center bottom;
}--*/

/* Right Gradient Border */
.pricing-wrapper::after{
    content:"";
    position:absolute;
    top:-20px;
    right:-90px;
    width:420px;
    height:620px;
    border-radius:80px;
    background:linear-gradient(
        180deg,
        #ff9900 0%,
        #ff4081 100%
    );
    z-index:1;
}



/* White Cut Shape */
.pricing-wrapper::before{
    content:"";
    position:absolute;
    top:20px;
    right:20px;
    width:390px;
    height:480px;
    border-radius:250px;
    background:#fff;
    z-index:2;
}

.pricing-content{
    position:relative;
    z-index:5;
    width:48%;
    padding:60px 50px;
}

.sub-title{
    display:block;
    color:#ff4f6d;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:10px;
}

.pricing-content h2{
    color:#fff;
    font-size:45px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:30px;
}

.pricing-content h2 span{
    color:#ff9c00;
}

.pricing-card{    background: linear-gradient( 180deg,#ffffff, #f8fbff );

    border-top:5px solid var(--muzaf-orange);
    border-radius:12px;
    padding:20px;
    max-width:420px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.pricing-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:11px 0;
    border-bottom:1px solid #ececec;
}

.pricing-row:last-child{
    border-bottom:none;
}

.pricing-row span{
    font-size:15px;
    color:#222;
}

.pricing-row strong{
    color:var(--muzaf-sky);
    font-size:16px;
}

.pricing-row i{
    color:#1db954;
    margin-right:8px;
}

.view-pricing-btn{
    margin-top:18px;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    text-decoration:none;
    /*background:#fff;
    border:2px solid #27ae60;
    color:#27ae60;*/
	background:
    linear-gradient(
        135deg,
        var(--muzaf-orange),
        var(--muzaf-sky)
    );

    border:none;
    color:#fff;

    height:54px;
    border-radius:10px;
    font-weight:600;

    transition:.3s;
}

.view-pricing-btn:hover{
    background:#27ae60;
    color:#fff;
}

/* Right Area */
.vehicle-area{
    position:absolute;
    right:0;
    bottom:0;
    width:55%;
    height:100%;
    z-index:4;
}

.circle-image{
    position:absolute;
    right:40px;
	bottom:0;
    overflow:hidden;
}

.circle-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* Decorative Dot */
/*.vehicle-area::after{
    content:"";
    position:absolute;
    right:40px;
    bottom:45px;
    width:80px;
    height:80px;

    background-image:
    radial-gradient(#ff5a8b 2px, transparent 2px);

    background-size:14px 14px;
}*/

/* Pink Circle */
.vehicle-area::before{
    content:"";
    position:absolute;
    bottom:50px;
    right:260px;

    width:70px;
    height:70px;
    border-radius:50%;

    background:linear-gradient(
        135deg,
        #ff5a8b,
        #ffa6c5
    );
}

@media(max-width:991px){

    .pricing-wrapper{
        min-height:auto;
    }

    .pricing-content{
        width:100%;
        padding:40px 25px;
    }

    .vehicle-area{
        position:relative;
        width:100%;
        height:450px;
    }

    .circle-image{
        width:100%;
        right:50%;
        transform:translate(50%,-50%);
    }

    .pricing-wrapper::before,
    .pricing-wrapper::after{
        display:none;
    }
}
        /* Testimonials Segment Matrix with Activated Navigation and Dot Elements */
        .testimonial-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
            border: 1px solid #f1f1f1;
            padding: 35px 30px;
            position: relative;
            height: 100%;
            margin: 15px 5px;
        }
        .quote-icon {
            color: var(--muzaf-pink);
            font-size: 32px;
            position: absolute;
            top: -16px;
            left: 30px;
            background-color: #ffffff;
            padding: 0 10px;
        }
        .stars {
            color: #ffcc00;
            margin-bottom: 14px;
            font-size: 13px;
        }
        .testimonial-text {
            font-size: 13.5px;
            color: #444444;
            line-height: 1.65;
            margin-bottom: 20px;
        }
        .user-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background-color: #fce4ec;
            color: var(--muzaf-pink);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 13px;
            margin-right: 12px;
        }
        
        /* Custom Owl Layout Controls (Arrows and Navigation Indicators) */
        .testimonials-wrap {
            position: relative;
        }
        .testimonials-wrap .owl-theme .owl-nav {
            position: absolute;
            top: 40%;
            width: 100%;
            left: 0;
            pointer-events: none;
            margin-top: 0 !important;
        }
        .testimonials-wrap .owl-theme .owl-nav [class*='owl-'] {
            position: absolute;
            pointer-events: auto;
            width: 40px;
            height: 40px;
            background: #ffffff !important;
            color: var(--muzaf-pink) !important;
            border: 1px solid var(--muzaf-border) !important;
            border-radius: 50% !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px !important;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: all 0.2s ease;
        }
        .testimonials-wrap .owl-theme .owl-nav .owl-prev {
            left: -25px;
        }
        .testimonials-wrap .owl-theme .owl-nav .owl-next {
            right: -25px;
        }
        .testimonials-wrap .owl-theme .owl-nav [class*='owl-']:hover {
            background: var(--muzaf-pink) !important;
            color: #ffffff !important;
        }
        .testimonials-wrap .owl-theme .owl-dots {
            margin-top: 25px !important;
        }
        .testimonials-wrap .owl-theme .owl-dots .owl-dot span {
            width: 9px !important;
            height: 9px !important;
            margin: 5px 4px !important;
            background: #dddddd !important;
        }
        .testimonials-wrap .owl-theme .owl-dots .owl-dot.active span {
            background: var(--muzaf-pink) !important;
        }


.muzaf-testimonials .glsr-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.muzaf-testimonials .glsr-review {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width: 991px) {
    .muzaf-testimonials .glsr-reviews {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .muzaf-testimonials .glsr-reviews {
        grid-template-columns: 1fr;
    }
}



        /* High Impact Call To Action Banner Strip */
        .cta-banner{
    position:relative;

    padding:35px 40px;

    border-radius:25px;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        #ff8c00 0%,
        #ff5e62 35%,
        #2bb673 70%,
        #00b4d8 100%
    );

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);
}

/* Decorative Shapes */

.cta-banner::before{
    content:"";

    position:absolute;

    width:250px;
    height:250px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-120px;
    right:-80px;
}

.cta-banner::after{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    bottom:-80px;
    left:-60px;
}

/* Content */

.cta-banner h3{
    color:#fff;
    font-size:32px;
}

.cta-banner p{
    color:rgba(255,255,255,.85) !important;
}

/* Icon Box */

.cta-icon-box{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(8px);

    font-size:28px;
}

/* Phone Block */

.cta-phone-block{
    display:inline-flex;

    align-items:center;
    gap:10px;

    padding:14px 15px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-weight:700;

    backdrop-filter:blur(10px);
}

/* Button */

.btn-cta-white{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    height:58px;

    border-radius:50px;

    background:#fff;

    color:#111827;

    text-decoration:none;

    font-weight:700;

    transition:.35s;
}

.btn-cta-white:hover{

    background:#111827;

    color:#fff;

    transform:translateY(-3px);
}

/* CTA Phone */

.cta-phone-block a{
    color:#fff;
    font-size:25px;
    font-weight:800;
    text-decoration:none;
}

/* Mobile */

@media(max-width:991px){

    .cta-banner{
        padding:30px 25px;
        text-align:center;
    }

    .cta-phone-block{
        margin:0 auto;
    }

    .btn-cta-white{
        max-width:280px;
        margin:auto;
    }

    .cta-banner h3{
        font-size:26px;
    }
	
	 .cta-phone-block a{
        font-size:22px;
    }
	
}





/*----------------------------------*/
.contact-section{

    position:relative;

    overflow:hidden;

    padding:100px 0;

    background-image:
    url("../images/driving-car-bg.jpg");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

/* Dark Overlay */

.contact-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(15,23,42,.92) 0%,
        rgba(15,23,42,.80) 50%,
        rgba(15,23,42,.60) 100%
    );
}

/* Content Above Overlay */

.contact-section .container{
    position:relative;
    z-index:2;
}

/* Headings */

.contact-section .section-label{
    color:#ff8c00;
}

.contact-section .section-headline{
    color:#fff;
}

.contact-section .text-green{
    color:#2bb673;
}

/* Contact Info */

.contact-section small{
    color:rgba(255,255,255,.70) !important;
}

.contact-section strong{
    color:#fff !important;
}

/* Form Card */

.contact-form-card{

    background:#fff;

    border-radius:25px;

    padding:40px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.20);
}

/* Inputs */

.contact-form-card .form-control{

    height:55px;

    border-radius:12px;

    border:1px solid #e2e8f0;
}

.contact-form-card textarea{
    height:140px !important;
}

/* Button */

.btn-submit-form{

    border:none;

    padding:14px 32px;

    border-radius:12px;

    color:#fff;

    font-weight:700;

    background:
    linear-gradient(
        135deg,
        #ff8c00,
        #2bb673
    );

    transition:.3s;
}

.btn-submit-form:hover{
    transform:translateY(-2px);
}



.contact-icon{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f8f9fa;
    font-size:18px;
}

.phone-icon{
    color:#ff8c00; /* Orange */
}

.email-icon{
    color:#2bb673; /* Green */
}

.location-icon{
    color:#e63964; /* Pink/Red */
}


/* Contact Section */

.contact-phone{
    color:#ff7a00;
    font-size:24px;
    font-weight:800;
    text-decoration:none;
}

.contact-phone:hover{
    color:#1f7a3e;
}


        /* Global Structural Footer */

footer{
    position:relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;

    background:
    linear-gradient(
        rgba(8,15,30,.92),
        rgba(8,15,30,.92)
    );

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    color:#fff;
}


footer .container{
    position:relative;
    z-index:2;
}

/* Heading */

footer h5{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
}

/* Links */

footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

footer ul li{
    margin-bottom:12px;
}

footer ul li a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:.3s;
}

footer ul li a:hover{
    color:#ff8c00;
    padding-left:5px;
}



        footer {
            background-color: var(--muzaf-dark-slate);
            color: #9cb0c1;
            font-size: 14px;
        }
        footer h5 {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 24px;
        }
        footer ul {
            list-style: none;
            padding-left: 0;
        }
        footer ul li {
            margin-bottom: 12px;
        }
        footer ul li a {
            color: #9cb0c1;
            text-decoration: none;
        }
        footer ul li a:hover {
            color: #ffffff;
        }
        .footer-bottom {
            background-color: #16191f;
            font-size: 13px;
        }
        .footer-bottom a{text-decoration:none; color:#666;}
        .footer-bottom a:hover{color:#fff;}
        
        .text-orange{
    color: #ff8c00 !important;
}

.contact-info{ font-size:15px!important;}
.contact-info i{
    color: #ff8c00;
    width: 20px;
    text-align: center;
}

.contact-info li a{
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: .3s;
}

.contact-info li a:hover{
    color: #ff8c00;
}


        
.social-icons a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:nth-child(1){
    background:#1877F2; /* Facebook */
}

.social-icons a:nth-child(2){
    background:#E4405F; /* Instagram */
}

.social-icons a:nth-child(3){
    background:#25D366; /* WhatsApp */
}

.social-icons a:hover{
    transform:translateY(-3px) scale(1.05);
}
  



/*----------------------Next Page-----------------------*/

/*.container-fluid {
    position: relative;
	width: 1366px;
    max-width: 100%;
    margin: 0 auto;
}*/

.nxtBanner{display:block; position:relative; overflow:hidden; clear:both; height:50vh;}
.nxtBanner:after{background: rgb(0,0,0); background: linear-gradient(180deg, rgba(0,0,0,0.03683480228028713) 0%, rgba(51,51,51,0.7707283597032564) 96%); position:absolute; left:0; right:0; top:0; bottom:0; content:''; display:block; }
.nxtBanner .nxtbanner-inner img{width:100%; height:100%; object-fit:cover;}


@keyframes resize {
0% {transform:scale(1);}
50% {transform:scale(1.2);}
}


.nxtBanner .fullArea{position:relative;z-index:5; }
.nxtBanner h1{font-weight:700;  display: block; font-size:40px; margin-bottom:10px; color:#fff!important; padding:0 0 10px; text-transform:uppercase; letter-spacing:4px; line-height:1.1; position: absolute; left:50%; z-index:105; transform:translate(-50%,50%); z-index:5; bottom:50%; text-shadow: #858f99 1px 1px 0px, #b4b4b4 0px 2px 0px, #a0a0a0 0px 3px 0px, rgba(140, 140, 140, 0.498039) 0px 4px 0px, #787878 0px 0px 0px, rgba(0, 0, 0, 0.498039) 0px 5px 10px; }
.nxt-matter-area{clear:both; margin-top: 0;  margin-bottom:50px; background:#fff; }
.nxt-matter-area p{ font-size:18px!important; line-height:1.5!important; padding-bottom:10px!important; }
.nxt-matter-area h2{ display:block; font-size:34px; line-height:35px; margin:0 auto; text-transform:none; font-weight:600; color:var(--dark);}
hr.line{ border-bottom:1px solid #dbdbdb; display:block; overflow:hidden;}
.mid-content-area{display:block; width:100%; padding: 50px 0; }
.mid-content-area [class^="col-"] > div{display: inline-block; vertical-align:top;}
.mid-content-area [class^="col-md-5"] > div{border-left:1px #ddd solid; margin: 0; padding:0;  height: 100vh}
.sub-menu{display:block; text-align:left; overflow:hidden; padding: 0; }
.sub-menu li{display:block; overflow:hidden; font-size:14px;}

.sub-menu li a{
color: #fff;
display: block;
line-height: 1.25em;
text-decoration: none;
padding: .75em 0;
position: relative;
border-right:3px transparent solid; text-align:left; border-bottom: 1px dashed #f1f1f1; 
}
.sub-menu li a:hover, .sub-menu li.active a{ text-align:left; color: #00a8ff; border-right:3px #00a8ff solid;}
.sub-menu li:before{ display: none}

.mid-content-area p{display:block; clear:both; margin-bottom:25px; text-align:justify;}
.mid-content-area h2, .mid-content-area h1{display:block; margin-bottom:25px; font-size:22px; font-weight:600; color: #e24a3a; clear:both;}
.mid-content-area h3{display:block; margin-bottom:15px; font-size:18px; font-weight:700; color: #0ea1c4; clear:both; text-transform:uppercase;}

.nestaboutArea{display:block; padding:60px; position:relative;z-index:2; background:#eee; display:block;}
.nestaboutArea{width:100%; position:relative; z-index:5; font-size:16px; background:#eeeeee; display:block;overflow:hidden; padding:30px;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.nestaboutArea h2{color:var(--green); font-size:38px;}
.nestaboutArea h2 span, .highLightText h3, .testimonialsArea h2, .whyUsArea h2, .videoArea h2{display:block; overflow:hidden; font-size:30px; letter-spacing:-1px; line-height:1; font-weight:700; margin-bottom:0px; color:var(--black);}
.nestaboutArea h3{font-size:22px;}
.nestaboutArea .container a, .highLightText .row + a{display:inline-block; margin:15px 0; background:#fff; border:2px var(--black) solid; text-transform:uppercase; color:var(--green); padding:12px 20px; font-weight:700;
-webkit-box-shadow: 8px 8px 0px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 8px 8px 0px 0px rgba(0,0,0,0.2);

box-shadow: 8px 8px 0px 0px rgba(0,0,0,0.2);
}
.nestaboutArea .container a:hover, .highLightText .row + a:hover{background:var(--black); color:#fff;}


.datetime-area{ display: block!important; border:5px solid #1a224d; padding:30px  20px;  text-align: center;}
.datetime-area h4{ display: block; padding-bottom: 10px; font-size: 25px; font-weight: 500;  color: #c51f44;}
.datetime-area h4 strong{ display: block; clear: both; font-size: 35px; padding-top: 10px; color: #1a224d; }
.datetime-area ul{display: block!important; padding:0!important; margin:0!important; list-style-type: none!important;}

.datetime-area ul li{display: block!important; padding:0 0 15px 0!important; font-size: 20px; }










.gallery-listing > [class^="col-"]{}
.gallery-listing > [class^="col-"] > div{display:block; overflow:hidden; clear:both; position:relative; margin-bottom:30px;  border:1px solid #f3f3f3; padding:5px; width:100%;  height: 250px;}
.gallery-listing > [class^="col-"] > div:hover{border:1px #000 solid; }
.gallery-listing > [class^="col-"] > div img{padding:0; display:inline-block!important; transform: scale(1); transition:.2s ease-in-out;width:100%;   height:100%; object-fit:cover;}
.gallery-listing > [class^="col-"] > div:hover img{transform: scale(1.1);}
.gallery-listing > [class^="col-"] > div h3{font-size:15px; font-weight:600; line-height:1.5; margin-bottom:0;padding:3px 10px; font-weight:600; background:var(--red); color:#fff;}





.from-area{display: block; overflow: hidden; padding: 60px 0; margin: 40px 0; clear: both; width: 100%; background: var(--blue);}
.from-area > div{width:900px; margin: 0 auto; max-width: 100%;}
.from-area h2{margin-bottom: 25px; text-align: center; color: #fff;}

.sub-menu-toggle{ display: none!important}


/* =========================================
   MUZAF ABOUT - OUR JOURNEY
========================================= */

.nxt-about-journey {
    position: relative;
    padding: 80px 0;
    background: #f5f9fc;
    overflow: hidden;
}


/* =========================================
   SECTION HEADING
========================================= */

.nxt-about-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.nxt-about-heading span {
    display: inline-block;
    margin-bottom: 10px;

    color: #007f86;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nxt-about-heading h2 {
    margin: 0 0 15px;

    color: #006d77!important;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.nxt-about-heading p {
    margin: 0 auto;
    color:#5f6b73!important;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   JOURNEY GRID
========================================= */

.nxt-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =========================================
   JOURNEY CARD
========================================= */

.nxt-journey-card {
    position: relative;

    padding: 35px 30px;

    background: #ffffff;

    border: 1px solid #e2eaee;
    border-radius: 16px;

    box-shadow: 0 8px 30px rgba(0, 80, 100, 0.06);

    overflow: hidden;

    transition: all 0.3s ease; color: #111;
}

.nxt-journey-card:hover {
    transform: translateY(-8px);

    border-color: #007f86;

    box-shadow: 0 15px 35px rgba(0, 80, 100, 0.12);
}

.nxt-journey-card p{
     color: #111!important;
}


/* =========================================
   NUMBER
========================================= */

.nxt-journey-number {
    position: absolute;

    top: 20px;
    right: 25px;

    color: rgba(0, 109, 119, 0.10);

    font-size: 55px;
    line-height: 1;
    font-weight: 800;
}


/* =========================================
   CONTENT
========================================= */

.nxt-journey-content {
    position: relative;
    z-index: 2;
}

.nxt-journey-content h3 {
    margin: 0 0 15px;
    color: #f57c00;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.nxt-journey-content p {
    margin: 0;

    color: #555f65!important;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================
   DECORATIVE LINE
========================================= */

.nxt-journey-card::after {
    content: "";

    position: absolute;

    left: 30px;
    bottom: 0;

    width: 55px;
    height: 4px;

    background: linear-gradient(
        90deg,
        #006d77,
        #0077b6
    );

    border-radius: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .nxt-about-journey {
        padding: 60px 20px;
    }

    .nxt-about-heading {
        margin-bottom: 40px;
    }

    .nxt-about-heading h2 {
        font-size: 34px;
    }

    .nxt-journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .nxt-about-journey {
        padding: 50px 15px;
    }

    .nxt-about-heading {
        margin-bottom: 30px;
    }

    .nxt-about-heading h2 {
        font-size: 30px;
    }

    .nxt-about-heading p {
        font-size: 15px;
    }

    .nxt-journey-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nxt-journey-card {
        padding: 30px 25px;
    }

    .nxt-journey-content h3 {
        font-size: 22px;
    }

	.social-icons{ display:block; margin:10px auto; text-align:center; }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .nxt-about-journey {
        padding: 40px 15px;
    }

    .nxt-about-heading h2 {
        font-size: 27px;
    }

    .nxt-journey-card {
        padding: 25px 20px;
    }

    .nxt-journey-number {
        font-size: 45px;
        right: 18px;
    }

}


/* =========================================================
   SITE REVIEWS - FULL CSS
========================================================= */

.strong-view.wpmtst-default .wpmtst-testimonial-content p{ color: #777!important}
















/* =========================================================
   HOME PAGE - TESTIMONIAL GRID
========================================================= */

.home-testimonials .glsr-default {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}


/* Reviews Grid */

.home-testimonials .glsr-reviews {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    width: 100% !important;
}


/* Individual Review Box */

.home-testimonials .glsr-review {
    width: 100% !important;
    min-height: 280px !important;
    height: 280px !important;

    padding: 25px !important;
    margin: 0 !important;

    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 15px !important;

    box-shadow: 0 8px 25px rgba(0,0,0,0.06) !important;

    box-sizing: border-box !important;

    overflow: hidden !important;
}


/* Review Text */

.home-testimonials .glsr-review-content p {
    display: -webkit-box !important;

    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;

    overflow: hidden !important;

    line-height: 1.6 !important;
}


/* Title */

.home-testimonials .glsr-review-title {
    font-size: 20px !important;
    margin-bottom: 10px !important;
}


/* Rating */

.home-testimonials .glsr-review-rating {
    margin-bottom: 10px !important;
}


/* Mobile */

@media (max-width: 991px) {

    .home-testimonials .glsr-reviews {
        grid-template-columns: repeat(2, 1fr) !important;
    }

}


@media (max-width: 767px) {

    .home-testimonials .glsr-reviews {
        grid-template-columns: 1fr !important;
    }

    .home-testimonials .glsr-review {
        height: auto !important;
        min-height: 250px !important;
    }

}




/* Main Reviews Wrapper */
.glsr-default {
    width: 100% !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 10px !important;
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.07) !important;
    box-sizing: border-box !important;
}


/* =========================================================
   REVIEWS LIST
========================================================= */

.glsr-default .glsr-reviews {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
}


/* =========================================================
   SINGLE REVIEW
========================================================= */

.glsr-default .glsr-review {
    display: block !important;
    width: 100% !important;
    padding: 25px !important;
    margin: 0 !important;

    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 12px !important;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06) !important;

    box-sizing: border-box !important;
}


/* =========================================================
   REVIEW TITLE
========================================================= */

.glsr-default .glsr-review-title {
    color: #222222 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
}


/* =========================================================
   REVIEW TEXT
========================================================= */

/* IMPORTANT: Existing p color #fff override */
.glsr-default .glsr-review p,
.glsr-default .glsr-review-content p {
    color: #444444 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}


/* =========================================================
   RATING
========================================================= */

.glsr-default .glsr-review-rating {
    margin-bottom: 10px !important;
}


/* =========================================================
   DATE
========================================================= */

.glsr-default .glsr-review-date {
    color: #777777 !important;
    font-size: 14px !important;
}


/* =========================================================
   AUTHOR
========================================================= */

.glsr-default .glsr-review-author {
    color: #222222 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}


/* Author Paragraph */
.glsr-default .glsr-review-author p {
    color: #222222 !important;
}


/* =========================================================
   REVIEW FORM
========================================================= */

.glsr-default .glsr-form {
    width: 100% !important;
    padding: 28px !important;
    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06) !important;
    box-sizing: border-box !important;
}


/* Form Text */
.glsr-default .glsr-form p,
.glsr-default .glsr-form label {
    color: #222222 !important;
}


/* Form Inputs */
.glsr-default .glsr-form input,
.glsr-default .glsr-form textarea,
.glsr-default .glsr-form select {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 14px !important;

    color: #333333 !important;
    background: #ffffff !important;

    border: 1px solid #dddddd !important;
    border-radius: 7px !important;

    box-sizing: border-box !important;
}


/* Placeholder */
.glsr-default .glsr-form input::placeholder,
.glsr-default .glsr-form textarea::placeholder {
    color: #777777 !important;
    opacity: 1 !important;
}


/* =========================================================
   FORM BUTTON
========================================================= */

.glsr-default .glsr-form button,
.glsr-default .glsr-form input[type="submit"] {
    background: linear-gradient(
        90deg,
        #ff7a00,
        #ff4d6d
    ) !important;

    color: #ffffff !important;

    border: none !important;
    border-radius: 30px !important;

    padding: 12px 28px !important;

    font-weight: 600 !important;
    cursor: pointer !important;
}


.glsr-default form.glsr-form {
    font-size: var(--glsr-text-md);
    line-height: var(--glsr-leading);

    background: linear-gradient(
        135deg,
        #e0f7ff 0%,
        #b8edf0 35%,
        #4db6ac 70%,
        #006d77 100%
    ) !important;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .glsr-default {
        padding: 20px !important;
        border-radius: 15px !important;
    }

    .glsr-default .glsr-reviews {
        gap: 15px !important;
    }

    .glsr-default .glsr-review {
        padding: 20px !important;
    }

    .glsr-default .glsr-review-title {
        font-size: 18px !important;
    }

    .glsr-default .glsr-review p,
    .glsr-default .glsr-review-content p {
        color: #444444 !important;
        font-size: 14px !important;
    }

    .glsr-default .glsr-form {
        margin-top: 25px !important;
        padding: 20px !important;
    }

    .glsr-default .glsr-form button,
    .glsr-default .glsr-form input[type="submit"] {
        width: 100% !important;
    }
}


@media (max-width: 575px) {

    .glsr-default {
        padding: 15px !important;
    }

    .glsr-default .glsr-review {
        padding: 18px !important;
    }

    .glsr-default .glsr-form {
        padding: 18px !important;
    }
	
	.fontsize{ font-size:14px!important;}

}

/*-----------------------------------*/







/* =========================================================
   GET IN TOUCH / WELCOME SECTION
========================================================= */

.nxtwelcomeArea {
    width: 100%;
    position: relative;
    display: block;
    clear: both;
    padding: 100px 0 80px;
    background: linear-gradient(
        180deg,
        #f5f9fc 0%,
        #ffffff 100%
    );
}

/* Main Container */
.nxtwelcomeArea .container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}


/* =========================================================
   MAIN WHITE CONTENT BOX
========================================================= */

.nxtwelcomeArea .bginner {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
    background: #ffffff;
    padding: 70px;
    margin: 0 auto;
    border: 1px solid #e9eef3;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 40, 65, 0.12);
}


/* =========================================================
   LEFT CONTACT / FORM COLUMN
========================================================= */

.nxtwelcomeArea .colortext {
    position: relative;
    z-index: 2;
}


/* Form Card */
.nxtwelcomeArea .colortext > div {
    position: relative;
    width: 100%;
    padding: 40px;
    margin-top: -120px;
    margin-bottom: 0;
    background: linear-gradient(
        145deg,
        #00243a 0%,
        #044a74 55%,
        #2989d8 100%
    );
    border: 8px solid #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 36, 58, 0.25);
}


/* Heading */
.nxtwelcomeArea h2 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;

    background: linear-gradient(90deg, #006d77, #0077b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Paragraph */
.nxtwelcomeArea p {
    margin: 0 0 25px;
    /*color: #ffffff;*/
    font-size: 16px;
    line-height: 1.7;
}


/* Strong Text */
.nxtwelcomeArea h2 strong {
    display: block;
    color: var(--blue);
}


/* =========================================================
   CALL BUTTON
========================================================= */

.nxtwelcomeArea .nxtcallarea {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 12px 25px !important;
    color: #ffffff !important;
    background:#f57c00!important;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nxtwelcomeArea .nxtcallarea:hover {
    color: #111 !important;
    background: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); border: 2px solid #f57c00!important;
}


/* =========================================================
   WPForms
========================================================= */

.nxtwelcomeArea .wpforms-container {
    margin: 0 !important;
}

.nxtwelcomeArea .wpforms-field {
    padding: 0 0 18px !important;
}


/* Form Labels */
.nxtwelcomeArea .wpforms-field-label {
    margin-bottom: 7px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}


/* Input / Select / Textarea */
.nxtwelcomeArea input[type="text"],
.nxtwelcomeArea input[type="email"],
.nxtwelcomeArea input[type="tel"],
.nxtwelcomeArea input[type="number"],
.nxtwelcomeArea select,
.nxtwelcomeArea textarea {
    width: 100% !important;
    height: 50px !important;
    padding: 12px 15px !important;
    color: #222 !important;
    background: #ffffff !important;
    border: 1px solid #e1e6eb !important;
    border-radius: 8px !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.nxtwelcomeArea textarea {
    height: 110px !important;
    resize: vertical;
}


/* Input Focus */
.nxtwelcomeArea input:focus,
.nxtwelcomeArea select:focus,
.nxtwelcomeArea textarea:focus {
    border-color: #ff8a00 !important;
    box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.15) !important;
}


/* Submit Button */
.nxtwelcomeArea button[type="submit"],
.nxtwelcomeArea input[type="submit"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    min-height: 48px;
    padding: 12px 28px !important;
    color: #ffffff !important;
    background: linear-gradient(
        135deg,
        #ff8a00,
        #f03f62
    ) !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nxtwelcomeArea button[type="submit"]:hover,
.nxtwelcomeArea input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(240, 63, 98, 0.3);
}

div.wpforms-container-full .wpforms-form button[type=submit]{background-color: #ff8a00!important;
    border: 1px solid #ff8a00!important;
    color: #fff!important;
    font-size: 1em;
    padding: 10px 15px;}

div.wpforms-container-full .wpforms-form .wpforms-field

 {
    padding: 5px 0!important;
    clear: both;
}

/* =========================================================
   RIGHT CONTENT AREA
========================================================= */

.nxtwelcomeArea .col-md-7 {
    position: relative;
    z-index: 1;
    padding-left: 50px;
}


.nxtwelcomeArea .col-md-7 h3 {
    margin-bottom: 15px;
    color: #044a74;
    font-size: 24px;
    line-height: 1.5;
}


.nxtwelcomeArea .col-md-7 h4 {
    margin-bottom: 15px;
    color: #222222;
    font-size: 20px;
    line-height: 1.5;
}


.nxtwelcomeArea .col-md-7 p {
    margin-bottom: 20px;
    color: #555555 !important;
    line-height: 1.8;
}


/* =========================================================
   IMPORTANT FOOTER FIX
========================================================= */

/* Prevent floating/overlapping issue */
.nxtwelcomeArea::after {
    content: "";
    display: table;
    clear: both;
}


/* Make sure section contains its content */
.nxtwelcomeArea,
.nxtwelcomeArea .container-fluid,
.nxtwelcomeArea .bginner {
    box-sizing: border-box;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .nxtwelcomeArea {
        padding: 70px 0;
    }

    .nxtwelcomeArea .bginner {
        display: block;
        padding: 50px 40px;
    }

    .nxtwelcomeArea .col-md-7 {
        padding-left: 0;
        padding-top: 50px;
    }

    .nxtwelcomeArea .colortext > div {
        margin-top: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .nxtwelcomeArea {
        padding: 50px 0;
    }

    .nxtwelcomeArea .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .nxtwelcomeArea .bginner {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .nxtwelcomeArea .colortext > div {
        padding: 25px 20px;
        border-width: 5px;
        border-radius: 15px;
    }

    .nxtwelcomeArea h2 {
        font-size: 26px;
    }

    .nxtwelcomeArea p {
        font-size: 14px;
    }

    .nxtwelcomeArea .col-md-7 {
        padding-top: 35px;
    }

    .nxtwelcomeArea .nxtcallarea {
        width: 100%;
    }
	
 .btn-book {

  margin-bottom:8px; margin-top:8px;
}

}

.colortext h2{ color: #fff!important}
.colortext p{ color: #fff!important}






/* =====================================================
   CONTACT / FORM AREA
===================================================== */

.nxtwelcomeArea .contact {
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Heading */
.nxtwelcomeArea .contact h2 {
    margin: 0 0 35px;
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    color: #0f172a;
}

/* Heading Accent */
.nxtwelcomeArea .contact h2::after {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    margin: 15px auto 0;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        var(--muzaf-orange),
        var(--muzaf-pink)
    );
}

div.wpforms-container-full .wpforms-form .wpforms-field-label{display: block;
    font-weight: 700;
    font-size: 16px;
    float: none;
    line-height: 1.3;
    margin: 0 0 4px 0;
    padding: 0;
    word-break: break-word;
    word-wrap: break-word;
    color: #fff !important;}



/* =========================================
   CONTACT AREA - MODERN PREMIUM DESIGN
========================================= */

.contactArea {
    margin: 0 auto;
    font-size: 17px;
    position: relative;
    width: 100%;
}

/* Contact Heading */
.contactArea h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111;
}

/* Contact Links */
.contactArea a {
    display: inline-block;
    margin-bottom: 15px;
    padding-left: 10px;
    color: #222;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contactArea a:hover {
    color: var(--blue);
    padding-left: 14px;
}

/* Contact Item */
.contactArea > div {
    position: relative;
    padding: 0 0 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

/* Small Accent Line */
.contactArea > div::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 55px;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
}

.contactArea > div:hover::after {
    width: 90px;
}

/* Contact Icon */
.contactArea img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-right: 15px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.contactArea > div:hover img {
    transform: translateY(-3px);
}

/* Contact Text */
.contactArea p {
    line-height: 1.7;
    display: inline-block;
    vertical-align: top;
    padding: 0 0 0 10px;
    margin: 0;
    color: #555;
}

/* Icons */
.contactArea i {
    color: var(--orange);
    font-size: 18px;
    margin-right: 6px;
}

/* Column Links */
.contactArea .col-sm-6 a {
    display: inline-block;
    padding: 5px;
}


/* =========================================
   CONTACT FORM AREA
========================================= */

.contactformArea {
    display: block;
    overflow: hidden;
    padding: 70px 0;
    clear: both;
    width: 100%;
    position: relative;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.45) 100%
        );
}

/* Form Container */
.contactformArea > div {
    width: 900px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
    padding: 45px 50px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* Form Heading */
.contactformArea h2 {
    margin: 0 0 30px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #111;
    position: relative;
}

/* Heading Accent */
.contactformArea h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 12px auto 0;
    background: var(--blue);
    border-radius: 10px;
}


/* =========================================
   FORM INPUTS
========================================= */

.contactformArea input,
.contactformArea textarea,
.contactformArea select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 15px;
    color: #333;
    background: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.contactformArea input:focus,
.contactformArea textarea:focus,
.contactformArea select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contactformArea textarea {
    min-height: 140px;
    resize: vertical;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.contactformArea input[type="submit"],
.contactformArea button[type="submit"] {
    width: auto;
    min-width: 160px;
    padding: 13px 30px;
    border: none;
    border-radius: 30px;
    background: var(--blue);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contactformArea input[type="submit"]:hover,
.contactformArea button[type="submit"]:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .contactArea {
        font-size: 14px;
    }

    .contactArea h3 {
        font-size: 16px;
    }

    .contactArea a {
        font-size: 14px;
    }
	/* Icons */
.contactArea i {
    color: var(--orange);
    font-size: 14px;
    margin-right: 2px;
}

    .contactArea img {
        width: 55px;
        height: 55px;
        padding: 10px;
    }

    .contactformArea {
        padding: 45px 0;
    }

    .contactformArea > div {
        max-width: calc(100% - 24px);
        padding: 30px 20px;
        border-radius: 14px;
    }

    .contactformArea h2 {
        font-size: 24px;
        margin-bottom: 23px;
    }

    .contactformArea input,
    .contactformArea textarea,
    .contactformArea select {
        font-size: 14px;
        padding: 12px 14px;
    }

    .contactformArea input[type="submit"],
    .contactformArea button[type="submit"] {
        width: 100%;
    }
}


/* =====================================================
   WPFORMS
===================================================== */

.nxtwelcomeArea .wpforms-container {
    margin: 0 !important;
}

.nxtwelcomeArea .wpforms-form {
    width: 100%;
}

/* Form Rows */
.nxtwelcomeArea .wpforms-field {
    margin-bottom: 20px !important;
}

/* Labels */
.nxtwelcomeArea .wpforms-form label {
    color: #1e293b !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

/* Inputs */
.nxtwelcomeArea .wpforms-form input[type="text"],
.nxtwelcomeArea .wpforms-form input[type="email"],
.nxtwelcomeArea .wpforms-form input[type="tel"],
.nxtwelcomeArea .wpforms-form input[type="number"],
.nxtwelcomeArea .wpforms-form select,
.nxtwelcomeArea .wpforms-form textarea {
    width: 100% !important;
    height: 52px !important;
    padding: 12px 16px !important;
    border: 1px solid #dbe2ea !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #1e293b !important;
    font-size: 15px !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

/* Textarea */
.nxtwelcomeArea .wpforms-form textarea {
    height: 130px !important;
    min-height: 130px !important;
    resize: vertical;
}

/* Placeholder */
.nxtwelcomeArea .wpforms-form input::placeholder,
.nxtwelcomeArea .wpforms-form textarea::placeholder {
    color: #94a3b8 !important;
}

/* Focus */
.nxtwelcomeArea .wpforms-form input:focus,
.nxtwelcomeArea .wpforms-form select:focus,
.nxtwelcomeArea .wpforms-form textarea:focus {
    border-color: var(--muzaf-orange) !important;
    box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.10) !important;
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.nxtwelcomeArea .wpforms-submit-container {
    margin-top: 10px !important;
}

.nxtwelcomeArea .wpforms-form button[type="submit"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 14px 30px !important;
    border: none !important;
    border-radius: 50px !important;
    background: linear-gradient(
        135deg,
        var(--muzaf-orange),
        var(--muzaf-pink)
    ) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 25px rgba(245, 124, 0, 0.20) !important;
}

.nxtwelcomeArea .wpforms-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(245, 124, 0, 0.28) !important;
}






/* =====================================================
   WPFORMS VALIDATION
===================================================== */

.nxtwelcomeArea .wpforms-form .wpforms-error {
    color: #dc2626 !important;
    font-size: 13px !important;
    margin-top: 5px !important;
}

.nxtwelcomeArea .wpforms-confirmation-container {
    padding: 20px !important;
    border-radius: 10px;
    background: #ecfdf5;
    color: #047857;
    text-align: center;
}


/* =========================================
   COURSE CATEGORY BANNER
========================================= */

.course-category-banner {
    position: relative;
    min-height: 500px;
    width: 100%;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.course-category-banner-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

.course-category-banner .container {
    position: relative;
    z-index: 2;
}

.course-category-banner-content {
    max-width: 650px;
    color: #fff;
}

.banner-eyebrow {
    display: inline-block;

    color: #ff8500;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.course-category-banner-content h1 {
    margin: 0 0 15px;

    font-size: 52px;
    line-height: 1.15;

    font-weight: 800;
}

.course-category-banner-content p {
    max-width: 550px;

    margin: 0;

    color: #fff;

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .course-category-banner {
        min-height: 400px;

        background-position: 65% center;
    }

    .course-category-banner-content {
        padding: 0 15px;
    }

    .course-category-banner-content h1 {
        font-size: 34px;
    }

    .course-category-banner-content p {
        font-size: 15px;
    }

}


/* =========================================
   SINGLE COURSE PAGE
========================================= */

.single-course-page {
    background: #fff;
    padding: 90px 0;
}

.single-course-image {
    background: #f7f9fa;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
}

.single-course-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 15px;
}

.single-course-content {
    padding: 20px;
}

.course-category-label {
    color: #20b86b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.single-course-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #222;
    margin: 15px 0;
}

.course-short-description {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

.course-info-box {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.course-info-item {
    background: #f7f9fa;
    padding: 20px 25px;
    border-radius: 15px;
    min-width: 160px;
}

.course-info-item span {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.course-info-item strong {
    font-size: 22px;
    color: #222;
}

.course-detail-price {
    color: #ff8500 !important;
    font-size: 28px !important;
}

.single-course-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.course-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: linear-gradient(
        90deg,
        #ff8500,
        #ef3e59
    );

    color: #fff;

    padding: 15px 30px;

    border-radius: 35px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}

.course-main-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}


/*------------single-banner----------------*/
.course-single-banner {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.course-single-banner .course-category-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.05)
    );
}

.course-single-banner .container {
    position: relative;
    z-index: 2;
}

.course-category-banner-content {
    max-width: 650px;
    color: #fff;
}

.course-category-banner-content .banner-eyebrow {
    display: block;
    color: #ff8500;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.course-category-banner-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 15px;
}

.course-category-banner-content p {
    font-size: 18px;
    line-height: 1.7;
}

/* =========================================
   BENEFITS
========================================= */

.course-benefits-section {
    background: #f5f9fb;
}

.course-benefit-box {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 20px;
    height: 100%;

    box-shadow: 0 8px 25px rgba(0,0,0,0.06);

    transition: 0.3s ease;
}

.course-benefit-box:hover {
    transform: translateY(-7px);
}

.course-benefit-box i {
    font-size: 35px;
    color: #ff8500;
    margin-bottom: 20px;
}

.course-benefit-box h3 {
    font-size: 21px;
    font-weight: 700;
}

.course-benefit-box p {
    color: #666;
    line-height: 1.7;
}


/* =========================================
   FINAL CTA
========================================= */

.course-final-cta {
    background:
        linear-gradient(
            135deg,
            #152238,
            #2d241e
        );

    padding: 80px 20px;

    text-align: center;

    color: #fff;
}

.course-final-cta h2 {
    font-size: 40px;
    font-weight: 800;
}

.course-final-cta p {
    color: #ddd;
    margin: 15px 0 30px;
}


@media (max-width: 767px) {

    .single-course-content h2 {
        font-size: 34px;
    }

    .course-info-box {
        flex-direction: column;
    }

    .course-info-item {
        width: 100%;
    }

    .course-final-cta h2 {
        font-size: 30px;
    }

}





.courses-page {
    background: #f5f8fa;
}

.section-subtitle {
    color: #1fb86a;
    font-weight: 700;
}

.courses-page h1 {
    font-size: 42px;
    font-weight: 800;
    color: #222;
}

.course-category-section {
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 25px;
    background: linear-gradient(
        135deg,
        #effcf3,
        #ffffff
    );
    border-left: 5px solid #20b96b;
}

.course-category-section:nth-child(even) {
    background: linear-gradient(
        135deg,
        #fff5e6,
        #ffffff
    );
    border-left-color: #ff8500;
}

.course-category-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.course-category-heading i {
    color: #20b96b;
    font-size: 25px;
}

.course-category-heading h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
}

.course-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.course-card:hover {
    transform: translateY(-8px);
}

.course-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.course-price {
    font-size: 32px;
    font-weight: 800;
    color: #252525;
    margin-bottom: 25px;
}

.course-btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 30px;
    background: linear-gradient(
        90deg,
        #ff8500,
        #ef3e59
    );
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.course-btn:hover {
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 767px) {

    .courses-page h1 {
        font-size: 32px;
    }

    .course-category-section {
        padding: 20px 15px;
    }

    .course-category-heading h2 {
        font-size: 23px;
    }
	
	.course-category-banner-content h1 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

}


/* =========================================
   COURSE CATEGORY PAGE
========================================= */

.course-category-page {
    background: #f6f9fb;
    padding: 80px 0;
}

.course-category-page .section-label {
    display: inline-block;
    color: #20b86b;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.course-category-page .section-headline {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.category-description {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}


/* =========================================
   COURSE CARD
========================================= */

.course-list-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.course-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}


/* =========================================
   IMAGE
========================================= */

.course-list-image {
    height: 220px;
    overflow: hidden;
}

.course-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-list-card:hover .course-list-image img {
    transform: scale(1.05);
}


/* =========================================
   CONTENT
========================================= */

.course-list-content {
    padding: 30px;
    text-align: center;
}

.course-list-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
}

.course-list-price {
    font-size: 32px;
    font-weight: 800;
    color: #ff8500;
    margin-bottom: 15px;
}

.course-list-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}


/* =========================================
   BUTTONS
========================================= */

.course-list-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.course-view-btn,
.course-book-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.course-view-btn {
    border: 2px solid #ff8500;
    color: #ff8500;
    background: transparent;
}

.course-view-btn:hover {
    background: #ff8500;
    color: #fff;
}

.course-book-btn {
    background: linear-gradient(
        90deg,
        #ff8500,
        #ef3e59
    );
    color: #fff;
}

.course-book-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .course-category-page {
        padding: 50px 15px;
    }

    .course-category-page .section-headline {
        font-size: 32px;
    }

    .course-list-content {
        padding: 25px 20px;
    }

    .course-list-buttons {
        flex-direction: column;
    }

    .course-view-btn,
    .course-book-btn {
        width: 100%;
    }

}


.strong-view.wpmtst-default .readmore-page {
    margin-top: 20px;
    padding: 1em;
    text-align: center;
    border: 1px solid #E6E6E6;
    display: none!important;
}

/* Strong Testimonials Form Fix */
.wpmtst-submission-form .thm-form-field, 
.wpmtst-submission-form div {
    margin-bottom: 15px !important;
    clear: both;
}

.wpmtst-submission-form label {
    display: inline-block !important;
    font-weight: 600;
    margin-bottom: 5px;
}

.wpmtst-submission-form input[type="text"],
.wpmtst-submission-form input[type="email"],
.wpmtst-submission-form textarea {
    width: 100% !important;
    padding: 10px !important;
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
    box-sizing: border-box !important;
}

div.wpforms-container-full .wpforms-form textarea.wpforms-field-large

 {
    height: 120px!important;
}

.area-block h5 a{
	display: block;
    background: #f57c00;
    border-left: 4px solid #006d77;
    border-radius: 7px;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-decoration: none !important;
    transition: 0.3s ease;
}
.area-block h5 a:hover {
    background: linear-gradient(90deg, #006d77, #0077b6);
    color: #fff;
}
}

.service-areasp .wp-block-paragraph{ color:#111!important;  }
/*.service-areasp div.wpforms-container-full, div.wpforms-container-full .wpforms-form *{ background:#111!important; display:block; padding:20px}*/

.service-areasp div.wpforms-container-full .wpforms-form .wpforms-field-label { color:#111!important;}
.service-areasp div.wpforms-container-full .wpforms-form .wpforms-field
 {    padding:0!important; margin-bottom:10px!important;}

.service-areasp div.wpforms-container .wpforms-form .wpforms-field-layout .wpforms-layout-column-50 {

    padding-bottom: 0 !important; margin-bottom:0!important;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1400px) {
	.nxtBanner .nxtbanner-inner img{width:100%; height:400px!important; object-fit:cover;}
}

@media (max-width: 991px) {

    /* Welcome Section */
    .nxtwelcomeArea {
        padding: 60px 20px;
    }

    .nxtwelcomeArea .bginner {
        padding: 45px 35px;
    }

    /* Banner */
    .nxtBanner {
        height: 250px;
    }

    .bannerText h1 {
        font-size: 38px;
    }

    /* Pricing */
    .pricing-wrapper::before,
    .pricing-wrapper::after {
        display: none;
    }

    .pricing-content {
        width: 100%;
        padding: 40px 25px;
    }

    .vehicle-area {
        position: relative;
        width: 100%;
        height: auto;
    }

    .circle-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        transform: none;
    }

    .circle-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .vehicle-area::before {
        right: 20px;
        bottom: 20px;
    }
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 767px) {

    /* Welcome Section */
    .nxtwelcomeArea {
        padding: 20px 8px;
    }

    .nxtwelcomeArea .bginner {
        padding: 20px 10px;
        border-radius: 10px;
    }

    .nxtwelcomeArea .contact h2 {
        font-size: 25px;
        margin-bottom: 25px;
    }

    /* Banner */
    .nxtBanner {
        height: 200px;
    }

    .bannerText h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }

    /* Contact Form */
    .nxtwelcomeArea .contact-form input[type="text"],
    .nxtwelcomeArea .contact-form input[type="email"],
    .nxtwelcomeArea .contact-form input[type="tel"],
    .nxtwelcomeArea .contact-form select,
    .nxtwelcomeArea .contact-form textarea {
        font-size: 14px !important;
    }

    /* Pricing */
    .pricing-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .pricing-card {
        max-width: 100%;
    }

    .pricing-row {
        gap: 10px;
    }

    .pricing-row span,
    .pricing-row strong {
        font-size: 14px;
    }

    /* Contact Phone */
    .contact-phone {
        font-size: 20px;
    }
	
	.nxtBanner .nxtbanner-inner img{width:100%; height:200px!important; object-fit:cover;}
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    /* Welcome / Pricing */
    .pricing-content {
        padding: 30px 15px;
    }

    .pricing-content h2 {
        font-size: 28px;
    }

    .pricing-card {
        padding: 18px;
    }

    .circle-image {
        max-width: 320px;
    }

    .vehicle-area::before {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 15px;
    }

    /* Header / Logo */
    /*.logo img {
        height: 50px;
    }*/
	
	.logo img {
        max-width: 160px !important; 
        height: auto !important;
    }

    .navbar {
        padding: 10px 0;
    }

    .navbar-toggler {
        padding: 6px 10px;
    }
}

/* =========================================
   MOBILE HORIZONTAL OVERFLOW FIX
========================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* Prevent flex children from overflowing */

.course-info-box,
.course-category-heading,
.course-list-buttons {
    max-width: 100%;
    min-width: 0;
}

.course-info-item {
    min-width: 0;
    max-width: 100%;
}


/* Long text protection */

.course-category-heading h2,
.course-category-banner-content h1,
.course-category-banner-content p,
.single-course-content h2,
.course-card h3,
.course-list-content h3,
.course-list-content p {
    overflow-wrap: anywhere;
}


/* Responsive images */

.course-category-banner img,
.single-course-image img,
.course-list-image img {
    max-width: 100%;
}


/* Mobile */

@media (max-width: 767px) {

    .course-category-banner,
    .course-single-banner,
    .single-course-page,
    .course-category-page,
    .courses-page,
    .course-final-cta {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .course-category-heading {
        min-width: 0;
    }

    .course-category-heading h2 {
        min-width: 0;
        max-width: 100%;
    }

    .course-info-box {
        width: 100%;
        max-width: 100%;
    }

    .course-info-item {
        width: 100%;
        min-width: 0;
    }

    .course-list-buttons {
        width: 100%;
        max-width: 100%;
    }
}
