/* ==========================================
   FONT
   ========================================== */

@font-face {
    font-family: 'Maven Pro';
    src: url('../fonts/MavenPro-Bold.woff2') format('woff2'),
         url('../fonts/MavenPro-Bold.woff') format('woff');
    font-style: normal;
    font-weight: 700;
}

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

@font-face {
    font-family: 'Maven Pro';
    src: url('../fonts/MavenPro-Regular.woff2') format('woff2'),
         url('../fonts/MavenPro-Regular.woff') format('woff');
    font-style: normal;
    font-weight: 300;
}


/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1 {
    font-family: 'Maven Pro', 'Arial', system-ui;
    font-weight: 700;
    font-size: 32px;
}

h2 {
    font-family: 'Maven Pro', 'Arial', system-ui;
    font-weight: 500;
    font-size: 48px;
}

h3 {
    font-family: 'Maven Pro', 'Arial', system-ui;
    font-weight: 300;
    font-size: 24px;
}

h4 {
    font-family: 'Maven Pro', 'Arial', system-ui;
    font-weight: 300;
    font-size: 20px;
}

h5 {
    font-family: 'Maven Pro', 'Arial', system-ui;
    font-weight: 300;
    font-size: 18px;
}

html,
body,
p,
span {
    font-family: 'Maven Pro', 'Arial', system-ui;
    font-weight: 300;
    font-size: 18px;
}

strong {
    font-weight: 700;
}

section {
    overflow-x: hidden;
}


/* ==========================================
   GENERAL BUTTON
   ========================================== */

.btn {
    overflow: hidden;
    position: relative;
    font-weight: 300;
}

.btn:before,
.btn:after {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

    transform: translateX(-100px) skewX(-15deg);

    content: "";
}

.btn:before {
    width: 60px;

    background: rgba(255, 255, 255, 0.5);

    filter: blur(30px);

    opacity: 0.5;
}

.btn::after {
    width: 30px;
    left: 30px;

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

    filter: blur(5px);
}

.btn:hover:before {
    opacity: 1;
}

.btn:hover:before,
.btn:hover:after {
    transform: translateX(400px) skewX(-15deg);

    transition: all 0.8s ease;
}


/* ==========================================
   NAVBAR
   ========================================== */

.navbar {
    background-color: #FFFFFF;
}

.navbar .nav-item > .nav-link {
    font-family: 'Maven Pro', 'Arial', system-ui;
    font-weight: 300;
    color: #222222;

    padding: 0.5rem 1.5rem !important;
}

.navbar .nav-item > .nav-link.active {
    color: #007DC4;
}

.navbar .nav-item:last-child > .nav-link {
    padding-right: 0px !important;
}

.navbar .nav-item > #register-btn {
    color: #007DC4;

    border: 1px solid #007DC4;
    border-radius: 60px;

    padding: 0.5rem 1.25rem;
    margin-left: 1.5rem;

    text-decoration: none;
}

.navbar .nav-item > #register-btn:hover {
    background-color: #007DC4;
    border-color: #007DC4;
    color: #FFFFFF;
}

.navbar .nav-item > #register-btn:hover:before,
.navbar .nav-item > #register-btn:hover:after {
    transition: all 1.5s ease;
}


/* ==========================================
   NAVBAR TOGGLER
   ========================================== */

.navbar-toggler {
    width: 20px;
    height: 20px;

    position: relative;

    transition: 0.5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
    position: relative;
}

.navbar-toggler span {
    margin: 0;
    padding: 0;
}

.toggler-icon {
    display: block;

    position: absolute;

    height: 2px;
    width: 100%;

    background: #222222;

    border-radius: 1px;

    opacity: 1;

    left: 0;

    transform: rotate(0deg);

    transition: 0.25s ease-in-out;
}

.middle-bar {
    margin-top: 0px;
}


/* Collapsed */

