/* ==============================
   Project: Way-Fare
   Main CSS
================================= */

/* --font style start--- */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Black.woff2') format('woff2'),
        url('../fonts/Inter-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'),
        url('../fonts/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.woff2') format('woff2'),
        url('../fonts/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
        url('../fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
        url('../fonts/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.woff2') format('woff2'),
        url('../fonts/Montserrat-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.woff2') format('woff2'),
        url('../fonts/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Thin.woff2') format('woff2'),
        url('../fonts/Montserrat-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}


/* ---font style end--- */


:root {
        --primary-color:#00AAA9;
      --secondary-color:#003938;
      --text-color:#4E6C6A;
      --white:#ffffff;
      --black:#000000;
      --border-color:#DCE7E5;
      --gray-color:#727272;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
    font-family: "Inter", sans-serif;
  font-weight: 400;
  background-color: var(--white);
  color: var(--text-color);
  font-size: 16px;
  line-height: 20px;
  overflow-x: hidden;
}
a{
    text-decoration: none;
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
}
img {
  max-width: 100%;
  height: auto;
}

/* ---footer section start--- */
/* =========================================
   FOOTER
========================================= */

.site-footer {
    background-color: var(--white);
    padding: 50px 0 18px;
    border-top: 1px solid var(--border-color);
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}


/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand {
    width: 34%;
    max-width: 360px;
}

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

.footer-logo img {
    display: block;
    width: 150px;
    height: auto;
}

.footer-description {
    max-width: 330px;
    margin: 0 0 16px;
    color: var(--black);
    font-size: 14px;
    line-height: 22px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-contact a {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
    flex: 0 1 25%;
}

.footer-title {
    margin: 0 0 20px;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu a {
    color: var(--black);
    font-size: 14px;
    line-height: 22px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-color);
}


/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(0, 81, 81, 0.2);
    border-radius: 50%;
    color: var(--secondary-color);
    background-color: var(--white);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    margin-top: 42px;
}

.footer-line {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
}

.footer-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 28%;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-bottom-content {
    padding-top: 17px;
}

.footer-bottom-content p {
    margin: 0;
    color: var(--gray-color);
    font-size: 12px;
}
/* --footer section end--- */

/* ---above footer section start--- */
.talk-section {
    background: linear-gradient(90deg, #00AAA9 0%, #005151 100%);
    padding: 27px 0 28px;
}

.talk-section__inner {
    min-height: 65px;
    gap: 30px;
}

.talk-section__content {
    flex: 1;
}

.talk-section__title {
    margin: 0;
    color: #ffffff;
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
}

.talk-section__actions {
    flex-shrink: 0;
    gap: 13px;
}

.talk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 24px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.talk-btn--call {
    background: #ffffff;
    color: var(--secondary-color);
}

.talk-btn--call:hover {
    background: #f2f2f2;
    color: var(--secondary-color);
}

.talk-btn--email {
    
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
    background: transparent;
}

.talk-btn--email:hover {
    background: #ffffff;
    color: var(--secondary-color);
}
/* ---above footer sction end--- */

/* --header section start--- */
/* ========================================
   Header
======================================== */

.site-header {
    position: relative;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.site-header .navbar {
    min-height: 78px;
    padding: 0;
}

.site-header .container {
    min-height: 78px;
}

/* Logo */

.site-logo {
    max-width: 135px;
    height: auto;
    display: block;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

/* Navigation */

.site-header .navbar-nav {
    gap: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.site-header .nav-link {
    color: #0F2B2A;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 10px 20px !important;
    transition: color 0.3s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--primary-color);
}

/* Services Dropdown */

.site-header .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 2px;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.site-header .dropdown-menu {
    border: 0;
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}

.site-header .dropdown-item {
    color: #0F2B2A;
    font-size: 14px;
    padding: 9px 18px;
}

.site-header .dropdown-item:hover {
    color: var(--primary-color);
    background: #f4ffff;
}

/* Call Button */

.header-call-btn {
    width: 146px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: var(--primary-color);
    color: #ffffff;

    border-radius: 13px;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
    box-shadow: 0px 12px 28px -10px #00AAA98C;
    transition: all 0.3s ease;
}

.header-call-btn i {
    font-size: 13px;
}

.header-call-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* --header section end--- */
/* ---banner section start--- */
/* =========================================
   HERO BANNER
========================================= */

.hero-banner {
    position: relative;
    /* overflow: hidden; */
    background-color: var(--white);
}

.hero-banner__inner {
    position: relative;
    min-height: 100vh;
    /* overflow: hidden; */
}


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

.hero-banner__image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-banner__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


/* =========================================
   HERO CONTENT CONTAINER
========================================= */

.hero-banner__container {
    position: relative;
    z-index: 3;

    /*
     * Bootstrap container is still used,
     * but the content is aligned to the
     * left side of the hero.
     */
}


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

.hero-banner__content {
    width: 50%;
    max-width: 550px;
    /* padding-top: 70px; */
    /* padding-bottom: 180px; */
    height: 85vh;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}


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

.hero-banner__title {
    margin: 0 0 22px;

    color: var(--secondary-color);

    font-size: 60px;
    line-height: 70px;
    font-weight: 600;
    letter-spacing: -1px;
}

.hero-banner__title span {
    display: block;
    color: var(--primary-color);
}


/* =========================================
   DESCRIPTION
========================================= */

.hero-banner__description {
    max-width: 500px;

    margin: 0 0 28px;

    color: var(--text-color);

    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
}


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

.hero-banner__buttons {
    gap: 10px;
    margin-bottom: 38px;
}

.hero-btn {


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

    gap: 12px;

    padding: 17px 22px;

    border-radius: 10px;

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

    text-decoration: none;

    transition: all 0.3s ease;
}


/* Primary */

.hero-btn--primary {
    min-width: 165px;

    background-color: var(--primary-color);
    color: var(--white);

    box-shadow: 0 8px 18px rgba(0, 170, 169, 0.20);
}

.hero-btn--primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}


/* Secondary */

.hero-btn--secondary {
    min-width: 128px;

    border: 2px solid var(--secondary-color);

    background-color: transparent;
    color: var(--secondary-color);
}

.hero-btn--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}


/* =========================================
   FEATURES
========================================= */

.hero-banner__features {
    gap: 42px;
}

.hero-feature {
    display: flex;
    flex-direction: column;
}

.hero-feature strong {
    margin-bottom: 5px;

    color: var(--secondary-color);

    font-size: 26px;
    line-height: 1;
    font-weight: 600;
}

.hero-feature span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
}


/* =========================================
   BOTTOM SERVICE CARDS
========================================= */

.hero-services {
    width: 100%;
    justify-content: space-between;
    gap: 40px;
}

.hero-service {
    width: 230px;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px 13px;

    background-color: rgba(255, 255, 255, 0.78);

    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 15px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

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

    text-align: center;
}

.hero-service span {
    color: var(--secondary-color);

    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
}
.hero-service:hover {
    background-color: rgba(0, 170, 169, 0.20);
    border-color: rgba(0, 170, 169, 0.35);

    box-shadow: 0 8px 25px rgba(0, 170, 169, 0.12);

    transform: translateY(-3px);
}

/* =========================================
   DECORATIVE CURVE
========================================= */

.hero-banner__inner::after {
    content: "";

    position: absolute;

    z-index: 1;

    left: 0;
    top: 70%;

    width: 100%;
    height: 100%;

  background-image: url(../images/line-2.png);
  background-size: 100%;
  background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.5;
}

.hero-banner__container{
    height: 100vh;
}
/* ---banner section end--- */
/* ---about section start--- */
/* =========================================
   ABOUT WAYFARE SECTION
========================================= */

.about-section {
    position: relative;
    padding: 70px 0;
    z-index: 1;
    /* background-color: var(--white); */
}

.about-section__wrapper {
    gap: 50px;
}


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

.about-section__image {
    flex: 0 0 40%;
    max-width: 40%;
    border-radius: 20px;
    overflow: hidden;
}

.about-section__image img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: 14px;
}


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

.about-section__content {
    flex: 1 1 auto;
    min-width: 0;
}


/* =========================================
   COMMON SECTION LABEL
========================================= */

.section-label {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 14px;
}

.section-label span {
    display: block;
    width: 22px;
    height: 2px;

    background-color: var(--primary-color);
}

.section-label small {
    color: var(--secondary-color);

    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    font-family: 'Montserrat';
    letter-spacing: 2px;
}


/* =========================================
   COMMON SECTION TITLE
========================================= */

.section-title {
    margin: 0;

    color: var(--secondary-color);

    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
    letter-spacing: -0.5px;
}


/* =========================================
   ABOUT DESCRIPTION
========================================= */

.about-section__description {


    margin: 16px 0 20px;

    color: var(--text-color);

    line-height: 1.55;
    text-align: justify;
}


/* =========================================
   BENEFIT LIST
========================================= */

.about-section__list {
    display: flex;
    flex-direction: column;
    gap: 11px;

    margin: 0 0 25px;
    padding: 0;

    list-style: none;
}

.about-section__list li {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #0F2B2A;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}


/* Check icon */

.about-check {
    flex: 0 0 19px;

    width: 19px;
    height: 19px;

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

    border-radius: 50%;

    background-color: var(--primary-color);
    color: var(--white);

    font-size: 9px;
}




/* ---about section end--- */


/* ---service section start-- */
/* =========================================
   SERVICES SECTION
========================================= */

.services-section {
    position: relative;
    overflow: hidden;

    padding: 80px 0;

        background: rgba(255, 255, 255, 0.2);
   
}


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

.services-section__heading {
    max-width: 700px;
    margin: 0 auto 45px;
}

.services-section__heading .section-title {
    margin-bottom: 12px;
}


/* =========================================
   COMMON SECTION DESCRIPTION
========================================= */

/*
   Use this same class for About Wayfare
   and other sections as well.
*/

.section-description {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-color);
    line-height: 1.55;
}


/* =========================================
   SERVICES LIST
========================================= */

.services-section__list {
    gap: 18px;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {
    flex: 0 0 calc((100% - 36px) / 3);

    min-height: 230px;

    display: flex;
    flex-direction: column;

    padding: 32px 28px;

    background-color: rgba(255, 255, 255, 0.92);

  border: 1px solid var(--border-color);
    border-radius: 20px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}


/* =========================================
   SERVICE ICON
========================================= */

.service-card__icon {
    width: 56px;
    height: 56px;

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

    margin-bottom: 13px;

    border-radius: 15px;

    background-color: #E4F4F3;

    color: var(--secondary-color);

    font-size: 20px;
}


/* =========================================
   SERVICE TITLE
========================================= */

.service-card__title {
    margin: 0 0 10px;

    color: var(--secondary-color);

    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
}


/* =========================================
   SERVICE DESCRIPTION
========================================= */

.service-card__description {
    max-width: 310px;

    margin: 0;

    color: var(--text-color);

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


/* =========================================
   SERVICE LINK
========================================= */

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: auto;
    padding-top: 18px;

    color: var(--secondary-color);

    font-size: 15px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}

.service-card__link i {
    font-size: 10px;

    transition: transform 0.3s ease;
}

.service-card__link:hover {
    color: var(--primary-color);
}

.service-card__link:hover i {
    transform: translateX(4px);
}


/* =========================================
   CARD HOVER
========================================= */

.service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(0, 170, 169, 0.35);

    background-color: var(--white);

    box-shadow: 0 12px 30px rgba(0, 57, 56, 0.08);
}

.service-card:hover .service-card__icon {
    background-color: var(--primary-color);
    color: var(--white);
}


/* =========================================
   DECORATIVE CURVE
========================================= */

.services-section::after {
    content: "";

    position: absolute;

    left: 0;
    top: 20%;

    width: 100%;
    height: 100%;

   background-image: url(../images/line.png);
   background-size: 100%;
   background-repeat: no-repeat;
    pointer-events: none;
    filter: blur(5px);
}

.services-section .container {
    position: relative;
    z-index: 2;
}
/* ---service section end--- */

/* ---why choose us section start--- */
/* =========================================
   WHY CHOOSE US
========================================= */

.why-choose-section {
    position: relative;

    overflow: hidden;

    padding: 150px 0;

    background-color: var(--secondary-color);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    /*
     * PARALLAX EFFECT
     */
    background-attachment: fixed;
}


/* =========================================
   DARK TEAL OVERLAY
========================================= */

.why-choose-section__overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(133.33deg, #005151 0%, #003938 100%);


    opacity: 0.9;

    pointer-events: none;
}


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

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

.why-choose-section__inner {
    width: 100%;
}


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

.why-choose-section__heading {
    max-width: 650px;

    margin-bottom: 45px;
}


/* =========================================
   LIGHT SECTION LABEL
========================================= */

.section-label--light small {
    color: var(--white);
}

.section-label--light span {
    background-color: var(--white);
}


/* =========================================
   LIGHT SECTION TITLE
========================================= */

.section-title--light {
    color: var(--white);
}


/* =========================================
   LIGHT DESCRIPTION
========================================= */

.section-description--light {
    margin-top: 15px;

    color: rgba(255, 255, 255, 0.75);
}


/* =========================================
   FEATURE CARDS
========================================= */

.why-choose-section__cards {
    gap: 30px;
}


/* =========================================
   WHY CARD
========================================= */

.why-card {
    flex: 1 1 0;

    display: flex;
    flex-direction: column;

    padding: 28px 24px;

    background-color: rgba(0, 57, 56, 0.6);

   border: 1px solid var(--color-white-14, #FFFFFF24);
    border-radius: 18px;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================
   CARD LABEL
========================================= */

.why-card__label {
    margin-bottom: 10px;

    color: var(--primary-color);

    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
}


/* =========================================
   CARD TITLE
========================================= */

.why-card__title {
    margin: 0 0 8px;

    color: var(--white);
    font-family: 'Montserrat';
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
}


/* =========================================
   CARD DESCRIPTION
========================================= */

.why-card__description {
    margin: 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;
    line-height: 22px;
}


/* =========================================
   CARD HOVER
========================================= */

.why-card:hover {
    transform: translateY(-4px);

    background-color: rgba(0, 170, 169, 0.20);

    border-color: rgba(0, 170, 169, 0.45);
}

.why-card:hover .why-card__label {
    color: var(--white);
}
/* ---why choose us section end--- */

/* ---Your journey with us start--- */
/* =========================================
   JOURNEY SECTION
========================================= */

.journey-section {
    position: relative;
    overflow: hidden;

    padding: 80px 0 70px;

    background-color: var(--white);
}


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

.journey-section__heading {
    max-width: 650px;

    margin: 0 auto 65px;
}

.journey-section__heading .section-title {
    margin-bottom: 12px;
}

.journey-section__heading .section-description {
    max-width: 520px;
}


/* =========================================
   JOURNEY STEPS
========================================= */

.journey-steps {
    position: relative;

    width: 100%;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================
   DOTTED CONNECTING LINE
========================================= */

.journey-steps::before {
    content: "";

    position: absolute;

    top: 33px;
    left: 0;
    right: 0;

    border-top: 2px dotted var(--primary-color);

    opacity: 0.75;
}


/* =========================================
   JOURNEY STEP
========================================= */

.journey-step {
    position: relative;
    z-index: 1;

    flex: 1 1 0;
    min-width: 0;
}


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

.journey-step__number {
    width: 68px;
    height: 68px;

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

    margin-bottom: 17px;

    background-color: var(--white);

    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.journey-step__number span {
    color: var(--secondary-color);

    font-size: 20px;
    line-height: 1;
    font-weight: 600;
}


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

.journey-step__content {
    max-width: 220px;
}


/* =========================================
   STEP TITLE
========================================= */

.journey-step__title {
    margin: 0 0 7px;

    color: var(--secondary-color);

    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}


/* =========================================
   STEP DESCRIPTION
========================================= */

.journey-step__description {
    margin: 0;

    color: var(--text-color);

    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

/* ---Your journey with us end--- */

/* --blog section start--- */
/* =========================================
   BLOG SECTION
========================================= */

.blog-section {
    position: relative;
    /* overflow: hidden; */

    padding: 75px 0 80px;

    background-color: var(--white);
    z-index: 1;
}

.blog-section::after{
    content: "";

    position: absolute;

    z-index: -1;

    left: 0;
    top: 55%;

    width: 100%;
    height: 100%;

  background-image: url(../images/line.png);
  background-size: 100%;
  background-repeat: no-repeat;
    pointer-events: none;
    opacity: 1; 
}
/* =========================================
   SECTION HEADER
========================================= */

.blog-section__header {
    margin-bottom: 42px;
}

.blog-section__heading .section-label {
    margin-bottom: 14px;
}

.blog-section__heading .section-title {
    margin: 0;
}


/* =========================================
   VIEW MORE
========================================= */

.view-more-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    text-decoration: none;
    color: var(--secondary-color);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    font-family: 'Montserrat';
    letter-spacing: 2px;
}



.view-more-link > span {
    width: 22px;
    height: 2px;
    background-color: var(--primary-color);
}

.view-more-link:hover{
    color: var(--primary-color);
}
/* =========================================
   BLOG SLIDER
========================================= */

.blog-slider {
    margin: 0 -10px;
}

.blog-slider .slick-slide {
    padding: 0 10px;
}


/* =========================================
   BLOG CARD
========================================= */

.blog-card {
    overflow: hidden;

    background-color: var(--white);

    border: 1px solid var(--border-color);
    border-radius: 20px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.blog-card:hover img{
    transform: scale(1.2);
}


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

.blog-card__image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.blog-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.04);
}


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

.blog-card__content {
    min-height: 138px;

    display: flex;
    flex-direction: column;

    padding: 22px 20px 20px;
}


/* =========================================
   CATEGORY
========================================= */

.blog-card__category {
    display: block;

    margin-bottom: 11px;

    color: var(--secondary-color);
    font-family: 'Montserrat';
    font-size: 12px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 1.4px;
}


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

.blog-card__title {
    margin: 0;

    color: var(--secondary-color);

    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}


/* =========================================
   READ ARTICLE
========================================= */

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: auto;
    padding-top: 18px;

    color: var(--secondary-color);

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

    text-decoration: none;
}

.blog-card__link i {
    font-size: 9px;

    transition: transform 0.3s ease;
}

.blog-card__link:hover {
    color: var(--primary-color);
}

.blog-card__link:hover i {
    transform: translateX(4px);
}
/* --blog section end--- */
/* ---faq section start-- */
/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
    position: relative;
    overflow: hidden;

    padding: 75px 0 80px;

    /* background-color: var(--white); */
    z-index: 1;
}


/* =========================================
   FAQ WRAPPER
========================================= */

.faq-section__wrapper {
    align-items: flex-start;

    gap: 60px;
}


/* =========================================
   FAQ INTRO
========================================= */

.faq-section__intro {
    flex: 0 0 calc(38% - 30px);
    max-width: 400px;
}

.faq-section__intro .section-title {
    margin-bottom: 14px;
}

.faq-section__intro .section-description {
    margin: 0 0 22px;
}





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

.faq-section__content {
    flex: 1 1 0;
    min-width: 0;
}


/* =========================================
   BOOTSTRAP ACCORDION
========================================= */

.faq-accordion {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 10px;
}


/* =========================================
   ACCORDION ITEM
========================================= */

.faq-item {
    overflow: hidden;

    background-color: #F6F4EF;

    border: 1px solid var(--border-color) !important;
    border-radius: 16px !important;
}


/* =========================================
   ACCORDION BUTTON
========================================= */

.faq-item .accordion-button {
    min-height: 66px;

    display: flex;
    align-items: center;

    padding: 0 18px;

    background-color: transparent;

    color: var(--secondary-color);

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

    box-shadow: none;
}


/*
   Remove Bootstrap default
   background when opened.
*/

.faq-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--secondary-color);

    box-shadow: none;
}


/* =========================================
   BOOTSTRAP ARROW
========================================= */

.faq-item .accordion-button::after {
    width: 26px;
    height: 26px;

    flex: 0 0 26px;

    margin-left: auto;

    background-image: none;

    content: "+";

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

    border: 1px solid var(--border-color);
    border-radius: 50%;

    color: var(--secondary-color);
    background-color: var(--white);
    font-size: 18px;
    font-weight: 400;

    transform: none;
}

.faq-item .accordion-button:not(.collapsed)::after {
    content: "−";

    background-color: var(--primary-color);
    border-color: var(--primary-color);

    color: var(--white);

    transform: none;
}


/* =========================================
   ACCORDION BODY
========================================= */

.faq-item .accordion-collapse {
    border-top: 0;
}

.faq-item .accordion-body {
    padding: 0 18px 18px;

    color: var(--text-color);

}



/* ---faq section end--- */


/* --enquiry modal start-- */
/* =========================================
   FLOATING ENQUIRY WIDGET
========================================= */

.enquiry-widget {
    position: fixed;

    top: 50%;
    right: 0;

    z-index: 1050;

    transform: translateY(-50%);
}


/* =========================================
   ENQUIRE TAB
========================================= */

.enquiry-widget__tab {
    position: absolute;

    top: 50%;
    right: 0;

    width: 48px;
    height: auto;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    padding: 16px 8px;

    border: 0;
    border-radius: 12px 0 0 12px;

    background-color: var(--primary-color);
    color: var(--white);

    cursor: pointer;

    transform: translateY(-50%);

    box-shadow: 0 6px 20px rgba(0, 170, 169, 0.25);

    transition:
        background-color 0.3s ease,
        width 0.3s ease;
}


/* Vertical text */

.enquiry-widget__tab span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);

    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}


