@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:wght@400;500;600;700;800;900&display=swap");
/* CSS Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html {
    /* Set a base font size to make responsive units easier */
    font-size: 100%;
    /* 16px default */
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* @media (width > 700px) {
	html {
		padding-top: 5.2rem;
	}
} */

html {
    /* padding-top: 5rem; */
    padding-top: 5.4rem;
    /* toggle this with newsbanner  */
    /* padding-top: 8rem; */
    /* padding-top: 6.4rem; */
}

@media (width < 700px) {
    html {
        padding-top: 4rem;
        /* padding-top: 7rem; */
    }
}

body {
    /* padding-top: 5rem; */
    margin: 0;
    font-family: sans-serif;
    line-height: 1.5;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.4;
    color: #121212;
    font-family: "Montserrat", sans-serif;
}

h1 {
    font-size: 32px;
    text-wrap: wrap;
    text-align: center;
    color: #333333;
    /*padding-block: 1.2rem;*/
}

h2 {
    /* padding-block: 1rem; */
    margin: 0;
    font-size: 26px;
    color: #473fa8;
    /* padding-block: 1.2rem; */
}

h3 {
    font-size: 22px;
    color: #3a322d;
    /* margin-top: 1rem; */
    /* padding-block: 1rem; */
}

h2+h3 {
    margin-top: 0;
    padding-top: 0;
}

p {
    text-wrap: pretty;
    line-height: 1.6;
    font-size: 16px;
    /* font-family: "Poppins", sans-serif; */
    padding-block: 4px;
}

input {
    border: none;
    outline: none;
}

button {
    outline: none;
    border: none;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #1e90ff;
    cursor: pointer;
}

/* header styles start */

.custom-header {
    position: fixed;
    top: 6%;
    left: 10%;
    width: 80%;
    border-radius: 100px;
    padding: 16px 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
}

/* Expanded Header State */

.custom-header.scrolled {
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(98deg, #473fa8, #d8d1e2);
}

/* Optional: Styling for Children */

.custom-header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.custom-header ul {
    list-style-type: none;
}

.custom-logo img {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
    transition: filter 0.3s ease;
}

.custom-logo img:hover {
    filter: drop-shadow(0 0 15px rgba(240, 203, 123, 0.6));
}

.custom-header .navigation {
    flex: 1;
    text-align: center;
    font-size: 1rem;
}

.custom-header .actions {
    font-size: 1rem;
}

.custom-logo img {
    max-width: 150px;
}

/* Navigation Menu */

.custom-nav {
    flex: 1;
    margin-left: 32px;
}

.custom-menu {
    display: flex;
    align-items: center;
    /* gap: 20px; */
}

.custom-menu li {
    position: relative;
}

.custom-menu>li>p,
.custom-menu>li>a {
    font-size: 16px;
    font-weight: bold;
    color: #e1dbdb;
    padding: 8px 6px;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.custom-header.scrolled .custom-menu>li>a {
    padding: 8px 12px;
}

.custom-menu>li>p:hover,
.custom-menu>li>a:hover {
    color: transparent;
    background: linear-gradient( 45deg, #d39f51, #e5b566, #f0cb7b, #f8e292, #fff7a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(240, 203, 123, 0.5);
}

/* Dropdown Menu */

.custom-dropdown {
    position: relative;
}

.custom-submenu {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    /* Sticks to the bottom of the header */
    transform: translateY(100%);
    background: #fff;
    border: 1px solid #005b52;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    /* padding: 8px 0; */
    min-width: 200px;
    /* Ensure a minimum width */
}

.custom-dropdown:hover .custom-submenu {
    display: grid;
}

.custom-submenu li {
    position: relative;
    /* padding: 8px 16px; */
}

.custom-submenu a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.custom-submenu a:hover {
    background: #f0f0f0;
}

/* Sub-submenu */

.custom-sub-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    border: 1px solid #005b52;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* padding: 8px 0; */
    min-width: 200px;
}

.custom-submenu li:hover .custom-sub-submenu {
    display: grid;
}

/* Submenu Styling for Better UI */

.custom-submenu li {
    border-bottom: 1px solid #eee;
}

.custom-submenu li:last-child {
    border-bottom: none;
}

.custom-submenu a {
    position: relative;
    padding: 12px 16px;
    font-size: 14px;
    display: block;
    color: #333;
    background: transparent;
    text-decoration: none;
    z-index: 1;
    transition: color 0.3s ease;
    overflow: hidden;
}

.custom-submenu a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient( circle at top, #473fa8 0%, #473fa8 30%, #473fa8 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease, color 250ms ease;
}

.custom-submenu a:hover {
    color: white;
}

.custom-submenu a:hover::before {
    opacity: 1;
}

/* Actions Section */

.custom-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 9px;
}

.custom-contact {
    font-size: 14px;
    font-weight: bold;
    color: #473fa8;
    background: none;
    padding: 8px 16px;
    border: 1px solid #473fa8;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: linear-gradient( 45deg, #473fa8, #473fa8, #473fa8, #473fa8, #473fa8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    /* text-shadow: 0 1px 2px rgb(240, 203, 123,0.3); */
    text-wrap: nowrap;
    transform: translateY(-4px);
}

/* Search Icon */

.custom-search svg {
    --call-icon-size: 24px;
    width: var(--call-icon-size);
    height: var(--call-icon-size);
    cursor: pointer;
    color: #ffffff;
    transition: color 0.3s ease;
    margin-right: 6px;
    transform: translate(0px, 6px);
}

.custom-search svg:hover {
    scale: 1.1;
}

.mobile-hamburger {
    display: none;
    grid-template-columns: 1fr;
    width: 26px;
    gap: 4px;
    transform: translate(0px, 6px);
    margin-left: 6px;
}

.mobile-hamburger span {
    height: 2px;
    background: linear-gradient(-45deg, #d39f51, #e5b566, #f0cb7b, #f8e292);
    border-radius: 8px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-hamburger.active span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
    transition: transform 0.3s ease;
}

.mobile-hamburger.active span:nth-child(2) {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mobile-hamburger.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
    transition: transform 0.3s ease;
}

/* Responsive Design */

@media (max-width: 1160px) {
    .custom-header {
        padding: 10px 22px;
        top: 4%;
    }
    .custom-logo img {
        max-width: 100px;
    }
    .custom-search svg {
        --call-icon-size: 20px;
        display: inline-block;
    }
    .custom-nav {
        display: none;
    }
    .custom-contact {
        display: none;
    }
    .custom-search {
        display: flex;
        align-items: center;
    }
    .mobile-hamburger {
        display: grid;
    }
}

/* Mobile Menu Container */

div.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    background: linear-gradient(296deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    backdrop-filter: blur(12px);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 1rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    div.mobile-menu {
        width: 75%;
    }
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

div.mobile-menu .custom-logo {
    position: relative;
    left: 10%;
    margin-bottom: 2rem;
    width: fit-content;
}

/* Active Menu State */

div.mobile-menu.active {
    left: 0;
}

/* Main Menu */

nav.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav.mobile-nav ul.main-menu>li {
    padding: 12px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

nav.mobile-nav ul.main-menu>li a,
nav.mobile-nav ul.main-menu>li span.has-submenu,
nav.mobile-nav ul.main-menu>li span.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 2rem;
    color: white;
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
}

.dropdown-toggle {
    color: white !important;
}

.dropdown-toggle .chevron-down {
    transition: transform 0.3s ease;
    stroke: white;
}

.dropdown-toggle.active .chevron-down {
    transform: rotate(180deg);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0.5rem;
}

.mobile-dropdown.active {
    max-height: 500px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.5rem 2rem;
}

.dropdown-grid a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    font-size: 14px;
    transition: background-color 0.2s ease;
    border-radius: 4px;
}

.dropdown-grid a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Projects Submenu Unique Styles */

.projects-submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.projects-dropdown-item {
    padding: 12px;
}

.projects-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-left: 2rem; */
    color: white !important;
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.532);
}

.projects-chevron-down {
    transition: transform 0.3s ease;
    stroke: white;
}

.projects-dropdown-toggle.active .projects-chevron-down {
    transform: rotate(180deg);
}

.projects-mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0.5rem;
}

.projects-mobile-dropdown.active {
    max-height: 500px;
}

.projects-dropdown-heading {
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 0.5rem 2rem 0.25rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
}

.projects-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.5rem 2rem;
}

.projects-dropdown-grid a {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    font-size: 14px;
    transition: background-color 0.2s ease;
    border-radius: 4px;
}

.projects-dropdown-grid a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.projects-view-all-item {
    padding: 12px 2rem;
}

