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

@font-face {
    font-family: 'Collapse Italic';
    src: url('../fonts/Collapse-Italic.otf');
    font-style: italic;
}

@font-face {
    font-family: 'Collapse';
    src: url('../fonts/Collapse-Regular.otf');
    font-style: normal;
}

@font-face {
    font-family: 'Greenwich Regular';
    font-weight: 400;
    font-style: Regular;
    src: url('../fonts/Greenwich-Regular.otf');
}

@font-face {
    font-family: 'Greenwich Bold';
    font-weight: 700;
    font-style: Regular;
    src: url('../fonts/Greenwich-Bold.otf');
}

@media (max-width: 575px) {
    .more {
        min-width: 170px !important;
    }
    .vision{
        display: none !important;
    }
}

.sell_do_form_container .form-group:has(select)::after {
    content: "⌵";
    position: absolute;
    right: 26px;
    top: 20px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #093359;
    font-size: 18px;
}

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

.section {
    padding: 80px 0;
}

.banner-sec {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

.banner-sec .navbar-brand {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.logo {
    width: 190px;
}

.banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.02) 45%,
            rgba(0, 0, 0, 0.35) 100%);
    z-index: 2;
}

.banner-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
}

.banner-text {
    width: 550px;
    padding: 22px 28px 80px;
    border-radius: 16px;
    background: #000000B2;
}

.banner-title {
    font-family: 'Collapse';
    font-size: 50px;
    line-height: 58px;
    font-weight: 400;
    color: #C4D7E8;
    margin: 0 0 12px;
}

.banner-subtitle {
    font-family: 'Greenwich Regular';
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.pricing {
    position: relative;
    margin-top: -64px;
    margin-left: 28px;
    z-index: 4;
}

.pricing p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    height: 45px;
    margin: 0;
    padding: 0 20px;
    border-radius: 50px;
    background: #093359;
    color: #FFFFFF;
    font-family: 'Greenwich Regular';
    font-size: 16px;
    font-weight: 400;
}

.banner-form {
    width: 460px;
    padding: 20px 26px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    margin-bottom: 35px;
    backdrop-filter: blur(7px)
}

.banner-form form {
    display: flex;
    flex-direction: column;
}

.banner-form .form-control {
    height: 49px;
    border: 0;
    border-radius: 7px;
    background: #F5F5F5;
    color: #111;
    padding: 0 18px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    box-shadow: none;
    backdrop-filter: blur(14px);
    font-family: 'Greenwich Regular';
}

.banner-form .form-control::placeholder {
    color: #0B121A;
    opacity: 1;
}

.btn-submit {
    height: 49px;
    border: 0;
    border-radius: 6px;
    background: #093359;
    color: #FFFFFF;
    font-family: 'Greenwich Regular';
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    transition: 0.3s ease;
}

.btn-submit:hover {
    background: #093359;
}

/* Responsive */
@media (max-width: 991px) {
    .banner-sec {
        min-height: auto;
        padding: 130px 0 40px;
    }

    .banner-video {
        position: absolute;
    }

    .banner-content {
        position: relative;
        padding-bottom: 0;
    }

    .banner-text,
    .banner-form {
        width: 100%;
    }

    .banner-form {
        margin-bottom: 0;
    }

    .pricing {
        margin-top: -60px;
        margin-bottom: 30px;
    }
}
@media (max-width: 575px) {
    .banner-sec {
        min-height: 720px;
        height: 720px;
        padding: 0;
        overflow: hidden;
    }

    .banner-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 720px;
        object-fit: cover;
        object-position: center top;
    }

    .banner-overlay {
        height: 720px;
    }

    .banner-content {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-end;
        padding: 0 14px 28px;
    }

    .banner-content .container-xl {
        padding: 0;
    }

    .banner-text {
        width: 100%;
        padding: 20px 18px 65px;
        text-align: center;
        border-radius: 16px;
    }
    
    .banner-title {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 12px;
        color: #fff;
    }

    .pricing {
        position: absolute;
        left: 50%;
        bottom: 48px;
        transform: translateX(-50%);
        margin: 0;
    }

    .mobile-banner-form {
        background: #000C17;
        padding: 18px 12px 24px;
    }

    .mobile-banner-form .banner-form {
        width: 100%;
        margin: 0;
        padding: 18px;
        border-radius: 16px;
    }
}