/* Icon */

.enquiry-widget__tab i {
    font-size: 16px;
     display: inline-block;
    transform: rotate(-90deg);
}


/* Hover */

.enquiry-widget__tab:hover {
    background-color: var(--secondary-color);
}


/* =========================================
   FORM WRAPPER
========================================= */

.enquiry-widget__form {
    position: absolute;

    right: 55px;
    top: 50%;

    width: 345px;

    transform: translateY(-50%);
}


/* =========================================
   ENQUIRY CARD
========================================= */

.enquiry-card {
    overflow: hidden;

    background-color: var(--white);
    border-radius: 20px;

    box-shadow: 0 15px 45px rgba(0, 57, 56, 0.18);
}


/* =========================================
   CARD HEADER
========================================= */

.enquiry-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 16px 12px;

   background: linear-gradient(90deg, #009F9C 0%, #003938 100%);


    color: var(--white);
}


.enquiry-card__header h3 {
    margin: 0 0 3px;

    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}


.enquiry-card__header p {
    margin: 0;

    color: rgba(255, 255, 255, 0.85);

    font-size: 14px;
    line-height: 1.3;
}


/* =========================================
   CLOSE BUTTON
========================================= */

.enquiry-card__close {
    width: 22px;
    height: 22px;

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

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;

    background: transparent;
    color: var(--white);

    font-size: 9px;

    cursor: pointer;
}