.projects-view-all-btn {
    display: block;
    width: 100%;
    color: white !important;
    text-decoration: none;
    text-align: center;
    padding: 12px;
    font-size: 15px;
    border: 1px solid white;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.projects-view-all-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Submenu Container */

.mobile-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(296deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    backdrop-filter: blur(12px);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 4rem;
}

/* Active Submenu */

div.mobile-submenu.active {
    left: 0;
}

/* Submenu Header */

.mobile-submenu .submenu-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    top: -4%;
}

.mobile-submenu .submenu-header span {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.6;
}

.mobile-submenu .submenu-header .back-button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

/* Submenu Items */

.mobile-submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-submenu ul>li {
    padding: 15px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.mobile-submenu ul>li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 2rem;
    color: white;
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
}

.projects-submenu-list a {
    margin-left: 0 !important;
}

/* Phone Number Style */

nav.mobile-nav ul.main-menu>li a.mobile-phone {
    font-size: 16px;
    color: white;
    display: flex;
    align-items: center;
}

nav.mobile-nav ul.main-menu>li a.mobile-phone i {
    margin-right: 8px;
}

/* Phone Button */

div.mobile-menu nav.mobile-nav ul li a.mobile-phone {
    border: 1px solid #ffffff;
    border-radius: 20px;
    padding: 12px 24px !important;
    font-size: 17px;
    margin-top: 20px;
    margin-left: 0;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow: 0 0 20px rgba(240, 203, 123, 0.2);
    display: block;
}

/* Scrollbar Styling */

div.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

div.mobile-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

div.mobile-menu::-webkit-scrollbar-thumb {
    background: rgba(240, 203, 123, 0.5);
    border-radius: 3px;
}

/* Main Menu Default State */

nav.mobile-nav ul.main-menu {
    opacity: 1;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 999;
}

/* Hide Main Menu When Submenu is Active */

nav.mobile-nav ul.main-menu.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Submenu Default State */

.mobile-submenu {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, left 0.3s ease;
}

/* Submenu Active State */

div.mobile-submenu.active {
    opacity: 1;
    pointer-events: auto;
}

.search-container {
    display: none;
    width: max-content;
    background: transparent;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    left: 0%;
    right: 0%;
    top: 30px;
    z-index: 1000;
    transform: translateY(80px);
    margin-inline: auto;
    min-width: 47%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 14px;
}

.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

input.search-input {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: #000000;
}

input.search-input::placeholder {
    color: #e1dbdb;
}

.search-submit-btn {
    padding: 10px 20px;
    background: #efb93f;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.search-close-btn {
    padding: 10px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.search-preview {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    width: 95%;
}

@media (width < 768px) {
    .search-submit-btn {
        padding: 6px 16px;
    }
    .search-input {
        padding: 5px 10px;
    }
    .search-input::placeholder {
        font-size: 14px;
    }
    .search-close-btn {
        padding: 10px 2px;
    }
    .search-container {
        padding: 10px;
        top: 3%;
    }
    .search-preview div {
        max-width: 90vw !important;
    }
    .search-preview h5 {
        font-size: 12px !important;
    }
    .search-preview p {
        font-size: 10px !important;
        line-height: 1.5;
    }
}

.blog-dropdown {
    position: absolute;
    background: transparent;
    width: max-content;
    max-width: 600px;
    padding: 0;
    border: 1px solid #000;
    border-radius: 10px;
    display: none;
    opacity: 0;
    transform: translateX(-45%) translateY(0);
    overflow: hidden;
}

.blog-dropdown.active {
    display: block;
    opacity: 1;
    transform: translateX(-45%) translateY(10px);
}

.blog-dropdown-blog {
    display: flex;
    align-items: center;
    padding-block: 6px;
    padding-inline: 12px;
    border-bottom: 1px solid grey;
    background: white;
    /* backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px); */
    color: #000;
}

.blog-dropdown-blog:hover {
    background: radial-gradient( circle at top, #3eb6a8 0%, #1a9e8f 30%, #1a7b72 100%);
    color: #fff;
}

.blog-dropdown-text {
    padding-right: 10px;
}

.blog-dropdown-title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
    /* color: #fff; */
    letter-spacing: 0.35px;
}

.blog-dropdown-description {
    font-size: 12px;
    /* color: #fff; */
    line-height: 1.6;
    text-transform: capitalize;
}

.blog-dropdown-image {
    width: 150px;
    height: 100px;
    /* object-fit: cover; */
    border-radius: 8px;
}

.socialLinks {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    z-index: 100;
    max-width: 45px;
}

.socialLinks * {
    padding: 0;
    margin: 0;
}

.socialLinks ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    /* gap: 1px; */
    width: 200px;
    transform: translateX(-155px);
    border-radius: 12px;
}

.socialLinks li {
    background: rgba(58, 58, 58, 0.4);
    background: rgba(17, 17, 17, 0.5);
    /* Glassy effect */
    backdrop-filter: blur(6px);
    /* Apply blur for the glass effect */
    display: flex;
    justify-content: flex-end;
    padding-right: 5px;
    padding-block: 5px;
    transition: transform 250ms ease, background 250ms ease, border-radius 250ms ease;
}

.socialLinks li:hover {
    transform: translateX(8px);
}

/* Links */