.navbar-toggler.collapsed .top-bar {
    position: absolute;
    top: 0px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;

    position: absolute;
    top: 10px;

    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    position: absolute;
    top: 20px;
    transform: rotate(0deg);
}


/* Open */

.navbar-toggler .top-bar {
    top: inherit;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
    opacity: 0;
    top: inherit;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    top: inherit;
    transform: rotate(-135deg);
}


/* Toggler color */

.navbar-toggler.collapsed .toggler-icon {
    background: #222222;
}


/* ==========================================
   BANNER
   ========================================== */

#banner {
    position: relative;
    overflow: hidden;
}

#banner:before {
    position: absolute;

    top: 0;

    content: '';

    display: block;

    height: 70%;
    width: 100%;

    background:
        linear-gradient(
            195deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0) 45%
        );

    z-index: 1;
}

#banner #image-desktop {
    width: 100%;
    height: auto;
}

#banner #image-desktop,
#banner #image-tablet,
#banner #image-mobile {
    animation:
        animatedBanner 13s linear infinite alternate;
}

#banner #content {
    position: absolute;

    top: 0;

    width: 100%;

    z-index: 1;
}

#banner #content #ijm-logo {
    position: absolute;

    top: 0;
    right: 0;
}

#banner #content #title {
    margin-top: 3vw;

    color: #000000;
}

#banner #content #title #title-text {
    margin-left: -5px;

    font-size: 72px;
}

#banner #content #title #title-text #primary {
    color: #000;

    font-weight: 600;

    font-size: 1em;

    position: relative;

    line-height: 1.1;

    top: 15%;

    display: block;
}

#banner #content #title #title-text #primary[data-aos="fade-left"] {
    opacity: 0;

    transition-property: transform, opacity;

    transform: translateX(40px);
}

#banner #content #title #title-text #primary[data-aos="fade-left"].aos-animate {
    opacity: 1;

    transform: translateX(0);
}

#banner #content #title #title-text #secondary {
    position: relative;

    margin-top: 10px;
}

#banner #content #title #title-text #secondary .dot {
    display: block;

    width: 8px;
    height: 8px;

    border-radius: 8px;

    background-color: #000000;

    position: relative;
}

#banner #content #title #title-text #secondary .text {
    font-size: 0.255em;

    letter-spacing: 0.03rem;
}

#banner #content #description h1,
#banner #content #description h3 {
    color: #000000;
}


/* ==========================================
   BANNER LOGO
   ========================================== */

#banner #logo-wrap {
    max-width: 100px;
}

#banner #logo-wrap .line-2,
#banner #logo-wrap .line-3 {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

#banner #logo-wrap .line-1 {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
}

#banner #logo-wrap .line-4 {
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
}

#banner #logo-wrap.aos-animate .logo-line {
    animation-duration: 0.4s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

#banner #logo-wrap.aos-animate .line-1 {
    animation-name: logoLineRevealTopDown;
    animation-delay: 0s;
}

#banner #logo-wrap.aos-animate .line-2,
#banner #logo-wrap.aos-animate .line-3 {
    animation-name: logoLineRevealLeftRight;
}

#banner #logo-wrap.aos-animate .line-2 {
    animation-delay: 0.1s;
}

#banner #logo-wrap.aos-animate .line-3 {
    animation-delay: 0.2s;
}

#banner #logo-wrap.aos-animate .line-4 {
    animation-name: logoLineRevealBottomUp;
    animation-delay: 0.3s;
}


/* ==========================================
   LOGO ANIMATIONS
   ========================================== */

@keyframes logoLineRevealLeftRight {
    to {
        -webkit-clip-path: inset(0 0% 0 0);
        clip-path: inset(0 0% 0 0);
    }
}

@keyframes logoLineRevealTopDown {
    to {
        -webkit-clip-path: inset(0 0 0% 0);
        clip-path: inset(0 0 0% 0);
    }
}

@keyframes logoLineRevealBottomUp {
    to {
        -webkit-clip-path: inset(0% 0 0 0);
        clip-path: inset(0% 0 0 0);
    }
}