/* =========================================
   QUICK ACTIONS
========================================= */

.enquiry-card__actions {
    gap: 8px;

    padding: 15px;
    border: 1px solid #EEEEEE
}


.enquiry-card__action {
    flex: 1;

    padding: 8px 20px;

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

    gap: 7px;

    border-radius: 10px;

    background-color: #E4F4F3;
    color: var(--secondary-color);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}


.enquiry-card__action:hover {
    background-color: var(--primary-color);
    color: var(--white);
}


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

.enquiry-form {
    padding: 7px 14px 14px;
}


.enquiry-form__group {
    margin-bottom: 12px;
}


.enquiry-form__group label {
    display: block;

    margin-bottom: 4px;

    color: var(--black);

    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}


.enquiry-form .form-control {
    /* min-height: 29px; */

    padding: 10px 15px;

    border: 1px solid #D9D9D9;
    border-radius: 10px;

    background-color: #F8F8F8;

    color: var(--secondary-color);

    font-size: 12px;
    box-shadow: none;
 
}


.enquiry-form .form-control:focus {
    border-color: var(--primary-color);
     background-color: var(--white);
    box-shadow: 0 0 0 2px rgba(0, 170, 169, 0.10);
}


.enquiry-form .form-control::placeholder {
    color: #444444;
}


.enquiry-form textarea.form-control {
    /* min-height: 55px; */

    resize: none;
}


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

.enquiry-form__submit {
    width: 100%;
    padding: 10px 25px;

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

    gap: 8px;

    margin-top: 3px;

    border: 0;
    border-radius: 10px;

    background-color: var(--primary-color);
    color: var(--white);

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

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}


.enquiry-form__submit:hover {
    background-color: var(--secondary-color);

    transform: translateY(-1px);
}


.enquiry-form__submit i {
    font-size: 8px;
}
/* --- enquiry modal end---*/


.mob-services-view{
    display: none;
}