/* Sell.Do Form UI - Match Attached Design */
.sell_do_form_container .title,
.sell_do_form_container label {
  display: none !important;
}

.sell_do_form_container .selldof_row {
  margin-bottom: 16px;
}

.sell_do_form_container .form-group {
  margin-bottom: 0 !important;
}

.selldof {
    display: flex;
    flex-direction: column;
}

.selldof_row {
    width: 100%;
    margin: 0 !important;
}

.sell_do_form_container .form-group {
    margin: 0 0 16px !important;
}

.sell_do_form_container .form-control,
.sell_do_form_container input[type="text"],
.sell_do_form_container input[type="email"],
.sell_do_form_container input[type="tel"] {
  width: 100% !important;
  height: 48px !important;
  background: #f4f4f4 !important;
  border: 0 !important;
  border-radius: 7px !important;
  padding: 0 18px !important;
  font-size: 15px !important;
  color: #1f2933 !important;
  box-shadow: none !important;
  outline: none !important;
}

.selldo-intl-tel-input {
    width: 100% !important;
}

.sell_do_form_container .selldo-intl-tel-input .form-control {
    padding-right: 6px !important;
    padding-left: 52px !important;
}

.sell_do_form_container input::placeholder {
  color: #1f2933 !important;
  opacity: 1;
}

.sell_do_form_container .selldo-intl-tel-input {
  width: 100% !important;
}

.sell_do_form_container .selldo-intl-tel-input input {
  padding-left: 18px !important;
}

.sell_do_form_container button,
.sell_do_form_container input[type="submit"],
.sell_do_form_container .btn {
  width: 100% !important;
  height: 48px !important;
  background: #093359 !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 6px !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  font-family: inherit !important;
  cursor: pointer;
}

.sell_do_form_container button:hover,
.sell_do_form_container input[type="submit"]:hover {
  background: #093359 !important;
}

@media (max-width: 575px) {
  .sell_do_form_container .form-control,
  .sell_do_form_container input {
    height: 48px !important;
  }
}

.ticker-section {
    background: #000C17;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    padding: 20px 0;
    animation: tickerScroll 35s linear infinite;
}

.ticker-content span {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.ticker-section:hover .ticker-content {
    animation-play-state: paused;
}

.massive_sec {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 80px 0 85px;
    min-height: 475px;
}

.massive_sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/bg.jpg") center center repeat;
    background-size: 1100px 1100px;
    opacity: 0.19;
    z-index: 1;
}

.massive_sec .container-xl {
    position: relative;
    z-index: 5;
}

/* LEFT OUTER CURVE */
.massive_sec .curve-left {
    position: absolute;
    left: -55px;
    width: 385px;
    height: 520px;
    border: 2px solid #AE7A42;
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 120px 0 0;
    z-index: 3;
}

/* LEFT INNER CURVE */
.massive_sec .curve-left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50px;
    width: 280px;
    height: 470px;
    border: 2px solid #AE7A42;
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 110px 0 0;
}

/* RIGHT OUTER CURVE */
.massive_sec .curve-right {
    position: absolute;
    right: -55px;
    width: 385px;
    height: 520px;
    border: 2px solid #AE7A42;
    border-right: 0;
    border-bottom: 0;
    border-radius: 120px 0 0 0;
    z-index: 3;
}

/* RIGHT INNER CURVE */
.massive_sec .curve-right::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50px;
    width: 280px;
    height: 470px;
    border: 2px solid #AE7A42;
    border-right: 0;
    border-bottom: 0;
    border-radius: 110px 0 0 0;
}

.price_area {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 6;
    padding-top: 38px;
}

.price_title {
    font-family: 'Collapse';
    color: #093359;
    font-size: 40px;
    line-height: 1.65;
    font-weight: 400;
    margin: 0 0 50px;
}

.price_row {
    max-width: 570px;
    margin: 0 auto 58px;
}

.price_box h3 {
    font-family: 'Collapse';
    color: #AE7A42;
    font-size: 60px;
    line-height: 1;
    font-weight: 400;
    margin: 0 0 12px;
}

.price_box p {
    color: #686969;
    font-family: 'Greenwich Regular';
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    margin: 0;
}

