:root {
    --primary-color: #ffcd03;
    --secondary-color: #0E1F6F;
    --text-color: #414141;
    --font-size: 16px;
    --font-weight: 400;
    --max-width: 80svw;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}
html {
  scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}
a,
a:-webkit-any-link {
    text-decoration: none;
}
a, button {
    cursor: pointer;
}
h1 {
    font-size: 2em;
}
h2 {
    font-size: 1.8em;
}
h3 {
    font-size: 1.4em;
}
h4 {
    font-size: 1.1em;
}
h5 {
    font-size: 1em;
}
h6 {
    font-size: 1em;
}
img {
    max-width: 100%;
    height: auto;
}
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100svw;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4em 0;
    gap: 2em;
}
.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(0 0 0 / 40%);
    padding: .25em 8svw;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    /* max-width: var(--max-width); */
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: white;
    width: 40svw;
    max-width: var(--max-width);
}
.navbar a {
    color: white;
    text-transform: uppercase;
}
.navbar a:hover, .navbar a.active {
    color: var(--primary-color);
}
header {
    background: var(--secondary-color);
}
.banner {
    width: 100svw;
    overflow: hidden;
    /* height: 100svh; */
}
.homepage-banner {
    aspect-ratio: 4 / 2.2;
}
.banner-image {
    width: 100svw;
    /* height: 100svh; */
}
.banner .owl-carousel .owl-item img {
    max-height: 100svh;
    object-fit: cover;
    width: auto;
    /* height: 100svh; */
}
.hamburger-menu {
    background: transparent;
    border: 0;
    width: 1.5em;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hamburger-menu svg {
    stroke: white;
}
.hamburger-menu {
    display: block;
}
.mobile-navbar {
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    gap: 20px;
    width: 100svw;
}
.navbar {
    display: none;
}
.navbar.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
}
.mobile-navbar a {
    color: rgb(0 0 0 / 40%);
    font-size: 200%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.mobile-navbar a:hover, .mobile-navbar a.active {
    color: var(--secondary-color);
}
.item {
    position: relative;
}
.banner-content {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    justify-content: center;
    align-items: end;
    padding: 1em;
}
.banner-content h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    color: white;
    text-align: center;
    font-size: 1.25em;
}
.banner-content mark,
.blue-banner mark {
    background: transparent;
    color: var(--primary-color);
}
.slogan {
    background: var(--primary-color);
    color: var(--text-color);
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 1em;
    text-align: center;
}
.slogan h2 {
    font-size: 1.5em;
}
.row {
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.columns, .content {
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.about .columns img,
.journey .columns img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.about .columns img {
    box-shadow: -12px 12px rgb(163 163 163 / 29%);
}
.journey .columns img {
    box-shadow: 12px 12px rgb(163 163 163 / 29%);
}
.button {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 0.75em 2em;
    border-radius: .5em;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    width: fit-content;
}
.button:hover {
    background: transparent;
}
.number-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    justify-content: space-around;
    gap: 2em;
    color: white;
}
.number-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
}
.projects,
.number {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}
.number-box .icon {
    width: 2.5em;
    height: auto
}
.number h3 {
    font-size: 2em;
}
.numbers-background {
    background: url("../images/numbers-background.png") no-repeat center center;
    background-size: cover;
}
.big-spacing {
    margin: 4em auto;
}
.title {
    text-transform: uppercase;
    color: var(--secondary-color);
}
.projects {
    gap: 3em;
    
}
.projects blockquote {
    display: flex;
    flex-direction: column;
    align-items: start;
    line-height: 1.5;
    text-align: left;
    position: relative;
    width: 100%;
}
.project-title {
    font-size: 1.5em;
    line-height: 150%;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-style: italic;
}
.projects hr {
    width: 4px;
    height: 90px;
    border: 0;
    background: var(--primary-color);
    position: absolute;
    left: -8px;
    top: -8px;
}
.projects hr.small-line {
    height: 40px;
}
.projects .text {
    margin-top: 1em;
}
.image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    margin: 2em 0;
}
.blue-banner {
    background: var(--secondary-color) url("../images/blue-banner-background.png") no-repeat right center;
    background-size: cover;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
}
.blue-banner .heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    font-size: 2em;
    margin-bottom: 1em;
}
.testmonials {
    background: url("../images/testmonials-background.png") no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: center;
    padding:3em 0;
}
.testmonials-card {    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1.25em;
    border-radius: 1.25em;
    border: 2px solid rgb(163 163 163 / 50%);
    gap: 1.25em;
}
.owl-carousel.owl-drag .owl-item {
    display: flex;
    align-items: stretch;
}
.item {
    position: relative;
    display: flex;
}
.card-body {
    text-align: center;
    font-size: 1.25em;
}
.card-body {
    text-align: center;
    font-size: 1.25em;
}
.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25em;
    flex-direction: column;
}
.card-heading { 
    font-size: 1.5em;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
}
.owl-stage {
    display: flex;
}
footer {
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5em 8svw;
    flex-direction: column;
    gap: 2em;
}
.social-media {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.footer-heading {
    font-size: 1.375em;
    font-weight: 600;
    line-height: 1.5;
}
.footer-socials {
    display: flex;
    gap: 1em;
}
footer .columns {
    min-width: 20%;
    gap: 1.5em;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
footer a {
    color: white;
}
footer a:hover {
    color: var(--primary-color);
}
.contact-wrapper {
    display: flex;
    gap: 1em;
}
/* .conatct-icon svg[fill] {
    opacity: .4;
} */
.conatct-icon svg path[stroke] {
    stroke-opacity: .4;
}
.footer-bottom {
    border-top: 1px solid;
    padding-top: 2em;
    width: 100%;
}
.align-center {
    text-align: center;
    align-items: center;
}
.align-center .banner-content {
    align-items: center;
}
.full-banner .banner-image img {
    /* min-height: 100svh; */
    object-fit: cover;
    width: auto
}
.vision {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
    color: white;
    max-width: none;
}
.vision .background {
    display: flex;
    background: url("../images/vision-mission-background.png") no-repeat center center;
    background-size: cover;
    width: 100vw;
}
.vision .content {
    gap: 1em;
}
.vision .subheading {
    color: var(--primary-color);
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 600;
    font-style: italic;
}
.vision p {
    font-size: 1.25em;
}
.ledership-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 2em 0;
    align-items: start;
}
.ledership-grid .card, .ledership-grid  .card-content {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.ledership-grid .card-image img {
    border-bottom: 1em solid var(--primary-color);
}
.ledership-grid .card-content .subheading {
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: 1.8em;
}
.completed-projects {
    gap: 5em;
}
.completed-projects .projects {
    align-items: start;
}
.rera {
    padding: 8em 0 4em;
    
}
.rera > * {
    font-size: 1.25em;

}
ul {
    margin: 0 1em;
}
.rera .link {
    font-weight: 600;
    color: var(--secondary-color);
    width: fit-content;
}
.rera .link:hover {
    color: var(--primary-color);
}
.contactus-wrapper .row {
    width: 100%;
}
.contactus-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 100%;
}
.form-group {
    display: flex;
    gap: 1em;
}
input:not([type="submit"]), textarea {
    display: flex;
    width: 100%;
    border-radius: 10px;
    border: 2px solid rgb(163 163 163 / 50%);
    padding: .5em 1em;
}
.banner-content.start-center {
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding: 0 8svw;
    gap: 1em;
}

.banner .owl-carousel .owl-item img.project-logo {
    max-height:40px
}
.start-center h1 {
    align-items: start;
}
.ongoing-projects .two-columns blockquote {
    border-left: 8px solid var(--primary-color);
    padding-left: 20px;
}
.light-bg {
    background: rgb(255 205 3 / 10%);
}
.projects.ongoing-projects .text {
    margin: 0;
}
.ongoing-projects .two-columns .flex-direction-column,
.flex-direction-column {
    flex-direction: column;
}
.align-start,
.ongoing-projects .two-columns .align-start {
    align-items: start;
}
.banner.aspect-ratio-unset {
    aspect-ratio:unset;
}
.dropdown {
    position: relative;
}
.dropdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5em;
    /* display: none; */
}
.alert {
    padding: .8em;
    background: #f9f9f9;
    border-radius: 6px;
    border: 1px solid rgb(0 0 0 / 20%);
}
.alert-success {
    background: #4CAF50;
    border: 1px solid rgb(46 110 49);
}
.alert-failure {
    background: #f1aeb5;
    border: 1px solid #95676b;
}
.dropdown > a {
    display: flex;
    gap: .5em;
    justify-content: space-between;
}
@media screen and (min-width: 768px) {
    h1 {
        font-size: 3em;
    }
    h2 {
        font-size: 2em;
    }
    h3 {
        font-size: 1.5em;
    }
    h4 {
        font-size: 1.2em;
    }
    h5 {
        font-size: 1.1em;
    }
    h6 {
        font-size: 1em;
    }
    .navbar-wrapper {
        position: fixed;
        padding: 1.25em 8svw;
    }
    .navbar {
        display: flex;
        flex-direction: row;
        position: unset;
    }
    .hamburger-menu,
    .mobile-navbar {
        display: none;
    }
    .banner-content {
        padding: 2em;
    }
    .banner-content h1 {
        font-size: 2em;
    }
    .slogan {
        padding: 20px;
    }
    .slogan h2 {
        font-size: 2em;
    }
    .row {
        flex-direction: row;
    }
    .columns {
        max-width: 50%;
    }
    .image-wrapper .columns {
        max-width: unset;
    }
    .image-wrapper img {
        height: -webkit-fill-available;
        width: 100%;
    }
    .number-wrapper {
        display: flex;
        gap: 1em;
    }
    .number-box .icon {
        width: 5em;
    }
    .number h3 {
        font-size: 3em;
    }
    .number p {
        font-size: 1.125em;
    }
    .banner .owl-carousel .owl-item img {
        max-width: 100svw;
        height: auto;
        max-height: unset;
        min-width: 100svw;
        object-fit: cover;
    }
    .about .columns img {
        box-shadow: -24px 24px rgb(163 163 163 / 29%);
    }
    .journey .columns img {
        box-shadow: 24px 24px rgb(163 163 163 / 29%);
    }
    .project-title {
        font-size: 2em;
    }
    .projects .text, .projects .project-slogan {
        font-size: 1.25em;
    }
    .projects {
        gap: 4em;
    }
    .projects hr {
        width: 8px;
        height: 190px;
        left: -24px;
        top: -16px;
    }
    .projects hr.small-line {
        height: 80px;
    }
    .projects .text {
        margin-top: 2em;
    }
    .blue-banner .columns {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 50svw;
    }
    .blue-banner .heading {
        font-size: 3em;
        align-items: start;
        margin-bottom: 0;
    }
    .testmonials {
        padding: 7.5em 0;
        gap: 4em;
    }
    footer {
        padding: 5em 8svw;
    }
    .footer-text {
        font-size: 1.25em;
    }
    .ledership-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .completed-projects {
        gap: 10em;
    }
    .rera {
        padding: 12em 0 4em;
    }
    .contactus-wrapper .row {
        display: grid;
        grid-template-columns: 60% 40%;
        gap: 2em;
    }
    .contactus-wrapper .row .columns {
        max-width: 100%;
    }
    input:not([type="submit"]), textarea {
        padding: 1em 1.5em;
    }
    .banner .owl-carousel .owl-item img.project-logo {
        min-width: auto;
        width: auto;
        max-height:85px
    }
    .ongoing-projects .two-columns .columns {
        flex-direction: row;
        max-width: 75%;
        align-items: center;
        justify-content: center;
    }
    .flex-direction-column,
    .ongoing-projects .two-columns .flex-direction-column      {
        flex-direction: column;
    }
    .align-start,
    .ongoing-projects .two-columns .align-start {
        align-items: start;
    }
    .ongoing-projects .two-columns blockquote {
        border-left: 16px solid var(--primary-color);
        padding-left: 40px;
    }
    .ongoing-projects .two-columns .columns img {
        max-width: 100%;
        height: auto;
    }
    .ongoing-projects .two-columns .columns .text {
        margin-top: 0;
    }
    .banner.aspect-ratio-unset {
        aspect-ratio:unset;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        gap: 0;
        padding: .5em 0 0;
    }
    .dropdown:hover .dropdown-content {
        display: flex;
    }
    .dropdown-content a {
        background: black;
        padding: 0.5em 1em;
        width: -webkit-fill-available;
    }
}