/* ==========================================
   WORD / LETTER ANIMATION
   ========================================== */

.words {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
}

.words .letter {
    display: inline-block;

    opacity: 0;

    transform: translateX(-15px);

    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
}

[data-aos].aos-animate .words .letter {
    animation-name: letterFadeRight;

    animation-duration: 0.5s;

    animation-timing-function: ease;

    animation-fill-mode: forwards;
}

[data-aos].aos-animate .words .letter:nth-child(1) {
    animation-delay: 0.4s;
}

[data-aos].aos-animate .words .letter:nth-child(2) {
    animation-delay: 0.48s;
}

[data-aos].aos-animate .words .letter:nth-child(3) {
    animation-delay: 0.56s;
}

[data-aos].aos-animate .words .letter:nth-child(4) {
    animation-delay: 0.64s;
}

[data-aos].aos-animate .words .letter:nth-child(5) {
    animation-delay: 0.72s;
}

[data-aos].aos-animate .words .letter:nth-child(6) {
    animation-delay: 0.8s;
}

[data-aos].aos-animate .words .letter:nth-child(7) {
    animation-delay: 0.88s;
}

[data-aos].aos-animate .words .letter:nth-child(8) {
    animation-delay: 0.96s;
}

@keyframes letterFadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ==========================================
   BANNER ANIMATION
   ========================================== */

@keyframes animatedBanner {
    from {
        transform: scale(1.0);
    }

    to {
        transform: scale(1.2);
    }
}


/* ==========================================
   OFFERS
   ========================================== */

#offers {
    background-color: #eabe90;
    padding: 4rem 0;
}

#offers ul {
    padding-left: 14px;

    position: relative;

    left: 50%;

    transform: translateX(-50%);

    width: 100%;
}

#offers ul li {
    font-weight: 500;
}

#offers .bordered {
    position: relative;
}

#offers .bordered::before,
#offers .bordered::after {
    content: "";

    position: absolute;

    top: 0;

    width: 2px;

    height: 100%;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            #b88955 15%,
            #b88955 85%,
            transparent 100%
        );
}

#offers .bordered::before {
    left: -10px;
}

#offers .bordered::after {
    right: -10px;
}


/* ==========================================
   PROJECTS
   ========================================== */

#projects {
    background: #173F35;

    padding: 60px 0;
}


/* ==========================================
   PROJECT GRID
   ========================================== */

.box-container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px 20px;

    width: 100%;

    max-width: 1200px;

    margin: 30px auto 40px;

    padding: 0 15px;
}


/* ==========================================
   PROJECT CARD
   ========================================== */

.project-box {
    position: relative;

    display: flex;

    flex-direction: column;

    background: #E7EFE8;

    border: 4px solid #D6B65A;

    border-radius: 20px;

    overflow: hidden;

    /*
       IMPORTANT:
       Smaller fixed height for laptop screens.
    */

    min-height: 0;

    height: 480px;

    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.30);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

    opacity: 0;

    transform: translateY(20px);
}

.project-box.show {
    opacity: 1;

    transform: translateY(0);
}

.project-box:hover {
    transform: translateY(-6px);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.40);
}


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

.project-box .image {
    position: relative;

    width: 100%;

    height: 210px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 16px 16px 0 0;

    background: #ddd;
}

.project-box .image img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.project-box:hover .image img {
    transform: scale(1.04);
}


/* ==========================================
   PROJECT STATUS
   ========================================== */

.project-status {
    position: absolute;

    right: 0;

    bottom: 0;

    z-index: 5;

    padding: 8px 13px;

    background: #FF8A00;

    color: #FFFFFF;

    font-family: 'Maven Pro', 'Arial', system-ui;

    font-size: 11px;

    font-weight: 700;

    line-height: 1.2;

    border-radius: 16px 0 0 0;

    white-space: nowrap;
}


/* Optional status colors */