.enquire_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 238px;
    height: 55px;
    background: #093359;
    color: #fff;
    border-radius: 16px 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    line-height: 28px;
    font-family: 'Greenwich Regular';
}

@media (max-width: 991px) {
    .massive_sec {
        padding: 75px 0 70px;
    }

    .curve-left,
    .curve-right {
        opacity: 0.35;
    }

    .price_title {
        font-size: 36px;
        margin-bottom: 38px;
    }

    .price_box h3 {
        font-size: 54px;
    }
}

@media (max-width: 575px) {
    .curve-left,
    .curve-right {
        display: none;
    }

    .price_area {
        padding-top: 0;
    }

    .price_row {
        gap: 28px;
        margin-bottom: 42px;
    }

    .price_box h3 {
        font-size: 46px;
    }

    .enquire_btn {
        min-width: 210px;
    }
}

.project_overview_sec {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 760px;
    background: #fff;
    overflow: hidden;
}

.overview_left {
    position: relative;
    display: flex;
    align-items: center;
    padding: 70px 80px;
    overflow: hidden;
}

.overview_content {
    position: relative;
    z-index: 2;
    max-width: 570px;
}

.overview_content h2 {
    font-family: 'Collapse';
    color: #000000;
    font-size: 32px;
    line-height: 44px;
    font-weight: 400;
    letter-spacing: 0.8%;
    margin: 0 0 42px;
    max-width: 430px;
}

.overview_stats {
    display: grid;
    grid-template-columns: repeat(2, 177px);
    column-gap: 50px;
    row-gap: 38px;
}

.stat_item {
    border-bottom: 1px solid #E7E7E7;
    padding-bottom: 20px;
}

.stat_item h3 {
    font-family: 'Collapse';
    color: #af793f;
    font-size: 40px;
    line-height: 48px;
    font-weight: 400;
    margin: 0 0 16px;
}

.stat_item p {
    color: #3F3F3F;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
    font-family: 'Greenwich Regular';
}

.overview_pattern {
    position: absolute;
    right: -7px;
    bottom: -30px;
    width: 310px;
    z-index: 1;
}

.overview_right {
    height: 760px;
    overflow: hidden;
    border-bottom-left-radius: 72px;
}

.overview_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .project_overview_sec {
        grid-template-columns: 1fr;
    }

    .overview_left {
        padding: 60px 30px;
    }

    .overview_right {
        height: 520px;
        border-bottom-left-radius: 45px;
    }
}

@media (max-width: 575px) {
    .project_overview_sec {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding: 34px 0 45px;
        position: relative;
    }

    .overview_left {
        display: contents;
        padding: 0;
        overflow: visible;
    }

    .overview_content {
        display: contents;
    }

    .overview_content h2 {
        order: 1;
        font-size: 26px;
        line-height: 1.28;
        text-align: center;
        max-width: 340px;
        margin: 0 auto 22px;
        padding: 20px;
    }

    .overview_right {
        order: 2;
        width: calc(100% - 28px);
        height: 515px;
        margin: 0 auto 48px;
        border-bottom-left-radius: 42px;
        border-top-right-radius: 42px;
        overflow: hidden;
    }

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

    .overview_stats {
        order: 3;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 28px;
        width: calc(100% - 58px);
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .stat_item {
        text-align: center;
        padding-bottom: 18px;
        border-bottom: 1px solid #e7e7e7;
    }

    .stat_item h3 {
        font-size: 42px;
        line-height: 1;
        margin-bottom: 10px;
    }

    .stat_item p {
        font-size: 16px;
        line-height: 1.2;
    }

    .overview_pattern {
        display: block;
        position: absolute;
        right: 26px;
        bottom: 50px;
        width: 250px;
        opacity: 0.10;
        z-index: 1;
    }

    .project_overview_sec::before {
        content: "";
        position: absolute;
        top: 20px;
        right: 14px;
        width: calc(100% - 28px);
        height: 265px;
        border-top: 2px solid #af793f;
        border-right: 2px solid #af793f;
        border-radius: 0 55px 0 0;
        z-index: 1;
    }
    
    .overview_content .text-center {
        order: 4;
        margin-top: 28px !important;
        position: relative;
        z-index: 3;
    }

    .vision {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-width: 210px;
        height: 52px;
        background: #093359;
        color: #fff !important;
        border-radius: 0 0 18px 0;
        text-decoration: none;
        font-size: 18px;
    }
}

.life_expands_sec {
    position: relative;
    background: #073f72;
    padding: 78px 0 82px;
    overflow: hidden;
    color: #fff;
}

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

.life_curve {
    position: absolute;
    top: 46px;
    left: 26px;
    width: calc(100% + 40px);
    height: 740px;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
    border-radius: 125px 0 0 0;
    z-index: 1;
}

.life_head {
    text-align: center;
    margin-bottom: 26px;
}

.life_head h2 {
    font-family: 'Collapse';
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0.8%;
    font-weight: 400;
    color: #fff;
    margin: 0 0 14px;
}

.life_head p {
    color: #FFFFFF;
    font-family: 'Greenwich Regular';
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 20px;
}

.life_slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-right: -80px;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
}