.socialLinks a {
    --link-size: 40px;
    width: var(--link-size);
    height: var(--link-size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    color: #fff;
    font-size: 22px;
    /* Icon size */
    transition: transform 0.3s, background 0.3s;
}

.socialLinks a:hover {
    transform: scale(1.1);
}

/* Hover Effects for Individual Social Media */

.socialLinks li:nth-child(1) {
    border-radius: 0 12px 0 0;
}

.socialLinks li:nth-child(1):hover {
    background: #305891;
    /* Facebook blue */
    border-radius: 0 12px 12px 0;
}

.socialLinks li:nth-child(2) {
    border-radius: 0 0 0 0;
}

.socialLinks li:nth-child(2):hover {
    background: #007bb6;
    /* LinkedIn blue */
    border-radius: 0 12px 12px 0;
}

.socialLinks li:nth-child(3) {
    border-radius: 0 0 0 0;
}

.socialLinks li:nth-child(3):hover {
    background: linear-gradient( 165deg, #515bd4 20%, #8134af 40%, #dd2a7b 60%, #feda77 90%);
    /* Instagram gradient */
    border-radius: 0 12px 12px 0;
}

.socialLinks li:nth-child(4) {
    border-radius: 0 0 12px 0;
}

.socialLinks li:nth-child(4):hover {
    background: #af0606;
    /* YouTube red */
    border-radius: 0 12px 12px 0;
}

@media (width < 700px) {
    .socialLinks {
        display: none;
    }
}

/* header styles end here */

/* footer styles start here */

footer {
    background: linear-gradient(to top, #473fa8, #370677b5);
    color: #fff;
    padding: 5rem;
}

footer a {
    color: inherit;
}

.first-footer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    /* padding-inline: 2rem; */
}

.first-footer-section img {
    width: 12rem;
}

.first-footer-section> :first-child {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
    white-space: nowrap;
    /* margin-right: 1rem; */
}

.footer-nav-list a {
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    margin: 16px 30px;
    transition: all 150ms ease-in-out;
    border-radius: 10px;
    outline: 2px solid rgba(255, 255, 255, 0);
    font-size: 16px;
}

.footer-nav-list a:hover {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

.second-footer-section {
    --font-weight: 600;
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
}

.second-footer-section> :first-child p {
    font-size: 12px;
    padding: 2px 0;
    margin: 0;
}

.second-footer-section .golden-link {
    display: block;
    font-weight: var(--font-weight);
    background: linear-gradient( -45deg, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.second-footer-section i {
    margin-right: 6px;
}

.second-footer-section .golden-link .bi::before {
    font-weight: var(--font-weight) !important;
}

.footer-icons {
    display: flex;
    margin-block: 2rem;
}

.footer-icons {
    display: flex;
    margin-block-start: 2rem;
}

.footer-icon {
    padding: 0;
    margin: 0;
    text-decoration: none;
    box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.1);
}

.footer-icon {
    padding: 9px;
    margin-inline: 6px;
    background: #3a6e96;
    display: flex;
    place-content: center;
    border-radius: 999rem;
    transition: background 250ms ease-in-out;
}

.footer-icon svg {
    fill: white;
    /* -webkit-text-stroke-color: black; */
    width: 18px;
    height: 18px;
    transition: fill 200ms ease-in-out, height 200ms ease, width 200ms ease;
}

.footer-icon:hover {
    background: #ffffff;
    animation: energy 0.7s ease-in;
}

.footer-icon:hover svg {
    fill: #000000;
    /* -webkit-text-stroke-color: white; */
    width: 18px;
    height: 18px;
}

@keyframes energy {
    0% {
        transform: scale (1, 1);
    }
    25% {
        transform: scale(0.9, 1.1);
    }
    50% {
        transform: scale(1.2, 0.8);
    }
    75% {
        transform: scale(0.95, 1.05);
    }
}

@media (width < 960px) {
    footer {
        padding: 3rem;
    }
    .footer-nav-list a {
        font-size: 13px;
    }
}

@media (width < 900px) {
    .first-footer-section {
        flex-direction: column;
        align-items: center;
        padding-block: 2rem;
        gap: 2rem;
        border: none;
    }
    .second-footer-section {
        flex-direction: column-reverse;
        align-items: center;
        padding-block: 2rem;
        gap: 2rem;
    }
    .first-footer-section> :first-child {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* align-items: center; */
        column-gap: 1rem;
    }
    .first-footer-section> :first-child> :nth-child(1) {
        grid-row: 1/3;
        grid-column: 1/2;
    }
    .first-footer-section> :first-child> :nth-child(3) {
        margin-block: 10px;
    }
    .second-footer-section>div {
        width: 100%;
    }
    .second-footer-section> :nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        padding-bottom: 2rem;
        margin-inline: auto;
        text-align: center;
        font-size: 13px;
    }
}

@media (width < 450px) {
    .footer-nav-list {
        justify-items: center;
        gap: 10px;
    }
    .footer-nav-list a {
        padding: 10px 9px;
        margin: 16px 8px;
    }
    footer {
        padding: 1rem;
        padding-bottom: 3rem;
    }
    .first-footer-section> :first-child {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 1rem;
        width: 100%;
        justify-items: center;
    }
    .first-footer-section> :first-child> :nth-child(3) {
        margin-block: 2rem 0px;
    }
}

/* footer styles end here */

.side-flex {
    display: flex;
}

.side-flex main {
    width: 67%;
    margin-inline: auto;
    margin-bottom: 2rem;
    padding-inline: 2.5rem;
}

.side-flex>div {
    width: 30%;
    /* background: pink; */
    /* height: 300vh; */
    height: max-content;
    position: sticky;
    top: 5rem;
}

@media (width < 1000px) {
    .side-flex {
        flex-direction: column;
        align-items: center;
    }
    .side-flex main {
        width: 100%;
        margin-inline: auto;
        margin-bottom: 2rem;
        padding-inline: 26px;
    }
    .side-flex>div {
        width: 100%;
        height: min-content;
        position: relative;
        top: 0;
        height: min-content;
    }
}

.fakeTitle {
    font-weight: 600;
    line-height: 1.4;
    color: #121212;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.35);
    font-size: 28px;
}

@media (width < 700px) {
    .fakeTitle {
        font-size: 26px;
    }
}

/* index hero section styles */

.hero-section {
    position: relative;
    width: 100%;
    height: 100dvh;
    background-image: url("../img/mt-bg-desktop.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (width < 700px) {
    .hero-section {
        background-image: url("../img/mt-bg-mobile.webp");
    }
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    z-index: 1;
}

.hero-section>* {
    position: relative;
    z-index: 2;
}

/* background video fills hero and sits behind overlay/content */

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* prefer static image on small screens to save data */

@media (width < 700px) {
    .hero-video {
        /* display: none; */
    }
}

/* iOS Safari Fix */

@supports (-webkit-touch-callout: none) {
    .hero-section,
    .full-width-bg:has(.team-carousel),
    .full-width-bg:has(.developer-carousel) {
        background-attachment: scroll;
        /* iOS Safari workaround */
    }
    /* .hero-section::before {
		content: "";
		position: fixed;
		inset: 0;
		z-index: -1;
		background-image: url("../img/IMG_0342.webp");
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		transform: translateZ(0); 
	} */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.search-bar-container {
    position: relative;
    z-index: 500;
    width: 90%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (width < 700px) {
    .search-bar-container {
        top: 9%;
    }
}

.search-bar-container h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.search-bar-container p {
    font-size: 12px;
    line-height: 1.2;
    color: #ddd;
    margin-bottom: 10px;
}

.hero-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    /* width: 60%;
	margin-inline: auto;
	margin-bottom: 0; */
}

.hero-search-form input::placeholder {
    color: white;
}

.hero-search-form .form-group.form-group {
    position: relative;
    width: 50%;
    margin-bottom: 0;
}

.hero-search-form .form-group input {
    width: 100%;
    padding: 6px 20px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: bold;
    margin-bottom: 0;
}

.hero-search-form .form-group input::placeholder {
    color: #ddd;
}

.hero-search-form .form-group input:focus {
    border: 2px solid #00aaff;
    background: rgba(255, 255, 255, 0.5);
    color: #fff;
    box-shadow: 0 0 8px rgba(0, 170, 255, 0.5);
}

.search-btn {
    padding: 8px 16px;
    font-size: 15px;
    background: radial-gradient( circle at top, #0e9688 0%, #050e36 30%, #065677 100%);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.search-btn:hover {
    background: radial-gradient( circle at top, #0e9688 0%, #1c9486 30%, #005b52 100%);
    transform: translateY(-1px);
}

/* Mobile Responsiveness */

@media (max-width: 768px) {
    .search-bar-container {
        padding: 20px;
    }
    .search-bar-container h1 {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    .search-bar-container h1 span {
        display: block;
        font-size: 30px;
    }
    .search-bar-container p {
        font-size: 14px;
        line-height: 1.2;
        color: #ddd;
        margin-bottom: 20px;
    }
    .search-btn {
        font-size: 14px;
        padding: 12px;
        width: 120px;
    }
    .hero-search-form {
        flex-direction: column;
    }
    .hero-search-form .form-group.form-group {
        position: relative;
        width: 100%;
    }
    .hero-search-form .form-group input::placeholder {
        font-size: 12px;
    }
}

/* search Suggestions styling */

.suggestions-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    z-index: 500;
    display: none;
    /* Hidden by default */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}

.suggestions-box .list-group-item {
    padding: 10px 15px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-align: left;
}

.suggestions-box .list-group-item.active {
    background-color: #007bff;
    /* Highlight background */
    color: #fff;
    /* Highlight text */
}

.suggestions-box.show {
    display: block;
}

/*  featured property section styles */

.property-carousel {
    overflow: hidden;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    position: relative;
    padding-bottom: 5rem;
    width: 90%;
    margin-inline: auto;
}

.full-width-bg {
    padding-block-start: 2rem;
    background: #ffffff;
}

.property-carousel h2 {
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}

.bg-green {
    position: relative;
    color: #fff;
    display: inline-block;
    background: linear-gradient(90deg, #473fa8, #beb9fb, #473fa8);
    padding-block: 4px;
    --padding-translate: 6px;
    padding-inline: var(--padding-translate);
    transform: translateX(-var(--padding-translate));
    border-radius: 10px;
}

.property-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.property-carousel .swiper-slide h3 {
    font-size: 18px;
    margin-block: 0.5rem;
}

.property-carousel .swiper-slide img {
    object-fit: fill;
}

.swiper-button-prev,
.swiper-button-next {
    --swiper-button-size: 40px;
    top: 45%;
    color: #000000;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #000000;
    border-radius: 50%;
    width: var(--swiper-button-size);
    height: var(--swiper-button-size);
    background: rgba(17, 17, 17, 0.5);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 6px 12px 0px;
    fill: #fff;
    transition: all 200ms ease;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    height: 26px;
    /* width: 20px; */
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(17, 17, 17, 0.9);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 6px 12px 0px;
}

/* .golden-text - gradient gold text effect */

.golden-text {
    background: linear-gradient( to top right, #d39f51, #e5b566, #f0cb7b, #f8e292, #fff7a9, #e5b566);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
    font-size: 23px;
    font-weight: 600;
    color: #fff;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #00796b, #009688, #26a69a);
}

.property-card-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
}

.property-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-text {
    font-size: 13px;
    margin-block: 4px;
}

.propertySwiper .swiper-slide {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.05);
    /* padding: 20px 14px; */
    /* height: 100%; */
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
    /* Dim inactive slides */
    transform: perspective(1000px) scale(0.9);
    /* Slightly smaller by default */
    /* height: 25rem; */
    border-radius: 1rem;
    overflow: hidden;
}

.property-type-labels .property-type-label {
    background: #e0f0ff;
    color: #09509b;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

.propertySwiper .featured-property-images {
    aspect-ratio: 4/3;
    overflow: hidden;
}

@media (width>1200px) {
    .propertySwiper .featured-property-images {
        aspect-ratio: 6/3;
    }
}

.propertySwiper .featured-property-images img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.featured-property-images {
    aspect-ratio: 4/3;
    overflow-x: scroll;
    display: flex;
}

.featured-property-images img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.propertySwiper .swiper-slide a {
    color: #000000;
}

.action-row {
    display: flex;
    gap: 0.5em;
    align-items: center;
    margin-bottom: 0.6em;
}

.action-btn {
    display: inline-block;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 0.66em;
    transition: background 0.2s, color 0.2s;
    padding: 0.7em 1.5em;
    font-size: 1rem;
}

.action-btn.view-details {
    background: #473fa8;
    color: #fff;
    flex: 1 1 auto;
    text-align: center;
    text-decoration: none;
}

.propertySwiper .swiper-slide a.view-details {
    color: white;
}

.action-btn.view-details:hover,
.action-btn.view-details:focus {
    background: #00796b;
    color: #fff;
}

.action-btn.share-btn {
    background: #f5f7f9;
    color: #00796b;
    padding: 0.7em 0.9em;
    border-radius: 0.66em;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn.share-btn:hover,
.action-btn.share-btn:focus {
    background: #e0e7eb;
    color: #004c45;
}

.icon-share {
    width: 1.35em;
    height: 1.35em;
    color: inherit;
    display: block;
}

.propertySwiper .swiper-slide-active {
    transform: perspective(1000px) scale(1.1);
    /* Enlarged center slide */
    opacity: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    /* Add shadow for depth */
}

.propertySwiper .swiper-slide-prev,
.propertySwiper .swiper-slide-next {
    transform: perspective(1000px) rotateY(-20deg) scale(0.9);
    /* Slightly tilted */
    opacity: 0.9;
    /* Slightly dim */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Shadow for depth */
}

.propertySwiper .swiper-slide-next {
    transform: perspective(1000px) rotateY(20deg) scale(0.9);
    /* Tilt the other direction */
}

@media (max-width: 768px) {
    .property-carousel {
        padding-inline: 16px;
    }
}

/*  property grid styles */

.property-container .fakeTitle {
    margin-bottom: 1rem;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 95vw;
    padding: 20px;
    margin-inline-start: auto;
}

.property-card {
    background: hsl(0, 0%, 100%);
    background: linear-gradient(to top, #00100f, #005b52);
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 16px;
    margin-bottom: 20px;
    transition: transform 0.3s;
    display: grid;
    /* height: 35rem; */
    min-height: 36rem;
}

@media (width<700px) {
    .property-card {
        height: 33rem;
    }
}

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

.property-card.no-results-card {
    width: 100%;
    max-width: 370px;
    min-height: 420px;
    text-align: center;
}

.property-info-wrapper {
    display: flex;
    justify-items: start;
    align-items: start;
    flex-direction: column;
    gap: 6px;
}

.property-info-wrapper>div {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.property-card h2 {
    font-size: 22px;
    color: inherit;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.property-card h2 a {
    color: inherit;
}

.property-card h2 a:hover {
    color: inherit;
    background: linear-gradient(90deg, #00796b, #009688, #26a69a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.property-card p {
    font-size: 16px;
    margin-bottom: 4px;
    color: inherit;
}

.property-card p:has(span) {
    font-size: 15px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px 0;
    padding-top: 5px;
    flex-wrap: wrap;
}

.property-card span {
    font-size: 10px;
    display: inline-block;
    border: 1px solid grey;
    height: 20px;
    display: flex;
    width: max-content;
    padding-inline: 4px;
    align-items: center;
    border-radius: 3px;
    background: linear-gradient(90deg, #00796b, #009688, #26a69a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-left: 8px;
}

.property-images img {
    width: 100%;
    display: block;
    height: 250px;
    border-radius: 6px 6px 0 0;
}

.details-link {
    display: inline-flex;
    margin-top: 10px;
    padding: 0 15px;
    background-color: #005b52;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    position: relative;
    max-width: 135px;
    font-size: 14px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.details-link:hover {
    color: #fff;
}

.details-link::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    border-radius: 5px;
    height: 100%;
    background: linear-gradient(164deg, #fff, transparent 40%);
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 150ms ease-in-out;
}

.details-link:hover::before {
    opacity: 0.4;
}

.read-more-container {
    text-align: center;
    margin-top: 20px;
}

#readMoreBtn {
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin-inline: auto;
    background: radial-gradient( circle at top, #0e9688 0%, #007f70 30%, #005b52 100%);
    border: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

#readMoreBtn:hover {
    background-color: #005b52;
}

.property-container {
    padding-block: 3rem;
}

.content {
    width: 90%;
    margin-inline: auto;
}

.content .text-section {
    width: 80%;
}

@media (width < 972px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width < 670px) {
    .properties-grid {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        padding: 14px;
    }
    .property-card span {
        font-size: 10px;
    }
    .property-card h2 {
        font-size: 20px;
        text-wrap: balance;
    }
    .property-card p,
    .property-info-wrapper>div {
        font-size: 14px;
    }
    .property-card img {
        height: 240px;
        object-fit: cover;
    }
    .property-card {
        margin-bottom: 0;
    }
    .content .text-section {
        width: 94%;
        font-size: 15px;
        line-height: 1.6;
    }
    .property-container {
        padding-inline: 0 !important;
    }
}

.properties-grid>.property-card:nth-child(1):only-child {
    grid-column: 2;
}

/* Location carasouel styles */

.location-card {
    position: relative;
    height: 100%;
}

.location-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-image:hover img {
    /* transform: scale(1.1); */
}

.location-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.7) 26%, rgba(0, 0, 0, 0.45) 26%, rgba(0, 0, 0, 0.1));
    transition: background 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    overflow: hidden;
}

.location-image:hover .overlay {
    background: linear-gradient( to top, rgba(0, 0, 0, 0.7) 26%, rgba(0, 0, 0, 0.7) 26%, rgba(0, 0, 0, 0.1));
}

.location-image .overlay h3,
.location-image .overlay p {
    color: #fff;
    margin: 0;
}

.location-image .overlay p {
    margin-top: 5px;
    font-size: 14px;
}

@media (width < 700px) {
    .property-carousel:has(.location-card) {
        padding-inline: 16px;
    }
}

/* Team member carasouel styles */

.full-width-bg:has(.team-carousel) {
    background: url("../img/IMG_0342.webp") center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    padding-block: 3rem;
}

.full-width-bg:has(.team-carousel)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.team-carousel {
    /* padding-block: 1rem 4rem; */
    width: 90%;
    margin-inline: auto;
    padding-bottom: 4rem;
}

.teamSwiper {
    padding: 1rem 8px;
}

.team-carousel .fakeTitle {
    text-align: center;
    position: relative;
    /* margin-bottom: 3rem; */
    font-weight: 600;
    font-size: 28px;
    color: #fff;
    width: 65%;
    margin-inline: auto;
    z-index: 3;
}

.team-member-card {
    /* background: rgba(255, 255, 255, 0.3); */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), inset 0px 1px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    padding: 2px;
    outline: 1px solid #e0af60;
    background: #fff;
}

.team-member-card:hover {
    transform: translateY(-3px);
}

.member-image {
    width: 100%;
    height: 270px;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    outline: 1px solid #e0af60;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.team-member-card:hover .member-image img {
    transform: scale(1.02);
}

.member-info {
    padding-block: 1rem 0;
    text-align: center;
    font-style: oblique;
}

.member-info h3 {
    margin: 0;
    font-size: 18px;
    color: #000;
}

.member-info p {
    color: #bfbdbd;
    font-size: 14px;
    margin: 0;
}

@media (width < 700px) {
    .full-width-bg:has(.team-carousel) {
        padding-block: 2rem;
    }
    .team-carousel {
        padding-bottom: 2rem;
    }
}

/*  testimonial or google review styles */

:root {
    --review-width: 350px;
    --testimonial-padding: 7rem;
}

.testimonials .quote-icon {
    width: 40px;
    height: 40px;
    color: #3a6e96;
    margin-bottom: 10px;
}

.testimonials .rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

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

.testimonial-footer .testimonial-name {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.2;
}

.testimonial-footer .testimonial-image {
    width: 54px;
    height: 54px;
    border-radius: 50%;
}

.testimonial-footer .tick-icon {
    margin-left: auto;
}

.testimonials {
    background: #eaf6f4;
    padding: 40px 0;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    width: calc(100% - var(--testimonial-padding));
}

.testimonials-header {
    text-align: center;
    padding: 0 20px;
    max-width: 400px;
    width: 100%;
}

.testimonials-header h2 {
    all: unset;
    text-align: left;
    color: #000;
    font-size: 2.875rem;
    font-weight: 500;
    line-height: 1.3;
    display: inline-block;
    margin-block: 10px;
}

.testimonial-prev,
.testimonial-next {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: #005b52;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 91, 82, 0.2);
}

.testimonial-prev:hover,
.testimonial-next:hover,
.testimonial-prev:focus,
.testimonial-next:focus {
    background: #005b52;
    color: #fff;
}

.testimonials-navigation {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    position: relative;
}

.testimonials-carousel {
    margin-top: 20px;
    overflow-x: hidden;
}

.testimonialsSwiper {
    max-width: calc(2 * var(--review-width));
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.testimonial-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.8px;
    /* margin-bottom: 1.5rem; */
    line-height: 1.6;
    display: -webkit-box;
    /* -webkit-line-clamp: 6; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonials-carousel .swiper-slide {
    width: calc(100% / var(--slides-per-view, 1));
    max-width: var(--review-width);
}

@media (width < 776px) {
    .testimonials-header h2 {
        font-size: 2.75rem;
    }
}

@media (width < 720px) {
    .testimonials .container {
        flex-direction: column;
    }
    .testimonialsSwiper {
        max-width: calc(1 * var(--review-width));
    }
}

@media (width < 426px) {
    .testimonials-header {
        padding: 0;
    }
    .testimonials-header h2 {
        font-size: 2.5rem;
    }
    .testimonials-header h2 span {
        font-size: 2.5rem !important;
    }
}

/* real estate developers carasouel styles */

.full-width-bg:has(.developer-carousel) {
    background: url("../img/IMG_0342.webp") center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    padding-block: 3rem;
}

.full-width-bg:has(.developer-carousel)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.developer-carousel {
    position: relative;
    z-index: 1;
}

.developer-carousel {
    overflow: hidden;
    width: 90%;
    margin-inline: auto;
    padding-bottom: 4rem;
}

.developer-carousel .fakeTitle {
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 28px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}

.developer-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.developer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.developer-image {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.developer-card h3 {
    font-size: 16px;
    text-align: center;
    color: #333;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .full-width-bg:has(.developer-carousel) {
        padding-block: 2rem;
    }
    .developer-carousel {
        width: 100%;
        padding-inline: 20px;
        padding-bottom: 2rem;
    }
    .developer-card {
        height: 180px;
    }
    .developer-image {
        width: 100px;
        height: 100px;
    }
    .developer-carousel .swiper-button-prev,
    .developer-carousel .swiper-button-next {
        top: 56%;
    }
}

/*  Blog / news carasouel styles */

.blog-carousel {
    padding: 3rem 0;
    background: #f8f8f8;
}

.blog-carousel .fakeTitle {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.blogSwiper {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.blog-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
    height: 100%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.blog-date {
    font-family: "Times New Roman", serif;
    font-style: italic;
    color: #666;
}

.blog-writer {
    font-weight: 500;
    color: #333;
}

.blog-title {
    font-family: "Times New Roman", serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.blog-image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-description {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    align-self: flex-start;
    padding: 8px 15px;
    background: #005b52;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    background: #007f70;
    color: white;
}

@media (max-width: 768px) {
    .blog-carousel .fakeTitle {
        margin-bottom: 0;
    }
    .blog-carousel {
        padding-block: 2rem 0;
    }
    .blogSwiper {
        width: 100%;
    }
    .blog-card {
        margin: 10px;
    }
    .blog-title {
        font-size: 20px;
    }
}

/* Why choose section styles */

@property --a {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.why-choose-section {
    /* background: pink; */
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background:
                    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)),
                    url('./assets/img/mt-bg-img3.webp') no-repeat center center / cover; */
    /* background: url("../img/image.png"); */
    background: linear-gradient(to top, #473fa8, #370677b5);
}

.why-choose-section h2 {
    background: linear-gradient( 45deg, #d39f51, #e5b566, #f0cb7b, #f8e292, #fff7a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.why-choose-section .card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 90%;
    margin-inline: auto;
}

.why-choose-section .choose-card {
    /* outline: 2px solid red; */
    display: grid;
    grid-template-columns: 1fr;
    /* grid-template-rows: repeat(4, 1fr); */
    position: relative;
    overflow: visible;
    gap: 10px;
    place-items: center;
    border-radius: 10px;
    padding: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    background: rgba(255, 255, 255, 0.02);
    /* background: rgba(0, 0, 0, 0.02); */
    backdrop-filter: blur(6px);
    /* -webkit-backdrop-filter: blur(10px); */
}

.why-choose-section .choose-card {
    overflow: hidden;
    position: relative;
    /* background: red; */
}

.why-choose-section .choose-card::before {
    position: absolute;
    z-index: -1;
    inset: -1em;
    border: solid 10px;
    border-image: conic-gradient( from var(--a), #ffffff, #c5c4c3, #ffffff, #c5c4c3) 1;
    filter: blur(0.6em);
    content: "";
    /* animation: reverse-a 0.5s linear forwards infinite; */
    /* animation: a 1s linear; */
    z-index: 5;
    transition: all 0.5s ease;
}

.why-choose-section .choose-card:hover::before {
    border: solid 17px;
    filter: blur(0.6em);
    border-image: conic-gradient( from var(--a), #d39f51, #e5b566, #fff7a9, #e5b566, #d39f51) 1;
    transition: all 0.5s ease;
    /* animation: a 1s linear infinite alternate; */
}

@keyframes a {
    to {
        --a: 180deg;
    }
}

@keyframes reverse-a {
    from {
        --a: 45deg;
        /* Start at the hovered state */
    }
    to {
        --a: 0deg;
        /* Return to original state */
    }
}

.image-wrapper {
    padding-block: 2rem 3rem;
    display: flex;
    justify-content: center;
}

.image-wrapper img {
    width: 100%;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

@media (width < 700px) {
    .image-wrapper img {
        width: 100%;
    }
}

.image-wrapper img:hover {}

@keyframes rotate-border-hover {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.choose-card .image-wrapper {
    padding-block: 5px 0;
}

.choose-card .image-wrapper img {
    height: 70px;
    width: 70px;
}

.choose-card .title {
    /* grid-column: 2/3; */
    /* grid-row: 1/2; */
    display: grid;
    align-items: end;
}

.choose-card .description {
    /* grid-column: 2/3; */
    /* grid-row: 2/5; */
    font-size: 14px;
}

.choose-card .title,
.choose-card .description {
    background: linear-gradient(90deg, #ffffff, #ffffff, #ffffff, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-align: center;
}

@media (width < 700px) {
    .why-choose-section {
        height: min-content;
        padding-block: 40px;
    }
    .why-choose-section h2 {
        width: 65%;
        margin-inline: auto;
    }
    .why-choose-section .card-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        width: 90%;
        margin-inline: auto;
    }
    .full-width-bg:has(.team-carousel) {
        padding-bottom: 0;
    }
}

/* styes for section that has the main h1 */

.heading-section {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(to top, #050e36, #065677);
    /* Add texture image */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    min-height: 65vh;
    height: max-content;
    background-blend-mode: overlay;
    /* Blend the texture with the background color */
    background-size: cover;
    /* Ensure the texture fills the area */
}

.heading-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient( 45deg, #d39f51, #e5b566, #f0cb7b, #f8e292, #fff7a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heading-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 20px;
    max-width: 700px;
    text-align: center;
    text-wrap: pretty;
}

/* CTA Button Styling */

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient( 45deg, #d39f51, #e5b566, #f0cb7b, #f8e292, #fff7a9);
    /* Eye-catching CTA color */
    color: #005b52;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    /* Rounded button */
    box-shadow: 0 4px 10px rgba(240, 203, 123, 0.3);
    /* Subtle glow */
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient( 60deg, #d39f51, #e5b566, #f0cb7b, #f8e292, #fff7a9);
    /* Slightly darker shade on hover */
    color: #fff;
    transform: translateY(-3px);
    /* Lift button on hover */
    box-shadow: 0 6px 15px rgba(240, 203, 123, 0.4);
    /* Enhanced shadow on hover */
}

/* Responsive Styling */

@media (max-width: 768px) {
    .heading-section h1 {
        font-size: 2rem;
    }
    .heading-section p {
        font-size: 0.95rem;
    }
    .cta-button {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .heading-section h1 {
        font-size: 1.5rem;
    }
    .heading-section p {
        font-size: 0.85rem;
    }
    .cta-button {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
}

/*  Get to know about moneytree realty section styles */

.about-section {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    padding-block: 4rem;
    background: linear-gradient(to top, #00100f, #005b52);
    max-height: 700px;
    margin-top: 30px;
}

.about-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-section-image {
    height: 100%;
    grid-column: 2/6;
    grid-row: 2/13;
    border-radius: 10px;
    padding: 4px;
    background: linear-gradient( 45deg, #d39f51, #e5b566, #f0cb7b, #f8e292, #fff7a9);
    outline: 1px solid white;
    z-index: 2;
}

.about-section-heading {
    grid-column: 5/11;
    grid-row: 2 / auto;
    background: #fff;
    border-radius: 12px;
    margin-top: 30px;
    font-size: 26px;
    padding: 10px;
    text-align: center;
    z-index: 3;
}

.about-section-heading span {
    background: linear-gradient( 45deg, #d39f51, #e5b566, #f0cb7b, #f8e292, #fff7a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 36px;
}

.about-section-text {
    grid-column: 6/13;
    grid-row: 3/11;
    background: #fff;
    padding: 10px 2rem;
    border-radius: 8px;
    margin: 40px;
    transform: translateX(-13%);
}

@media (width < 700px) {
    .about-section {
        /* grid-template-columns: 1fr; */
        padding-block: 1rem;
    }
    .about-section-heading span {
        font-size: 24px;
    }
    .about-section-heading {
        grid-column: 2/12;
        grid-row: 1 / auto;
        font-size: 16px;
    }
    .about-section-image {
        grid-column: 3/11;
        grid-row: 1/8;
    }
    .about-section-text {
        grid-column: 2/12;
        grid-row: 6/13;
        margin: 0;
        padding: 12px 14px;
        z-index: 2;
    }
    .about-section-text p {
        font-size: 11px;
    }
    .about-section-text p strong:first-child {
        font-size: 13px;
        text-align: center;
        display: block;
        text-wrap: pretty;
    }
}

.about-section-text p {
    font-size: 12px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translate(0, 0);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.animate-on-scroll[data-direction="left"] {
    transform: translate(-100px, -60px);
}

/* this will actually transiton from left since its that negative but okay ik it says right but it comes from left */

.animate-on-scroll[data-direction="right"] {
    transform: translateX(-200px);
}

.animate-on-scroll[data-direction="top"] {
    transform: translateY(-50px);
}

.animate-on-scroll[data-direction="bottom"] {
    transform: translateY(50px);
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translate(0, 0);
    height: min-content;
}

.side-flex-right .property-carousel {
    margin: 20px 0;
    max-width: 300px;
    padding-bottom: 0;
}

.side-flex-right .carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.side-flex-right h2.carousel-title {
    font-size: 17px;
    color: #333333;
    margin: 0;
    text-shadow: none;
}

.side-flex-right .carousel-nav button {
    background: rgb(22, 152, 139);
    color: #fff;
    border: none;
    padding: 8px 13px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 12px;
}

.side-flex-right .carousel-nav button:hover {
    background: rgb(14, 82, 75);
}

.side-flex-right .carousel-wrapper {
    overflow: hidden;
}

.side-flex-right .swiper-container {
    padding: 5px 0;
}

.side-flex-right .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-flex-right .property-card {
    width: 100%;
    height: 350px;
    max-width: 300px;
    padding-inline: 10px;
    padding-block: 10px 3rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    min-height: min-content;
}

.side-flex-right .property-card:hover {
    transform: translateY(-5px);
}

.side-flex-right .property-card img {
    width: 270px;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.side-flex-right .property-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: #333;
    margin-top: 0;
    padding-block: 0;
}

.side-flex-right .property-card p {
    font-size: 0.8rem;
    color: #555;
    margin: 3px 0;
}

.side-flex-right .property-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

main.side-flex-right {
    display: flex;
}

.side-flex-right .blog-container {
    width: 68%;
}

.side-flex-right .flex-component-container {
    width: 32%;
}

@media (width < 800px) {
    main.side-flex-right {
        display: flex;
        flex-direction: column;
    }
    .side-flex-right .blog-container,
    .side-flex-right .flex-component-container {
        width: 100%;
    }
    .side-flex-right .property-carousel {
        max-width: 100%;
        margin-inline: auto;
    }
    .side-flex-right .property-card {
        height: 375px;
    }
}

.side-flex-right .property-card .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 0;
    margin-top: 10px;
}

.side-flex-right .property-card .card-grid div p:first-child {
    font-weight: 700;
}

.side-flex-right .property-card .card-grid p {
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 0;
}

.side-flex-right .property-card .card-grid span {
    font-size: 10px;
    margin: 0;
    display: inline-block;
}

.celeb-homes-swiper-container .property-card {
    height: 230px;
}

@media (width < 700px) {
    .celeb-homes-swiper-container .property-card {
        height: 230px;
    }
}

.side-flex-right .contactFormWrapper {
    padding: 1.5rem 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), inset 0 0 5px rgba(0, 0, 0, 0.05);
    margin-block: 1rem;
    margin-right: 0;
    max-width: 320px;
}

.side-flex-right .contactFormWrapper label {
    font-size: 12px;
    color: #ced4da;
}

.side-flex-right .contactFormWrapper textarea {
    border: none;
}

.side-flex-right .contactFormWrapper input::placeholder,
.side-flex-right .contactFormWrapper textarea::placeholder {
    color: #6c757d;
}

.side-flex-right .contactFormWrapper form {
    display: flex;
    flex-direction: column;
    padding: 1rem 0.8rem;
}

.side-flex-right .contactFormWrapper form input,
.side-flex-right .contactFormWrapper form textarea {
    margin-bottom: 1em;
    border-radius: 6px;
    outline: 1.85px solid #e9ecef;
    padding: 10px 10px;
    font-size: 12px;
}

.side-flex-right .contactFormWrapper p {
    text-transform: capitalize;
    background: linear-gradient( 45deg, #000000 0%, #333333 20%, #666666 40%, #4d4d4d 70%, #262626 80%, #000000 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 22px;
    width: max-content;
    margin-inline: auto;
    margin-bottom: -16px;
    letter-spacing: 1.6px;
}

.number-input-wrapper {
    display: flex;
    align-items: start;
}

.number-input-wrapper input {
    width: 100%;
}

.country-code {
    background: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.25rem 0.65rem 0.25rem 0.45rem;
    font-size: 14px;
    color: #6c757d;
    margin-right: 10px;
}

.side-flex-right .contactFormWrapper .button-div {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.side-flex-right .contactFormWrapper .button-div button {
    width: 30%;
    border-radius: 12px;
    transform: none;
}

.side-flex-right .contactFormWrapper input:not(:placeholder-shown):valid {
    outline-color: #52b788;
}

.side-flex-right .contactFormWrapper input:not(:placeholder-shown):invalid {
    outline-color: #ee6055;
}

.side-flex-right .contactFormWrapper input:focus:invalid,
.side-flex-right .contactFormWrapper textarea:focus {
    outline-color: #ced4da;
}

@media (width < 700px) {
    .side-flex-right .contactFormWrapper {
        margin-inline: auto;
    }
}

.card-button {
    background: radial-gradient( circle at top, #0e9688 0%, #007f70 30%, #005b52 100%);
    padding: 12px 10px;
    border-radius: 12px;
    color: white;
    text-transform: capitalize;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.card-button:hover {
    transform: translateY(-1px);
    background: radial-gradient( circle at top, #0e9688 0%, #1c9486 30%, #005b52 100%);
    color: white;
}

.card-button--white {
    background: #fff;
    border: 2px solid #005b52;
    color: #005b52;
}

.card-button--white:hover {
    transform: translateY(-1px);
    background: radial-gradient(circle at top, #f3fdfc, #f6fdfc, #f3fffe);
    color: #005b52;
}

.success-message {
    margin-top: 15px;
    padding: 10px;
    font-size: 14px;
    color: #256d2e;
    background-color: #dff2e1;
    border: 1px solid #b3e0bb;
    border-radius: 4px;
    text-align: center;
}

.tags {
    display: flex;
    list-style-type: none;
    flex-wrap: wrap;
    gap: 3px;
}

.tags>li {
    margin: 0;
    background-color: rgba(0, 0, 0, 0.06);
    padding: 0px 10px;
    border-radius: 6px;
}

.tags>li>a {
    font-size: 11px !important;
    color: #333;
    transition: color 150ms ease-in-out;
}

.tags>li>a:hover {
    color: #efb93f;
}

.overview {
    background: rgba(241, 238, 238, 0.55);
    font-style: italic;
    padding: 1rem;
    margin-block: 1rem;
    border-radius: 10px;
}

@media (width < 700px) {
    .overview {
        font-size: 13px;
    }
}

.tag-wrapper {
    margin-top: 2rem;
    width: 67%;
    margin-inline: 5% auto;
}

.arrow-list {
    list-style: none;
    padding-block-end: 1rem;
}

.arrow-list>li {
    position: relative;
    margin-inline-start: 20px;
    margin-top: 0.3rem;
    font-weight: 400;
    font-size: 16px;
}

.arrow-list>li::before {
    content: "➔";
    color: #005b52;
    display: inline-block;
    position: absolute;
    top: 3px;
    left: -25px;
}

.beautiful-table {
    width: 88%;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.beautiful-table td p,
.beautiful-table td {
    text-align: center;
}

.beautiful-table tr td:nth-child(3) {
    min-width: 100px;
}

.beautiful-table td {
    padding: 10px 10px;
    border: 1px solid #ddd;
    font-weight: 400;
}

.beautiful-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.beautiful-table th {
    background-color: #eeecec;
    color: black;
    padding: 10px 10px;
    border: 1px solid #ddd;
    text-shadow: none;
    font-weight: 600;
}

@media (width < 500px) {
    .beautiful-table th,
    .beautiful-table td {
        padding: 6px 8px;
    }
    .beautiful-table {
        width: 100%;
    }
    .beautiful-table p,
    .beautiful-table td {
        font-size: 12px;
        line-height: 1.4;
    }
    .beautiful-table tr td:nth-child(2) {
        min-width: 100px;
    }
}

h3+table.beautiful-table {
    margin-top: 1.2rem;
}

.diff tr td:first-child {
    font-weight: 600;
    width: 35%;
}

.beautiful-table td ul li {
    font-size: 14px;
}

.beautiful-table td ul {
    font-size: 14px;
    margin-left: 1rem;
}

@media (width < 700px) {
    .beautiful-table td ul li {
        font-size: 12px;
    }
}

.tableOfContent {
    display: flex;
    flex-direction: column;
    background: rgba(241, 238, 238, 0.55);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
}

.tableOfContent a,
.tableOfContent li {
    background: linear-gradient(90deg, #00796b, #009688, #26a69a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 600;
    transition: transform 180ms ease;
}

.tableOfContent a:hover,
.tableOfContent li:hover {
    background: linear-gradient(-90deg, #00796b, #009688, #26a69a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 600;
    transform: translate(2px, -2px);
}

.tableOfContent ul {
    list-style: none;
    padding-left: 2rem;
}

.tableOfContent>div:first-child {
    display: flex;
    justify-content: space-between;
}

.tableOfContent .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 700ms ease;
    display: flex;
    flex-direction: column;
}

.tableOfContent .content.open {
    max-height: 1000px;
}

.tableOfContent i {
    font-size: 30px;
}

.tableOfContent button {
    background: transparent;
    padding-inline: 6px;
}

.tableOfContent button:active {
    outline: 2px solid grey;
}

@media (width < 700px) {
    #fake-heading {
        font-size: 15px;
    }
    .tableOfContent i {
        font-size: 24px;
    }
    main>p {
        text-align: left;
    }
}

.misc-icon {
    color: #59d469;
    margin-left: 4px;
}

.misc-icon--d {
    color: #ca4d37;
    margin-left: 4px;
}

.faq,
.questions {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.faq h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
    padding-right: 1rem;
    color: #005b52;
}

.questions h2 {
    margin: 0;
    font-size: 18px;
    cursor: pointer;
    padding-right: 1rem;
    color: #005b52;
    padding-block: 0 10px;
}

.questions p {
    margin-block-end: 0;
    font-size: 16px;
}

@media (width < 700px) {
    .faq h3 {
        font-size: 15px;
    }
}

.faqq {
    padding-top: 30px;
    padding-bottom: 50px;
}

.faq p {
    margin-bottom: 10px;
}

.faq p strong {
    font-weight: bold;
}

.answer {
    display: none;
}

.arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    color: #005b52;
}

.collapsed .arrow {
    transform: rotate(0deg);
}

.expanded .arrow {
    transform: rotate(180deg);
}

.notificationLevel3 {
    position: fixed !important;
    bottom: 10%;
    left: 1rem;
    padding: 10px;
    background: radial-gradient( circle at top, rgba(14, 150, 136, 0.8) 0%, rgba(0, 127, 112, 0.95) 30%, rgba(0, 91, 82, 0.8) 100%);
    color: #ffffff;
    border-radius: 5px;
    display: none;
    font-size: 14px;
    z-index: 1000;
    padding-inline: 1.5rem;
}

dialog {
    border: none;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: min-content;
    padding: 1em;
    /* max-width: 40svw; */
    margin: auto;
}

.dialogueLevel3 {
    width: 100%;
    background: radial-gradient(circle at top, #fff, #f9f9f9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed !important;
    max-width: 20rem;
}

.dialogueLevel3 label {
    font-size: 12px;
    color: #ced4da;
}

.dialogueLevel3 textarea {
    border: none;
}

.dialogueLevel3 input::placeholder,
.dialogueLevel3 textarea::placeholder {
    color: #6c757d;
}

.dialogueLevel3 form {
    display: flex;
    flex-direction: column;
    padding: 1rem 0.8rem;
}

.dialogueLevel3 form input,
.dialogueLevel3 form textarea {
    margin-bottom: 1em;
    border-radius: 6px;
    outline: 1.85px solid #e9ecef;
    padding: 4px 10px;
    font-size: 14px;
}

.dialogueLevel3 p {
    text-transform: capitalize;
    background: radial-gradient( circle at top, #0e9688 0%, #007f70 30%, #005b52 100%);
    background: linear-gradient( 45deg, #d39f51 0%, #e5b566 20%, #f2e19e 40%, #e5b566 60%, #f2e19e 70%, #d39f51 80%, #b28e4c 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 22px;
    width: max-content;
    margin-inline: auto;
    margin-bottom: -16px;
    letter-spacing: 1.6px;
}

.number-input-wrapper {
    display: flex;
    align-items: start;
}

.number-input-wrapper input {
    width: 100%;
}

.country-code {
    background: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.25rem 0.65rem 0.25rem 0.45rem;
    font-size: 14px;
    color: #6c757d;
    margin-right: 10px;
}

.dialogueLevel3 .button-div {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.dialogueLevel3 .button-div button {
    width: 30%;
    border-radius: 12px;
    transform: none;
}

.dialogueLevel3 input:not(:placeholder-shown):valid {
    outline-color: #52b788;
}

.dialogueLevel3 input:not(:placeholder-shown):invalid {
    outline-color: #ee6055;
}

.dialogueLevel3 input:focus:invalid,
.dialogueLevel3 textarea:focus {
    outline-color: #ced4da;
}

/* Styles for the backdropLevel3 */

.backdropLevel3 {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
}

.backdropLevel3.show {
    display: block;
}

/* Prevent scrolling when the dialog is open */

body.no-scroll {
    overflow: hidden;
}

.property-card-level3 {
    display: grid;
    grid-template-columns: 14rem 1fr;
    gap: 10px;
    padding: 12px;
    outline: 3px solid hsl(210, 17%, 98%);
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 10px 12px -5px, rgba(0, 0, 0, 0.05) 12px 10px 10px -5px;
    margin-bottom: 2rem;
    transition: transform 120ms ease, box-shadow 100ms ease;
    width: 100%;
}

.property-card-level3:hover {
    transform: translateY(-1.2px);
    box-shadow: rgba(0, 0, 0, 0.23) 0px 12px 14px -7px, rgba(0, 0, 0, 0.15) 14px 12px 12px -7px;
}

.data-grid-level3 p,
.property-card-level3 h3 {
    margin: 0;
}

.property-card-level3 h2 {
    font-size: 20px;
    margin-top: 0;
    /* margin-block: 6px 12px; */
}

.property-card-level3 p {
    font-size: 12px;
}

.property-card-level3-image {
    display: flex;
    overflow: auto;
    max-height: 250px;
}

.property-card-level3-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-card-level3-data {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    grid-template-rows: auto auto auto;
}

.property-card-level3-data h2 {
    grid-column: 1/4;
    grid-row: 1/2;
    text-align: center;
}

.property-card-level3-data .data-grid-level3 {
    grid-column: 1/3;
    grid-row: 2/3;
}

.property-card-level3-data .property-card-level3-button {
    grid-column: 3/4;
    grid-row: 2/3;
    display: flex;
    flex-direction: column;
    /* gap: 15px; */
    margin: 10px;
}

.property-card-level3-data .property-card-level3-button>* {
    margin: 10px;
}

.property-card-level3-data .read-more-content {
    grid-column: 1/4;
    grid-row: 3/4;
    margin-top: 1rem;
}

.data-grid-level3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
    place-items: center;
    font-size: 12px;
    background: #f8f9fa;
    padding-block: 1rem;
    width: 98%;
    margin-inline: auto;
    border-radius: 8px;
    transform: translateY(8px);
}

.data-grid-level3>div {
    width: 100%;
    height: 100%;
    padding-left: 1.2rem;
}

.data-grid-level3>div>p {
    margin-top: -8px;
}

.data-grid-level3>div p:not(:first-child) {
    font-weight: 600;
}

.data-grid-level3 div:nth-child(odd) {
    border-right: 2px solid #dee2e6;
}

.card-button {
    background: radial-gradient( circle at top, #050e36, #065677, #065677 100%);
    padding: 12px 10px;
    border-radius: 12px;
    color: white;
    text-transform: capitalize;
    width: 8rem;
    font-size: 14px;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.card-button:hover {
    transform: translateY(-1px);
    background: radial-gradient( circle at top, #0e9688 0%, #1c9486 30%, #005b52 100%);
    color: white;
}

.card-button--white {
    background: #fff;
    border: 2px solid #005b52;
    color: #005b52;
}

.card-button--white:hover {
    transform: translateY(-1px);
    background: radial-gradient(circle at top, #f3fdfc, #f6fdfc, #f3fffe);
    color: #005b52;
}

a.colored-link {
    background: radial-gradient( circle at top, rgba(14, 150, 136, 0.8) 0%, rgba(0, 127, 112, 0.95) 30%, rgba(0, 91, 82, 0.8) 100%);
    background-clip: text;
    color: transparent;
}

a.colored-link:hover {
    background: radial-gradient( circle at top, rgba(14, 150, 136, 0.8) 0%, rgba(0, 127, 112, 0.95) 30%, rgba(0, 91, 82, 0.8) 100%);
    background-clip: text;
    color: transparent;
}

@media (max-width: 700px) {
    .property-card-level3 {
        grid-template-columns: 1fr;
    }
    .property-card-level3 h2 {
        margin-bottom: 0;
    }
    .property-card-level3 p {
        font-size: 11px;
    }
    .property-card-level3-data .data-grid-level3 {
        grid-column: 1/4;
        grid-row: 2/3;
    }
    .property-card-level3-data .property-card-level3-button {
        grid-column: 1/4;
        grid-row: 3/4;
        display: flex;
        flex-direction: row;
    }
    .data-grid-level3 {
        gap: 6px 0;
    }
    .card-button {
        width: 45%;
        padding-block: 10px;
    }
}

.page-top-banner {
    height: 17dvh;
    width: 100%;
    position: relative;
    /* top: 3.55rem; */
    /* z-index: -1; */
}

.page-top-banner::before {
    content: "";
    display: block;
    position: absolute;
    height: 154%;
    width: 100%;
    /* z-index: 2; */
    background: linear-gradient( 45deg, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(4px);
}

.page-top-banner img {
    object-fit: cover;
    width: 100%;
    height: 154%;
}

.page-top-banner-content {
    position: absolute;
    top: 20%;
    left: 8%;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    /* z-index: 2; */
}

.page-top-banner-content h2,
.page-top-banner-content p {
    color: inherit;
    font-family: "Montserrat";
    text-shadow: 0 0 1px #ffffff;
}

.page-top-banner-content h2 {
    font-size: 40px;
    font-weight: 700;
}

.page-top-banner-content p {
    font-size: 13px;
    margin-top: 8px;
    font-weight: 600;
    margin-left: 10px;
}

.page-top-banner-content p a {
    color: #f0cb7b;
    text-shadow: 0 0 1px #d6a259;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (width < 700px) {
    .page-top-banner-content h2 {
        font-size: 30px;
    }
    .page-top-banner-content p {
        margin-left: 6px;
    }
}

.location-address-section {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    place-items: center;
    gap: 20px;
    margin-block: 2rem;
}

.location-address-section>* {
    width: 100%;
    margin-inline: 20px;
    min-height: 300px;
}

.location-address-section> :first-child {
    grid-column: 2/7;
}

.location-address-section> :nth-child(2) {
    grid-column: 7/12;
    width: 100%;
    margin-inline: 20px;
}

main>*:not(:first-child) {
    position: relative;
}

@media (width < 800px) {
    html {
        padding-top: 3.55rem;
        /* toggle this with newsbanner  */
        /* padding-top: 4.55rem; */
    }
    main>*:not(:first-child) {
        padding-inline: 15px;
        position: relative;
    }
    .location-address-section {
        display: flex;
        flex-direction: column;
    }
    .location-address-section.order {
        flex-direction: column-reverse;
    }
}

.tile {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 16px;
}

.address-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address-box p {
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.address-box> :not(:first-child) {
    display: flex;
    align-items: center;
}

.contact-page-contact-info> :not(:first-child)>span,
.address-box> :not(:first-child)>span {
    margin-inline: 40px 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient( 55deg, rgba(224, 170, 62, 0.6) 0%, rgba(245, 216, 138, 0.6) 10%, rgba(235, 213, 122, 0.6) 40%, rgba(224, 170, 62, 0.7) 50%, rgba(214, 162, 89, 0.6) 60%, rgba(187, 138, 68, 0.6) 75%, rgba(224, 170, 62, 0.6) 100%);
    background: linear-gradient( 45deg, #d39f51, #e5b566, #f0cb7b, #f8e292, #fff7a9);
    overflow: visible;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page-contact-info> :not(:first-child)>span svg,
.address-box> :not(:first-child)>span svg {
    height: 28px;
    width: 28px;
    stroke: black;
}

.address-box h3 {
    font-weight: 600;
    background: linear-gradient( to right, #e0aa3e 0%, #ebd57a 40%, #e0aa3e 50%, #d6a259 60%, #bb8a44 75%, #e0aa3e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 23px;
    text-align: center;
}

.social-icons-section {
    width: 83.5%;
    margin-inline: auto;
    margin-block: 2rem;
    padding-block: 2rem 3rem;
}

.social-icons-section h2 {
    text-align: center;
    margin-bottom: 14px;
}

.social-icons-section div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-inline: auto;
    max-width: 600px;
}

.social-icons-section a {
    padding-left: 30%;
    position: relative;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: #005b52;
    text-decoration-thickness: 1px;
}

.social-icons-section a i {
    font-size: 22px;
    z-index: 2;
    position: relative;
    margin-right: 10px;
}

.social-icons-section a::before {
    content: "";
    position: absolute;
    display: block;
    height: 30px;
    width: 30px;
    left: 29%;
    top: 2px;
    border-radius: 30px;
    background: linear-gradient( 45deg, #d39f51, #e5b566, #f0cb7b, #f8e292, #fff7a9);
}

@media (width < 700px) {
    .social-icons-section {
        padding-block: 1rem 3rem;
        width: calc(100% - 30px);
    }
    .social-icons-section div {
        grid-template-columns: 1fr;
    }
}

.form-social-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

.form-container {
    grid-column: 2/8;
    padding: 20px;
    padding-bottom: 3rem;
    margin-inline: 0px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* background-color: #ffffff; */
    font-family: Arial, sans-serif;
}

.contact-page-contact-info {
    grid-column: 8/12;
    margin-inline: 20px;
    display: flex;
    flex-direction: column;
    padding-block: 2rem 5rem;
}

.contact-page-contact-info> :not(:first-child) {
    display: flex;
    padding-left: 16px;
    margin-top: 14px;
}

.contact-page-contact-info> :not(:first-child)>span {
    margin-inline-start: 0;
}

.contact-page-contact-info a {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: #005b52;
    font-weight: 600;
}

.contact-page-contact-info p+div p {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 15px;
}

#contactForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-inline: auto;
    max-width: 400px;
    padding: 1rem 2rem 2rem;
    border-radius: 10px;
    box-shadow: inset -1px -1px 6px 1px rgba(0, 0, 0, 0.03), 2px 2px 10px 1px rgba(0, 0, 0, 0.1);
}

@media (width < 700px) {
    .form-container {
        padding-inline: 0;
        padding-bottom: 0;
    }
    #contactForm {
        max-width: 100%;
        padding: 1rem 15px 2.5rem;
        box-shadow: inset -1px -1px 6px 1px rgba(0, 0, 0, 0.03), 0 0 0 0 rgba(0, 0, 0, 0.1);
    }
}

.contact-page-contact-info h2,
.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333333;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    color: black;
    border: 1px solid #333333;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    border: 1px solid rgb(19, 162, 148);
    background: rgba(255, 255, 255, 0.5);
    color: #333333;
    box-shadow: 0 0 8px rgba(19, 162, 148, 0.5);
}

.form-group textarea:focus-visible {
    outline: none;
}

.form-group input:not(:placeholder-shown):valid,
.form-group textarea:not(:placeholder-shown):valid {
    border: 1px solid #52b788;
    box-shadow: 0 0 4px rgba(19, 162, 148, 0.5);
}

.form-group input:not(:placeholder-shown):invalid {
    border: 1px solid #ee6055;
    box-shadow: 0 0 4px rgba(238, 95, 85, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(132, 132, 132, 0.63);
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #ffffff;
    background: radial-gradient( circle at top, #0e9688 0%, #007f70 30%, #005b52 100%);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.submit-btn::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    border-radius: 5px;
    height: 100%;
    background: linear-gradient(164deg, #fff, transparent 40%);
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 150ms ease-in-out;
}

.submit-btn:hover::before {
    opacity: 0.4;
}

.success-message {
    margin-top: 15px;
    padding: 10px;
    font-size: 14px;
    color: #256d2e;
    background-color: #dff2e1;
    border: 1px solid #b3e0bb;
    border-radius: 4px;
    text-align: center;
}

main {
    margin-bottom: 6rem;
}

@media (width < 800px) {
    .form-social-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .form-social-wrapper>* {
        width: 100%;
        margin-inline: 0;
    }
}

.single-widgets.widget_egns_tag {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: -9999px;
    left: -9999px;
    pointer-events: none;
    opacity: 0;
}