.project-status.ready {
    background: #FF8A00;
}

.project-status.completed {
    background: #2E7D32;
}

.project-status.upcoming {
    background: #007DC4;
}

.project-status.commercial {
    background: #6A4C93;
}


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

.project-box .content {
    position: relative;

    flex: 1;

    min-height: 0;

    padding: 20px 15px 18px;

    background: #E7EFE8;

    border-radius: 0 0 16px 16px;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;
}


/* ==========================================
   PROJECT NAME
   ========================================== */

.project-box h3 {
    margin: 3px 0 6px;

    font-size: 22px;

    line-height: 1.2;

    font-weight: 700;

    color: #000000;
}

.project-box h3 a {
    color: #000000;

    text-decoration: none;

    transition: color 0.3s ease;
}

.project-box h3 a:hover {
    color: #d71920;
}


/* ==========================================
   LOCATION / COMPLETION
   ========================================== */

.project-box .para {
    margin: 0 0 10px;

    color: #111111;

    font-size: 13px;

    line-height: 1.4;
}


/* ==========================================
   PROPERTY INFO
   ========================================== */

.project-box .icons {
    margin-top: 0;

    padding: 0;

    border: none;

    color: #111111;

    font-size: 13px;

    line-height: 1.4;

    text-align: center;
}

.project-box .icons span {
    display: block;
}

.project-box .icons i {
    color: #004988;

    margin-right: 5px;
}


/* ==========================================
   PROJECT BUTTON
   ========================================== */

.project-box .btn {
    position: relative;

    left: auto;

    bottom: auto;

    transform: none;

    display: inline-block;

    min-width: 130px;

    margin-top: auto;

    padding: 8px 20px;

    background: #173F35;

    border: 2px solid #D6B65A;

    border-radius: 30px;

    color: #FFFFFF;

    font-size: 13px;

    font-weight: 700;

    text-align: center;

    text-decoration: none;

    white-space: nowrap;

    box-shadow:
        0 3px 7px rgba(0, 0, 0, 0.2);

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

.project-box .btn:hover {
    background: #245C4A;

    border-color: #D6B65A;

    color: #FFFFFF;

    transform: translateY(-3px);

    box-shadow:
        0 7px 15px rgba(0, 0, 0, 0.3);
}


/* ==========================================
   COMMERCIAL RIBBON
   ========================================== */

.project-box .ribbon {
    position: absolute;

    top: 20px;
    left: -38px;

    z-index: 20;

    width: 145px;

    padding: 7px 0;

    background: #d71920;

    color: #FFFFFF;

    text-align: center;

    font-size: 12px;

    font-weight: 700;

    transform: rotate(-45deg);

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.25);
}


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

.btn-state {
    border-radius: 30px;

    border: 2px solid #FFFFFF;

    background: transparent;
    color: #FFFFFF;
    min-width: 180px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-state:hover,
.btn-state.active {
    background: #FFCC55;
    border-color: #FFCC55;
    color: #007DC4;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.25);
}


/* ==========================================
   PROJECT ALL BUTTON
   ========================================== */

#projects #btn-all {
    background-color: #E6DFD5;

    width: 100%;

    border-radius: 60px;

    display: block;

    padding: 1rem 2.5rem;

    text-align: center;

    text-decoration: none;

    color: #222222;
}

#projects #btn-all:hover {
    background-color: #D0B693;

    border-color: #D0B693;

    color: #FFFFFF;
}


/* ==========================================
   LOAD MORE
   ========================================== */

#load-more {
    grid-column: 1 / -1;

    justify-self: center;

    display: block;

    width: auto;

    min-width: 140px;

    margin: 30px auto;

    padding: 10px 28px;

    background: #fff;

    color: #222;

    border: 2px solid #f5c542;

    border-radius: 30px;

    font-size: 15px;

    font-weight: 500;

    text-align: center;

    cursor: pointer;

    transition: all 0.3s ease;
}