.life_slider::-webkit-scrollbar {
    display: none;
}

.life_slider.active {
    cursor: grabbing;
}

.life_track {
    display: flex;
    gap: 18px;
    width: max-content;
}

.life_card {
    position: relative;
    flex: 0 0 360px;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    user-select: none;
}

.life_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.life_card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0));
    z-index: 1;
}

.life_card_content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 24px;
    z-index: 2;
}

.life_card_content h3 {
    font-family: 'Collapse';
    color: #F6F6F6;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin: 0 0 14px;
}

.life_card_content p {
    color: #fff;
    font-size: 16px;
    font-family: 'Greenwich Regular';
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

@media (max-width: 991px) {
    .life_card {
        min-width: 320px;
        height: 440px;
    }

    .life_head h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .life_expands_sec {
        padding: 75px 0 65px;
    }

    .life_curve {
        left: 26px;
        width: calc(100% - 26px);
        border-left: 0;
        border-width: 2px;
        top: 100px;
        height: 600px;
    }

    .life_card {
        min-width: 285px;
        height: 390px;
    }
}

.network_sec {
    background: #fff;
    padding: 80px 0;
}

.network_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.network_left h2 {
    font-family: 'Collapse';
    color: #093359;
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
    letter-spacing: 0.8%;
    margin: 0 0 14px;
}

.network_subtitle {
    color: #434343;
    font-family: 'Greenwich Regular';
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    margin: 0 0 28px;
}

.map_box {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    border: 1px solid #E2EBD66E;
    overflow: hidden;
    margin-bottom: 28px;
}

.map_box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.network_desc {
    color: #434343;
    font-family: 'Greenwich Regular';
    font-size: 16px;
    line-height: 1.45;
    margin: 0;
}

.network_right{
    max-width: 560px;
}

.location_accordion {
    padding-top: 4px;
}
.location_accordion .accordion-item {
    border: 0;
    background: #F5F5F5;
    border-radius: 16px;
    margin-bottom: 10px;
    overflow: hidden;
}

.location_accordion .accordion-button {
    background: #F5F5F5;
    color: #093359;
    box-shadow: none;
    border: 0;
    min-height: 62px;
    padding: 0 18px;
    font-family: 'Collapse';
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: 1.2%;
    text-transform: uppercase;
}

.location_accordion .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(19%) sepia(64%) saturate(1107%) hue-rotate(174deg) brightness(91%);
    width: 16px;
    height: 16px;
    background-size: 16px;
}

.location_accordion .accordion-button:not(.collapsed) {
    background: #f7f7f7;
    color: #073f72;
}

.location_accordion .accordion-body {
    padding: 0 12px 13px;
    background: #f7f7f7;
}

.location_row {
    height: 40px;
    border-radius: 8px;
    background: #FFFFFF;
    color: #222222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Greenwich Regular';
    padding: 0 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 1px;
}

.location_row.dark {
    background: #093359;
    color: #fff;
}

.location_row strong {
    font-weight: 400;
}

@media (max-width: 991px) {
    .network_wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .network_left h2 {
        font-size: 40px;
        text-align: center;
    }

    .map_box {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .network_sec {
        padding: 60px 0;
    }

    .network_left h2 {
        font-size: 34px;
        text-align: center;
    }

    .network_subtitle,
    .network_desc,
    .location_row {
        font-size: 14px;
    }
}

.minds_sec {
    background: #fff;
    padding: 70px 0;
}

.minds_sec .container-xl {
    max-width: 1100px;
}

.minds_title {
    font-family: 'Collapse';
    color: #000000;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0.8%;
    font-weight: 400;
    text-align: center;
    margin: 0 0 48px;
}

.minds_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mind_card {
    height: 210px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 15px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    text-align: center;
}

.mind_logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mind_logo img {
    object-fit: contain;
    width: 100px;
    height: 100px;
}

.mind_card h3 {
    font-family: 'Collapse';
    color: #0B3052;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
}

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

@media (max-width: 575px) {
    .minds_title {
        font-size: 32px;
    }
    .minds_grid {
        grid-template-columns: 1fr;
    }
}

.developer_sec {
    position: relative;
    background: #093359;
    padding: 80px 0;
    overflow: hidden;
}

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

.developer_wrap {
    display: grid;
    grid-template-columns: 430px 535px;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding-left: 200px;
}

.developer_content {
    max-width: 430px;
}

.developer_content h2 {
    font-family: 'Collapse';
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
    letter-spacing: 0.8%;
    color: #AE7A42;
    margin: 0 0 28px;
}

.developer_content p {
    color: #fff;
    font-family: 'Greenwich Regular';
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    margin: 0;
}

.developer_logo_card {
    width: 470px;
    height: 270px;
    background: #fff;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.developer_logo_card img {
    width: 370px;
    height: 130px;
    max-width: 100%;
    display: block;
}

.developer_pattern_img {
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 390px;
    z-index: 1;
}

@media (max-width: 991px) {
    .developer_sec {
        padding: 40px 0;
    }
    .developer_wrap {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 44px;
        padding-left: 0px !important;
    }

    .developer_sec .container-xl {
        padding: 20px;
    }

    .developer_pattern_img {
        display: none !important;
    }

    .developer_content {
        max-width: 100%;
    }

    .developer_logo_card {
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }
}

.form_sec {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 770px;
    background: #fff;
}

.form_img {
    height: 770px;
    overflow: hidden;
}

.form_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.form_content {
    padding: 60px 90px 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.form_head {
    max-width: 500px;
    margin-bottom: 60px;
}

.form_head h2 {
    font-family: 'Collapse';
    color: #093359;
    font-size: 40px;
    line-height: 1.35;
    font-weight: 400;
    margin: 0 0 20px;
}

.form_head .course_desc {
    font-family: 'Greenwich Regular';
    color: #093359;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 32px;
}

.form_head .desc_text {
    font-family: 'Greenwich Regular';
    color: #093359;
    font-size: 16px;
    line-height: 24px;
    max-width: 500px;
    margin: 0;
}

.apply_form {
    width: 500px;
    border: 1px solid #E7E7E7;
    border-radius: 16px;
    background: #FFFFFF;
    backdrop-filter: blur(7px);
    padding-top: 20px;
}

.apply_form form {
    display: flex;
    flex-direction: column;
}

.apply_form input {
    width: 100%;
    height: 49px;
    border: 0;
    border-radius: 6px;
    background: #F5F5F5;
    color: #111;
    padding: 0 18px;
    font-size: 14px;
    line-height: 24px;
    font-family: 'Greenwich Regular';
    font-weight: 400;
    outline: none;
}

.apply_form input::placeholder {
    color: #0B121A;
}

.apply_form button {
    height: 50px;
    border: 0;
    border-radius: 6px;
    background: #093359;
    color: #fff;
    font-family: 'Collapse';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .developer_wrap {
        padding-left: 0;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .developer_logo_card {
        width: 100%;
        max-width: 470px;
        height: auto;
        padding: 20px;
    }
    .developer_logo_card img {
        width: 100%;
        height: auto;
    }
    .network_wrapper {
        gap: 40px;
    }
    .form_content {
        padding: 60px 40px 0px;
    }
    .apply_form {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 991px) {
    .form_sec {
        grid-template-columns: 1fr;
    }

    .form_img {
        height: 420px;
    }

    .form_content {
        padding: 55px 25px;
    }

    .apply_form {
        width: 100%;
        padding-top: 20px;
    }

    .form_head {
        margin-bottom: 45px;
    }
}

@media (max-width: 575px) {
    .form_head h2 {
        font-size: 36px;
        text-align: center;
    }

    .form_head .course_desc {
        font-size: 24px;
        text-align: center;
    }

    .form_head .desc_text {
        font-size: 16px;
        text-align: center;
    }
}

.faq_sec {
    background: #fff;
    padding: 60px 0 60px;
}

.faq_sec .container-xl {
    max-width: 900px;
}

.faq_head {
    margin-bottom: 38px;
}

.faq_title {
    font-family: 'Collapse';
    color: #093359;
    font-size: 50px;
    line-height: 50px;
    letter-spacing: 0.8%;
    font-weight: 400;
    margin: 0;
}

.faq_accordion .accordion-item {
    background: #F9F9F9;
    border: 0;
    border-radius: 16px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq_accordion .accordion-button {
    background: #f8f8f8;
    color: #093359;
    box-shadow: none;
    border: 0;
    padding: 18px 44px 18px 18px;
    font-family: 'Collapse';
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1.6%;
    font-weight: 400;
}

.faq_accordion .accordion-button::after {
    position: absolute;
    right: 18px;
    width: 14px;
    height: 14px;
    background-size: 14px;
    filter: brightness(0) saturate(100%) invert(18%) sepia(58%) saturate(1113%) hue-rotate(174deg) brightness(88%) contrast(93%);
}

.faq_accordion .accordion-button:not(.collapsed) {
    background: #F9F9F9;
    color: #093359;
}

.faq_accordion .accordion-body {
    background: #F9F9F9;
    color: #4C4C4C;
    padding: 0 18px 18px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Greenwich Regular';
    line-height: 24px;
}

@media (max-width: 575px) {
    .faq_title {
        font-size: 38px;
    }

    .faq_accordion .accordion-button,
    .faq_accordion .accordion-body {
        font-size: 15px;
    }
}

.site_footer {
    background: #0B2F51;
    color: #fff;
    padding: 20px 0;
}
.footer_inner {
    width: 100%;
}

.footer_row {
    min-height: 130px;
}

.footer_logo img {
    width: 100%;
    max-width: 100%;
    display: block;
}

.footer_brand {
    display: flex;
    align-items: center;
}

.footer_contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 470px;
    margin-left: auto;
}

.footer_right_logo img {
    max-width: 100%;
    display: block;
    margin-bottom: 18px;
}

.footer_contact p {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin: 0;
    font-family: 'Greenwich Regular';
    letter-spacing: 0.2px;
}

@media (max-width: 991px) {
    .site_footer {
        padding: 42px 0 80px;
        text-align: center;
    }

    .footer_brand,
    .footer_contact {
        align-items: center;
        margin: 0 auto;
        justify-content: center;
    }

    .footer_logo img {
        width: 260px;
        margin: 0 auto 30px;
    }

    .footer_right_logo img {
        width: 260px;
    }
}
/* Sticky Buttons */
.sticky_button {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.enq_btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #093359;
    color: #fff;
    text-decoration: none;
    font-family: 'Collapse';
    font-size: 21px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 4px;
    padding: 14px 0;
}
.call_btn{
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    color: #093359;
    text-decoration: none;
    font-family: 'Collapse';
    font-size: 21px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 4px;
    padding: 14px 0;
}

.wapp {
    right: 7px;
    bottom: 20px;
    cursor: pointer;
    margin: 0 20px;
    display: flex;
    z-index: 10;
    overflow: hidden;
    position: fixed;
    box-shadow: 0px 5px 12px #00000029;
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
}

.phone {
    right: 20px;
    bottom: 80px;
    display: flex;
    z-index: 10;
    overflow: hidden;
    position: fixed;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.wapp svg {
    fill: #fff;
    width: 60px;
    height: 60px;
    padding: 12px;
    background-color: #26d044;
}

.enq_btn,
.call_btn {
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.enq_btn:hover,
.enq_btn:focus,
.enq_btn:active,
.enq_btn:visited {
    background: #093359;
    color: #ffffff;
    text-decoration: none;
}

.call_btn:hover,
.call_btn:focus,
.call_btn:active,
.call_btn:visited {
    background: #ffffff;
    color: #093359;
    text-decoration: none;
}

.enq_btn:focus-visible,
.call_btn:focus-visible {
    outline: none;
}

@media (max-width: 599px) {
    .wapp {
        margin-bottom: 40px;
        right: -7px;
    }

    .phone {
        margin-bottom: 40px;
        right: 4px;
    }

    .phone img {
        width: 85px;
        height: 85px;
        padding: 10px;
    }

    .wapp svg {
        width: 55px;
        height: 55px;
        padding: 10px;
    }

    .sticky_button {
        display: block;
    }
}

/* Pricing Section */
.pricing_sec {
    background: #ffffff; /* White background */
    color: #333333;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.pricing_title {
    font-family: 'Collapse';
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    color: #093359; /* Dark blue title */
    margin: 0 0 12px;
}

.pricing_subtitle {
    font-family: 'Greenwich Regular';
    font-size: 24px;
    color: #686969; /* Gray subtitle */
    margin: 0 0 50px;
}

.pricing_card_container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 15px;
}

.pricing_card {
    background: #ffffff;
    color: #093359;
    width: 100%;
    max-width: 480px;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12); /* Softer drop shadow for white bg */
    text-align: center;
}

.card_unit_title {
    font-family: 'Collapse';
    font-size: 36px;
    color: #093359;
    margin: 0 0 15px;
    font-weight: 400;
}

.card_divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    width: 80%;
}

.divider_line {
    flex: 1;
    height: 1px;
    background: #AE7A42; /* Cascades gold/brown border color */
}

.divider_dot {
    width: 6px;
    height: 6px;
    background: #AE7A42;
    border-radius: 50%;
    margin: 0 8px;
}

.offer_badge {
    font-family: 'Greenwich Regular';
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #093359;
    font-weight: 700;
    margin: 0 0 8px;
}

.offer_details {
    font-family: 'Greenwich Bold', sans-serif;
    font-size: 20px;
    color: #AE7A42; /* Cascades gold color */
    line-height: 1.4;
    margin: 0 0 30px;
    font-weight: 700;
}

.price_label {
    font-family: 'Greenwich Regular';
    font-size: 12px;
    letter-spacing: 1px;
    color: #888888;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.price_value {
    font-family: 'Greenwich Bold', sans-serif;
    font-size: 48px;
    color: #093359;
    margin: 0 0 20px;
    font-weight: 700;
}

.price_value span {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Greenwich Regular';
    color: #666666;
    margin-left: 4px;
}

.card_disclaimer {
    font-family: 'Greenwich Regular';
    font-size: 12px;
    color: #888888;
    margin: 0 0 25px;
}

.card_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #093359;
    color: #ffffff;
    width: 100%;
    height: 52px;
    border-radius: 6px;
    font-family: 'Greenwich Regular';
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.card_btn:hover {
    background: #00416b;
    color: #ffffff;
}

.card_btn .arrow {
    margin-left: 8px;
    font-size: 18px;
}

.pricing_contact {
    margin-top: 30px;
    font-family: 'Greenwich Regular';
    font-size: 16px;
    color: #686969; /* Gray contact info text */
    line-height: 1.5;
}

.pricing_contact strong {
    font-family: 'Collapse';
    font-size: 24px;
    color: #093359; /* Dark blue phone number */
    display: block;
    margin-top: 8px;
    font-weight: 400;
}

@media (max-width: 991px) {
    .pricing_title {
        font-size: 36px;
    }
    .pricing_subtitle {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .pricing_title {
        font-size: 32px;
    }
    .pricing_subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }
    .pricing_card {
        padding: 30px 20px;
    }
    .card_unit_title {
        font-size: 30px;
    }
    .price_value {
        font-size: 40px;
    }
}

/* Footer Disclaimer styling */
.footer_disclaimer_row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 25px;
    text-align: left;
}
.footer_disclaimer_text {
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 11px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.65;
    margin-bottom: 12px;
}
.footer_disclaimer_text:last-child {
    margin-bottom: 0;
}
.footer_disclaimer_text strong {
    font-weight: 700;
}

/* Modal Lead Form Popup styling */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 12, 23, 0.82); /* Semi-transparent dark overlay matching Cascades palette */
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 15px;
    backdrop-filter: blur(4px);
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.modal-content-card {
    background: #ffffff;
    width: 100%;
    max-width: 460px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    padding: 35px 25px 25px;
    position: relative;
    transform: scale(0.92);
    transition: transform 0.3s ease;
    color: #093359;
}
.modal-overlay.active .modal-content-card {
    transform: scale(1);
}
.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    z-index: 10;
}
.close-modal-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}
.modal-logo-wrap {
    text-align: center;
    background: #093359; /* Brand dark blue background to make the white logo visible */
    padding: 20px;
    margin: -35px -25px 25px; /* Pull to the top and sides of the card */
    border-radius: 16px 16px 0 0; /* Round top corners to match card */
}
.modal-logo {
    width: 140px;
    height: auto;
    display: inline-block;
}
.modal-heading {
    font-family: 'Collapse';
    font-size: 26px;
    color: #093359;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}
.modal-form-wrap {
    text-align: left;
}
.modal-assistance {
    margin-top: 20px;
    font-family: 'Greenwich Regular';
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    text-align: center;
}
.modal-assistance strong {
    font-family: 'Collapse';
    font-size: 18px;
    color: #AE7A42; /* Gold color */
    display: block;
    margin-top: 4px;
    font-weight: 400;
}
@media (max-width: 575px) {
    .modal-content-card {
        padding: 30px 20px 20px;
    }
    .modal-heading {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

/* Floor Plans Section */
.floor_plans_sec {
    background: #ffffff; /* White background */
    padding: 80px 0 50px;
    color: #093359;
}

.floor_plans_title {
    font-family: 'Collapse';
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    color: #093359;
    margin: 0 0 10px;
}

.floor_plans_sec .card_divider {
    max-width: 150px;
    margin: 0 auto 40px;
}

.floor_plans_tabs {
    margin-bottom: 45px;
}

.floor_plan_tab {
    display: inline-block;
    background: #093359;
    color: #ffffff;
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.floor_plan_image_wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    width: 800px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #f7fafc;
}

.floor_plan_img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.floor_plan_image_wrapper:hover .floor_plan_img {
    transform: scale(1.02);
}

.floor_plan_overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15); /* Light overlay over the image */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.floor_plan_btn {
    pointer-events: all;
    background: #093359;
    color: #ffffff;
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(9, 51, 89, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    display: inline-block;
}

.floor_plan_btn:hover {
    background: #AE7A42; /* Gold hover color */
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(174, 122, 66, 0.35);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .floor_plans_title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .floor_plans_title {
        font-size: 32px;
    }
    .floor_plan_tab {
        font-size: 14px;
        padding: 10px 25px;
    }
    .floor_plan_btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Modal Highlight Text */
.modal-highlight {
    background: #FFF9E6; /* Light warm gold/yellow background */
    border: 1px dashed #AE7A42; /* Gold dashed border */
    color: #AE7A42; /* Brand gold text */
    padding: 10px 15px;
    border-radius: 8px;
    margin: -10px 0 20px; /* Sits right under the heading and above the form */
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.highlight-main {
    font-family: 'Greenwich Bold', sans-serif;
    font-size: 16px;
    font-weight: 700;
}
.highlight-sub {
    font-family: 'Greenwich Bold', sans-serif;
    font-size: 8px;
    font-weight: 700;
}

/* Site Map Section */
.site_map_sec {
    background: #ffffff; /* White background */
    padding: 80px 0 50px;
    color: #093359;
}

.site_map_title {
    font-family: 'Collapse';
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    color: #093359;
    margin: 0 0 10px;
}

.site_map_sec .card_divider {
    max-width: 150px;
    margin: 0 auto 40px;
}

.site_map_image_wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    width: 850px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #f7fafc;
}

.site_map_img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.site_map_image_wrapper:hover .site_map_img {
    transform: scale(1.02);
}

.site_map_btn {
    background: #093359;
    color: #ffffff;
    font-family: 'Greenwich Regular', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 45px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(9, 51, 89, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    display: inline-block;
}

.site_map_btn:hover {
    background: #AE7A42; /* Gold hover color */
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(174, 122, 66, 0.35);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .site_map_title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .site_map_title {
        font-size: 32px;
    }
    .site_map_btn {
        padding: 12px 35px;
        font-size: 14px;
    }
}