#load-more:hover {
    background: #f5c542;

    color: #222;

    border-color: #f5c542;
}


/* ==========================================
   STICKY BAR
   ========================================== */

#sticky-bar {
    position: fixed;

    right: 10px;

    top: 50%;

    transform: translateY(-50%);

    z-index: 98;
}

#sticky-bar a > img {
    -webkit-box-shadow:
        0px 0px 25px 5px rgba(0, 0, 0, 0.1);

    -moz-box-shadow:
        0px 0px 25px 5px rgba(0, 0, 0, 0.1);

    box-shadow:
        0px 0px 25px 5px rgba(0, 0, 0, 0.1);

    border-radius: 60px;
}


/* ==========================================
   REGISTER
   ========================================== */

#register {
    background-color: #eabe90;

    padding: 80px 0;
}

#register .submit-btn-2 {
    background: #FFFFFF;

    color: #000000;

    padding: 10px 30px;

    border-radius: 60px;
}

#register .submit-btn-2:hover {
    background-color: #173F35;

    color: #FFFFFF;

    text-decoration: none;

    border-radius: 60px;
}


/* ==========================================
   FILTER
   ========================================== */

.filterDiv {
    position: relative;

    overflow: hidden;
}


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

footer {
    background: #173F35;

    padding: 30px 0;

    color: #FFFFFF;

    font-family: 'Maven Pro', 'Arial', system-ui;
}

.img-ijm {
    width: 80px;

    position: relative;

    top: -5px;

    margin-left: 10px;
}

.footerinfo {
    color: #FFFFFF;

    float: left;
}

.footerlist li {
    list-style: none;

    display: inline-block;

    border-right: 1px solid #808284;
}

footer ul {
    padding-inline-start: 1em;
}

.footerlist li a {
    color: #FFFFFF;

    margin-right: 8px;

    margin-left: 8px;
}

.footerlist li a:first-child {
    margin-left: 0;
}

.footerlist li:last-child {
    border-right: 0;
}

.footer-right,
.sociallink {
    display: flex;

    flex-direction: column;

    justify-content: right;
}

.footer-link li {
    list-style: none;

    display: inline-block;

    text-align: right;

    margin-left: 15px;
}

.footer-link img {
    width: 24px;
}

.sociallink {
    display: flex;

    flex-direction: row;

    justify-content: right;

    align-items: center;
}

a.maillink {
    text-align: right;

    color: #FFFFFF;
}

.maillink img {
    margin-right: 5px;
}

.footerleft ul {
    padding-inline-start: 0;
}

.footer-right ul {
    margin-bottom: 0;
}


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


/* ==========================================
   1600px
   ========================================== */

@media (max-width: 1599.98px) {

    #banner #content #title {
        margin-top: 2vw;
        color: #000000;
    }

}


/* ==========================================
   1400px
   ========================================== */

@media (max-width: 1399.98px) {

    #banner #image-desktop {
        margin-top: 0vh;
    }

    #banner #content #title svg {
        max-width: 70px;
    }

    #banner #content #title #title-text {
        font-size: 50px;
    }

    #banner #content #title #title-text #secondary .text {
        font-size: 0.205em;
    }

    #banner #content #description h1 {
        font-size: 28px;
    }

    #banner #content #description h3 {
        font-size: 16px;
    }

    #banner #content #title #title-text #secondary .dot {
        width: 6px;
        height: 6px;
        border-radius: 6px;
    }

}


/* ==========================================
   LAPTOP - 1200px to 1399px
   ========================================== */

@media (max-width: 1399.98px) and (min-width: 1200px) {

    .box-container {
        max-width: 1100px;

        gap: 25px 18px;

        padding: 0 10px;
    }

    .project-box {
        height: 460px;
    }

    .project-box .image {
        height: 195px;
    }

    .project-box .content {
        padding: 18px 14px 16px;
    }

    .project-box h3 {
        font-size: 21px;
    }

    .project-box .para {
        font-size: 13px;
    }

    .project-box .icons {
        font-size: 13px;
    }

}


/* ==========================================
   1200px
   ========================================== */

@media (max-width: 1199.98px) {

    h1 {
        font-size: 44px;
    }

    h3 {
        font-size: 22px;
    }

}


/* ==========================================
   TABLET / SMALL LAPTOP
   992px - 1199px
   ========================================== */

@media (max-width: 1199.98px) and (min-width: 992px) {

    .box-container {
        grid-template-columns: repeat(3, 1fr);

        gap: 20px 15px;

        max-width: 1050px;

        padding: 0 10px;
    }

    .project-box {
        height: 450px;
    }

    .project-box .image {
        height: 185px;
    }

    .project-box .content {
        padding: 17px 12px 15px;
    }

    .project-box h3 {
        font-size: 19px;
    }

    .project-box .para {
        font-size: 12px;
    }

    .project-box .icons {
        font-size: 12px;
    }

    .project-box .btn {
        min-width: 120px;

        padding: 7px 16px;

        font-size: 12px;
    }

    .project-status {
        padding: 7px 11px;

        font-size: 10px;
    }

}


/* ==========================================
   992px
   ========================================== */

@media (max-width: 991.98px) {

    h1 {
        font-size: 38px;
    }

    h3 {
        font-size: 18px;
    }

    .navbar .nav-item > .nav-link {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .navbar .nav-item > #register-btn {
        margin-left: 0;
        margin-top: 1rem;
    }

    .navbar .navbar-brand img {
        max-width: 160px;
    }

    #banner #content #ijm-logo {
        max-width: 80px;
    }

    #offers h3 {
        font-size: 24px;
    }

    #offers .bordered::before,
    #offers .bordered::after {
        content: "";

        position: absolute;

        top: unset;
        left: 0;

        width: 100%;
        height: 2px;

        background:
            linear-gradient(
                to bottom,
                transparent 0%,
                #b88955 15%,
                #b88955 85%,
                transparent 100%
            );
    }

    #offers .bordered::before {
        left: 0;
        top: 0;
    }

    #offers .bordered::after {
        right: 0;
        bottom: 0;
    }

    #offers ul {
        width: 75%;
    }


    /* Project cards */

    .box-container {
        grid-template-columns: repeat(2, 1fr);

        gap: 30px 18px;

        max-width: 900px;

        padding: 0 15px;
    }

    .project-box {
        height: 470px;
    }

    .project-box .image {
        height: 200px;
    }

    .project-box .content {
        padding: 20px 15px 18px;
    }

    .project-box h3 {
        font-size: 21px;
    }

}


/* ==========================================
   768px
   ========================================== */

@media (max-width: 767.98px) {

    #banner #image-mobile {
        margin-top: 0vh;
    }

    #banner #content #title {
        margin-top: 15vw;
    }

    #banner #content #description h3 {
        font-size: 17px;
    }

    #sticky-bar img {
        max-width: 50px;
    }


    /* Project cards */

    .box-container {
        grid-template-columns: 1fr;

        gap: 30px;

        max-width: 600px;

        padding: 0 20px;
    }

    .project-box {
        height: auto;

        min-height: 480px;
    }

    .project-box .image {
        height: 220px;
    }

}


/* ==========================================
   576px
   ========================================== */

@media (max-width: 575.98px) {

    h1 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    #banner #content #title {
        margin-top: 17vw;
    }

    #banner #content #title svg {
        max-width: 64px;

        position: relative;

        top: 10px;

        left: -5px;
    }

    #banner #content #title #title-text {
        font-size: 58px;
    }

    #banner #content #title #title-text #secondary .text {
        font-size: 0.235em;
    }

    #banner #content #title #title-text #secondary .dot {
        width: 5px;
        height: 5px;
        border-radius: 5px;
    }


    /* Project cards */

    .box-container {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 0 20px;
    }

    .project-box {
        min-height: 480px;

        height: auto;
    }

    .project-box .image {
        height: 220px;
    }

    .project-box .content {
        padding: 25px 18px 20px;
    }

    .project-box h3 {
        font-size: 24px;
    }

    .project-box .para {
        font-size: 14px;
    }

    .project-status {
        padding: 9px 14px;

        font-size: 12px;
    }

}


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

@media (max-width: 400px) {

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

    .project-box {
        min-height: 460px;
    }

    .project-box .image {
        height: 200px;
    }

    .project-box h3 {
        font-size: 22px;
    }

}

/* ==========================================
   REGISTER FORM - MOBILE ALIGNMENT
   ========================================== */

@media (max-width: 575.98px) {

    #register {
        padding: 50px 0;
    }

    #register .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Keep all form columns aligned */
    #register .row {
        margin-left: 0;
        margin-right: 0;
    }

    #register .row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    /* Labels */
    #register label {
        display: block;
        width: 100%;
        margin-bottom: 5px;
        font-size: 18px;
        line-height: 1.4;
    }

    /* Text fields */
    #register input[type="text"],
    #register input[type="email"],
    #register input[type="tel"],
    #register select,
    #register textarea,
    #register .form-control {
        display: block;

        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        box-sizing: border-box;
    }


    /* ==========================================
       MOBILE COUNTRY CODE + MOBILE NUMBER
       ========================================== */

    #register .mobile-row,
    #register .mobile-number-row {
        display: flex;

        width: 100%;

        margin: 0;

        padding: 0;

        gap: 10px;

        align-items: flex-start;
    }

    #register .mobile-row > *,
    #register .mobile-number-row > * {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Country code */
    #register .mobile-country-code {
        width: 110px !important;
        max-width: 110px !important;
        flex: 0 0 110px;
    }

    /* Mobile number */
    #register .mobile-number {
        width: auto !important;
        max-width: none !important;
        flex: 1;
    }


    /* ==========================================
       CHECKBOX / CONSENT TEXT
       ========================================== */

    #register .form-check {
        display: flex;

        align-items: flex-start;

        width: 100%;

        margin-top: 20px;

        padding-left: 0;
    }

    #register .form-check input[type="checkbox"] {
        width: 18px !important;
        height: 18px;

        flex: 0 0 18px;

        margin: 3px 12px 0 0 !important;
    }

    #register .form-check label,
    #register .form-check span {
        width: auto;

        flex: 1;

        font-size: 14px;

        line-height: 1.4;
    }

}

     

      .btn {
        display: inline-block;
        padding: 10px 30px;
        border: 1px solid #334;
        color: #334;
        font-size: 16px;
        background-color: #fff;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
      }

      .btn:hover {
        background-color: #007DC4 ;
        border-color: #007DC4 ;
        color: #fff;
      }

      /* Accordion styles */
      .accordion-button {
          color: #334;
          font-weight: bold;
          background-color: #f9f9f9;
          border: 1px solid #ddd;
          padding: 10px 15px;
          text-align: left;
        }

        .accordion-button:hover {
          background-color: #eee;
          color: #222;
        }
              .accordion-button::after {
          transition: transform 0.3s ease;
          transform-origin: center;
        }

        .accordion-button[aria-expanded="true"]::after {
          transform: rotate(180deg);
        }

        @media (min-width: 1200px) {
          .col-xl-8 {
            flex: 0 0 auto;
            width: 90%;
          }
        }

        .para {
            margin-top:-20px;        
        }

        /* Remove underline from accordion links */
        .panel-title > a.accordion-button {
          text-decoration: none !important;
          
        }

        /* Ensure no underline on hover or focus */
        .panel-title > a.accordion-button:hover,
        .panel-title > a.accordion-button:focus {
          text-decoration: none !important;
          
        }


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

/* ALL button gets its own full row */
.filter-buttons > div:first-child {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

/* Keep ALL button at its normal size */
.filter-buttons > div:first-child .btn-state {
    display: inline-block;
}


