:root {
    --brand-green: #84bd45;
    --brand-green-dark: #5f9828;
    --brand-teal: #1fa7a6;
    --brand-blue: #2278ad;
    --brand-navy: #13324d;
    --brand-navy-deep: #071d2e;
    --brand-gold: #d5b46a;
    --text: #2d4154;
    --muted: #6f7b89;
    --light: #f4f8f7;
    --white: #ffffff;
    --border: #dfe9e6;
    --shadow: 0 20px 55px rgba(16, 48, 69, .12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.75;
    overflow-x: hidden;
    letter-spacing: 0.4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--brand-navy);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-size: clamp(14px, 2vw, 15px);
    color: var(--muted);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.topbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1040;
    min-height: 36px;
    color: rgba(255, 255, 255, .82);
    background: var(--brand-navy-deep);
    font-size: 12px;
    letter-spacing: .02em;
}

.topbar .container {
    min-height: 36px;
}

.webmail-login {
    padding: 0px 9px 0 7px;
    color: #ffffffab;
    line-height: normal;
    font-size: 11px;
    border-radius: 0;
    background: transparent;
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-right: solid 1px #ffffff4f;
    font-weight: 500;
}

.top-header a:last-child {
    border: none;
}

.top-header {
    display: flex;
}

.webmail-login:hover {
    color: #76df41;
    text-decoration: underline;
}

.webmail-login i {
    font-size: 15px;
}

.navbar-shell {
    top: 36px;
    padding: 12px 0;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(19, 50, 77, .08);
    box-shadow: 0 8px 30px rgba(9, 35, 53, .06);
    backdrop-filter: blur(14px);
    transition: .3s ease;
}

.navbar-shell.scrolled {
    padding: 8px 0;
    box-shadow: 0 10px 35px rgba(9, 35, 53, .12);
}

.brand-logo {
    width: 100px;
    object-fit: contain;
}

.brand-copy {
    line-height: 1.15;
}

.brand-copy strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: var(--brand-navy);
    text-transform: uppercase;
    margin-top: 8px;
}

.brand-copy small {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .02em;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 10px 9px !important;
    color: #496075;
    font-size: 13px;
    font-weight: 500;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-teal));
    transform: scaleX(0);
    transition: transform .25s ease;
    border: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand-navy) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}


.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}




/*card real estate*/
.project-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(6, 36, 61, 0.08);
    transition: 0.35s;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(6, 36, 61, 0.15);
}

.project-image {
    height: 270px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-status {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 2px 10px;
    color: #fff;
    background: #c78f13;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}


.project-content {
    padding: 40px 20px 15px 20px;
    position: relative;
}

.project-content h3 {
    font-size: clamp(17px, 2vw, 20px);
}


.project-location {
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-teal));
    border-radius: 5px;
    padding: 5px 10px;
    display: inline-block;
    position: absolute;
    top: -15px;
    z-index: 99;
    right: 10px;
}

.project-location i {
    font-size: 10px;
    margin-right: 4px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding-top: 13px;
    border-top: 1px solid #e5e9ed;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 500;
    color: #409f63;
    background: #f4f5f4;
    border-radius: 6px;
    padding: 3px 10px;
}



/* Dropdown menu design */
.navbar .dropdown-menu {
 min-width: 230px;
    padding: 10px;
    margin-top: 6px;
    border: none;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.98);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

/* Bootstrap click ke baad .show class add karta hai */
.navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px) scale(1);
}

/* Dropdown items */
.navbar .dropdown .dropdown-item {
    padding: 6px 10px;
    margin-bottom: 3px;
    border-radius: 6px;
    color: #333;
    font-size: 13px;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        padding-left 0.25s ease;
}

.navbar .dropdown .dropdown-menu li:last-child a {
    margin-bottom: 0;
}

.navbar-nav .nav-link.dropdown-toggle::before {
    content: "";
    width: 6px;
    height: 6px;
    background: transparent;
    position: absolute;
    right: 0;
    top: 17px;
    margin-left: 0;
    display: inline-block;
    transform: rotate(45deg);
    border-bottom: solid 1px #6a6a6a;
    border-right: solid 1px #6a6a6a;
}

.nav-link.dropdown-toggle {
    padding-right: 14px !important;
}

/* Item hover effect */
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    padding-left: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-teal));
}

/* Divider */
.navbar .dropdown-divider {
    margin: 8px 0;
    border-color: #e5e5e5;
}

/* Dropdown arrow animation */
.navbar .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

/* Click ke baad arrow rotate */
.navbar .dropdown-toggle.show::after {
    transform: rotate(180deg);
}

/* Mobile dropdown */


.btn {
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 20px;
    transition: 0.2s;
}

.btn-lg {
    padding: 14px 23px;
    font-size: 14px;
}

.btn-brand {
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-teal));
    box-shadow: 0 12px 24px rgba(31, 167, 166, .22);
}

.btn-brand:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(31, 167, 166, .30);
}

.hero-section {
    position: relative;
    min-height: 760px;
    color: #fff;
    background: var(--brand-navy-deep) url("../images/hero-toll.webp") center/cover no-repeat;
    isolation: isolate;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 75% 45%, rgba(31, 167, 166, .27), transparent 33%), linear-gradient(90deg, rgba(5, 23, 37, .98) 0%, rgba(8, 29, 47, .95) 45%, rgba(8, 29, 47, .67) 70%, rgba(8, 29, 47, .78) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .12;
    background-image: linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-copy {
    padding-top: 25px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--brand-green-dark);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow {
    color: #c4ed92;
}

.hero-copy h1 {
    margin: 5px 0 8px;
    color: #fff;
    font-size: clamp(48px, 6vw, 65px);
    letter-spacing: -.045em;
}

.hero-copy h1 span {
    color: #bde581;
}

.hero-lead {
    max-width: 680px;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    line-height: 1.8;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-trust div {
    position: relative;
    min-width: 110px;
    padding-left: 16px;
    border-left: 2px solid rgba(132, 189, 69, .8);
}

.hero-trust strong {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.hero-trust span {
    color: rgba(255, 255, 255, .56);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.about-image {
    position: relative;
    padding-bottom: 65px;
}

.about-image .main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.image-strip {
    position: absolute;
    left: -35px;
    right: -35px;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.image-strip img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border: 3px solid #ffffff00;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
    border-radius: 12px;
}

/*map google*/


.location-box {
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(15, 35, 65, 0.1);
}

.location-content {
    height: 100%;
    padding: 50px 45px;
    background: #12233f;
    color: #fff;
}

.location-find {
    margin-bottom: 50px;
}


.location-label {
    display: block;
    margin-bottom: 10px;
    color: #efb7b3;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.location-content h3 {
    font-size: 27px;
    color: #ffffff;
    flex: 1;
    margin: 0;
    font-weight: 600;
}

.location-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.location-detail a {
    color: #c7ced9;
}

.location-detail>i {
    color: var(--brand-teal);
    font-size: 18px;
}

.location-detail h6 {
    display: block;
    margin-bottom: 0px;
    font-size: 11px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
}

.location-detail p,
.location-detail a {
    margin: 0;
    color: #c7ced9;
    font-size: 14px;
    line-height: 1.6;
}


.map-box,
.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

.map-box iframe {
    display: block;
    border: 0;
}




.float-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-teal));
    border-radius: 13px;
    font-size: 22px;
}

.hero-float-card strong,
.hero-float-card small {
    display: block;
    line-height: 1.35;
}

.hero-float-card small {
    color: var(--muted);
    font-size: 11px;
}

.hero-ring {
    position: absolute;
    border: 2px solid rgba(132, 189, 69, .36);
    border-radius: 50%;
}

.ring-one {
    width: 460px;
    height: 460px;
    right: -70px;
    top: 0;
}

.ring-two {
    width: 180px;
    height: 180px;
    left: 0;
    top: 40px;
    border-color: rgba(31, 167, 166, .36);
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-down i {
    font-size: 22px;
}

.stats-strip {
    position: relative;
    z-index: 5;
    margin-top: -35px;
}

.stats-row {
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 110px;
    padding: 24px 28px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item>i {
    color: var(--brand-teal);
    font-size: 28px;
}

.stat-item strong {
    display: block;
    color: var(--brand-navy);
    font-family: "Montserrat", sans-serif;
    font-size: 27px;
    line-height: 1;
}

.stat-item span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.section-padding {
    padding: 100px 0;
}

.section-heading {
    max-width: 770px;
    margin: 0 auto 15px;
    text-align: center;
}

.section-heading h2 {
    margin: 12px 0 17px;
    font-size: clamp(32px, 4vw, 40px);
    letter-spacing: -.035em;
}

.section-heading p {
    /*max-width: 650px;*/
    /*margin: auto;*/
    color: var(--muted);
    font-size: 16px;
}

.section-heading.text-start p {
    margin-left: 0;
}

.image-composition {
    position: relative;
    padding: 0 65px 65px 0;
}

.image-composition::before {
    content: "";
    position: absolute;
    left: -30px;
    top: -35px;
    width: 170px;
    height: 170px;
    border: 25px solid rgba(132, 189, 69, .10);
    border-radius: 50%;
    display:none;
}

.img-main {
    position: relative;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.img-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 250px;
    height: 180px;
    object-fit: cover;
    border: 8px solid #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 125px;
    height: 125px;
    color: #fff;
    background: linear-gradient(145deg, var(--brand-green-dark), var(--brand-teal));
    border: 5px solid #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 15px 35px rgba(31, 167, 166, .28);
}

.experience-badge strong {
    display: block;
    color: #fff;
    font-size: 26px;
    line-height: 1;
}

.experience-badge span {
    font-size: 10px;
    text-transform: uppercase;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 6px 18px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.about-highlights div {
    display: flex;
    gap: 10px;
    color: #41576a;
    font-size: 14px;
    font-weight: 500;
}

.about-highlights i {
    color: var(--brand-green-dark);
    font-size: 16px;
}

.company-fact {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.fact-icon {
    display: grid;
    place-items: center;
    flex: 0 0 50px;
    height: 50px;
    color: #fff;
    background: var(--brand-navy);
    border-radius: 14px;
    font-size: 22px;
}

.company-fact strong {
    color: var(--brand-navy);
}

.company-fact p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.services-section {
    background: var(--light);
}

.service-card {
    position: relative;
    min-height: 310px;
    padding: 34px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2ece9;
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(13, 50, 72, .07);
    transition: .35s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: auto -50px -70px auto;
    width: 180px;
    height: 180px;
    border: 24px solid rgba(132, 189, 69, .08);
    border-radius: 50%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(13, 50, 72, .14);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 55px;
    height: 55px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-teal));
    border-radius: 14px;
    font-size: 25px;
}

.service-number {
    position: absolute;
    right: 28px;
    top: 24px;
    color: rgba(19, 50, 77, .07);
    font-family: "Montserrat", sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
}

.service-card h3 {
    margin: 25px 0 14px;
    font-size: clamp(17px, 2vw, 20px);
}

.service-card p {
    color: var(--muted);
}

.service-card ul {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.highlights-text {
    color: #404040;
    font-weight: 500;
}

.highlights-text.light {
    color: #bfe788;
    font-weight: 500;
}

.service-card li {
    position: relative;
    padding: 8px 0 8px 22px;
    color: #4d6375;
    font-size: 13px;
    font-weight: 500;
    border-top: 1px dashed #dce7e4;
}

.service-card li::before {
    content: "\F26E";
    position: absolute;
    left: 0;
    color: var(--brand-green-dark);
    font-family: "bootstrap-icons";
}

.expertise-band {
    color: #fff;
    background: var(--brand-navy-deep);
}

.expertise-image {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 22, 35, .8), transparent 60%);
}

.expertise-image-overlay span {
    color: #bee889;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.expertise-image-overlay strong {
    margin-top: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
}

.expertise-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px max(6vw, 60px);
    background: radial-gradient(circle at 85% 15%, rgba(31, 167, 166, .18), transparent 38%);
}

.section-kicker.light {
    color: #bfe788;
}

.expertise-content h2,
.quality-card h2,
.cta-section h2 {
    margin: 14px 0 22px;
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
}

.quality-card h2 span {
    color: var(--brand-green-dark);
}

.mission-tabs {
    gap: 10px;
}

.mission-tabs .nav-link {
    min-width: 145px;
    color: var(--brand-navy);
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 500;
}

.mission-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-teal));
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(31, 167, 166, .22);
}

.mission-image-wrap {
    position: relative;
    padding: 25px;
}

.mission-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 22px solid rgba(132, 189, 69, .12);
    border-radius: 50%;
}

.mission-image-wrap img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.mission-list {
    display: grid;
    gap: 10px;
}

.mission-list>div {
    display: flex;
    gap: 14px;
    padding: 14px 15px;
    background: #fff;
    border: 1px solid #e4edeb;
    border-radius: 13px;
    box-shadow: 0 8px 22px rgba(13, 50, 72, .04);
}

.mission-list i {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    height: 34px;
    color: #fff;
    background: var(--brand-green-dark);
    border-radius: 50%;
    font-size: 18px;
}

.mission-list p {
    margin: 0px 0 0;
    color: #536a7c;
    font-size: 15px;
    line-height: 1.65;
}

.vision-cards {
    display: grid;
    gap: 15px;
}

.vision-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.vision-card>span {
    display: grid;
    place-items: center;
    flex: 0 0 52px;
    height: 52px;
    color: #fff;
    background: var(--brand-navy);
    border-radius: 14px;
    font-size: 22px;
}

.vision-card h3 {
    margin-bottom: 7px;
    font-size: 17px;
}

.vision-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.vision-note {
    margin-top: 20px;
    padding: 16px 18px;
    color: #496075;
    background: #eef8e7;
    border-left: 4px solid var(--brand-green);
    border-radius: 0 12px 12px 0;
    font-weight: 600;
}

.business-model-section {
    background: linear-gradient(180deg, #f4f8f7 0%, #edf6f3 100%);
}

.model-card {
    height: 100%;
    min-height: 355px;
    padding: 30px;
    background: #fff;
    border: 1px solid #dfeae7;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(13, 50, 72, .06);
    transition: .3s ease;
}

.model-card:hover {
    border-color: rgba(31, 167, 166, .35);
    transform: translateY(-7px);
}

.model-card h3 {
    margin: 22px 0 18px;
    font-size: 19px;
}

.business-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-left: 18px;
}

.business-list-item {
    display: flex;
    align-items: flex-start;
    gap: 34px;
}

.list-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 31px;
    width: 31px;
    height: 32px;
    margin-top: 0px;
    color: #6a8d6e;
    font-size: 13px;
    font-weight: 600;
    background: #0000000f;
    border-radius: 50px;
    transition: all 0.35s ease;
    line-height: 20px;
}

.list-content h5 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.35s ease;
}

.list-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    transition: color 0.35s ease;
}

.director-card {
    overflow: hidden;
    background: var(--brand-navy);
    border-radius: 24px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 120px;
}

.director-photo {
    padding: 7px 7px 0;
    background: #13324d;
}

.director-photo img {
    display: block;
    height: 320px;
    object-fit: cover;
    object-position: top;
    border-radius: 18px 18px 0 0;
    width: 100%;
}

.director-info {
    padding: 15px;
}

.director-info span {
    color: #bce581;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.director-info h2 {
    margin: 0px 0 5px;
    color: #fff;
    font-size: 17px;
}

.director-info p {
    margin: 5px 0;
    color: rgba(255, 255, 255, .67);
    font-size: 12px;
    line-height: 1.6;
}

blockquote {
    position: relative;
    margin: 10px 0;
    padding: 17px 16px 17px 27px;
    color: var(--brand-navy);
    background: var(--light);
    border-left: 5px solid var(--brand-green);
    border-radius: 0 16px 16px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.leadership-grid>div {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 7px 20px rgba(13, 50, 72, .04);
}

.leadership-grid h3 {
    margin-bottom: 8px;
    font-size: 14px;
}

.leadership-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.responsibility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.responsibility-tags span {
    padding: 9px 13px;
    color: #3c7615;
    background: #eef7e8;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 500;
}

.responsibility-tags i {
    color: var(--brand-green-dark);
    font-size: 14px;
    text-align: center;
    width: 26px;
    display: inline-block;
    margin-right: 2px;
}

.projects-section {
    background: #f3f8f7;
}

.project-summary .summary-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(13, 50, 72, .05);
}

.summary-card>span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #fff;
    background: var(--brand-navy);
    border-radius: 14px;
    font-size: 22px;
}

.summary-card strong,
.summary-card small {
    display: block;
}

.summary-card strong {
    color: var(--brand-navy);
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
}

.summary-card small {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.accordion-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 15px !important;
    box-shadow: 0 15px 40px rgba(13, 50, 72, .07);
    margin-bottom: 15px;
}

.accordion-body p {
    margin-bottom: 0;
}

.project-table {
    min-width: 920px;
}

.project-table thead th {
    padding: 13px 15px;
    font-weight: 300;
    color: #fff;
    background: var(--brand-navy);
    border: 0;
    font-size: 12px;
    letter-spacing: .06em;
    white-space: nowrap;
}

.project-table tbody td {
    padding: 16px;
    color: #556c7e;
    border-color: #e8efed;
    font-size: 12px;
    vertical-align: middle;
    background: #fff;
}

.project-table thead th:first-child{
    border-radius: 15px 0 0px 0px;
}
.project-table thead th:last-child{
    border-radius: 0px 15px 0px 0px;
}
.accordion-item .project-table thead th{
    border-radius:0px;

}


.project-table tbody tr:hover td {
    background: #f5faf8;
}
.project-table tfoot{
    background: #13324d;
}

.project-table tfoot tr th{
    color: #78d561;
    font-family: serif;
    font-size: 17px;
    font-weight: 600;
}
.project-table strong {
    color: var(--brand-navy);
    font-weight: 500;
}

.state-badge {
    display: inline-grid;
    place-items: center;
    min-width: 34px;
    height: 28px;
    color: var(--brand-green-dark);
    background: #eef8e7;
    border-radius: 7px;
    font-weight: 500;
}

.completed-projects h2 {
    font-size: 34px;
}

.project-accordion {
    display: grid;
    gap: 16px;
}

.project-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: #000;
}

.project-accordion .accordion-button:not(.collapsed)::after {
    filter: inherit;
}

.accordion-item {
    border: 1px solid var(--border) !important;
}

.accordion-button {
    display: flex;
    gap: 15px;
    padding: 16px 25px;
    color: #8b8b8b;
    background: #fff;
    box-shadow: none;
    font-size: 14px;
    text-transform: capitalize;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-teal));
}

.accordion-button::after {
    margin-left: auto;

}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1)
}

.accordion-title-icon {
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    height: 46px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-teal));
    border-radius: 13px;
    font-size: 20px;
}

.project-accordion .accordion-button strong,
.project-accordion .accordion-button small {
    display: block;
}

.project-accordion .accordion-button strong {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

.project-accordion .accordion-button small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.realestate-visual {
    position: relative;
    padding: 10px;
    background: linear-gradient(145deg, #edf8e6, #e3f6f3);
    border-radius: 25px;
}

.realestate-visual::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 2px dashed rgba(31, 167, 166, .35);
    border-radius: 28px;
}

.realestate-visual img {
    position: relative;
    width: 100%;
    /*height: 520px;*/
    /*object-fit: contain;*/
    filter: drop-shadow(0 20px 30px rgba(18, 51, 75, .12));
    border-radius: 25px;
}

.realestate-label {
    position: absolute;
    right: 30px;
    bottom: 35px;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 12px;
}

.realestate-label i {
    margin-right: 7px;
    color: #bce581;
}

.realestate-section h2 {
    margin: 12px 0 16px;
    font-size: clamp(36px, 5vw, 56px);
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 5px;
}

.amenity-grid>div {
    padding: 17px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.amenity-grid i {
    color: var(--brand-teal);
    font-size: 22px;
}

.amenity-grid h3 {
    margin: 0px;
    font-size: 14px;
}

.amenity-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.55;
}

.values-section {
    background: linear-gradient(180deg, #edf6f3, #f8fbfa);
}

.value-card {
    height: 100%;
    padding: 30px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(13, 50, 72, .05);
}

.value-card .service-icon {
    margin: 0 auto 20px;

}

.value-card h3 {
    font-size: 17px;
}

.value-card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.thank-you-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 10px 15px;
    color: #ffffff;
    background: rgba(184, 235, 114, 0.1);
    border: 1px solid rgba(184, 235, 114, 0.16);
    border-left: 4px solid #b8eb72;
    border-radius: 0 12px 12px 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    width: auto;
}

.thank-you-icon {
    display: inline-flex;
    flex: 0 0 26px;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: #082437;
    background: #b8eb72;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
}


.quality-card {
    padding: 55px;
    color: #fff;
    background: var(--brand-navy-deep);
    border-radius: 26px;
    box-shadow: 0 25px 70px rgba(7, 29, 46, .20);
}

.quality-card p {
    color: rgba(255, 255, 255, .68);
}

.cta-section {
    position: relative;
    padding: 85px 0;
    color: #fff;
    background: var(--brand-teal) url("../images/toll-building.webp") center/cover no-repeat;
    isolation: isolate;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(7, 29, 46, .97), rgba(10, 49, 65, .88), rgba(31, 167, 166, .72));
}

.cta-section h2 {
    margin-bottom: 0;
}

.footer {
    padding: 75px 0 0;
    color: rgba(255, 255, 255, .58);
    background: #0f2638;
}

.footer-brand img {
    width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .92;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    line-height: normal;
    margin-top: 8px;
}

.footer-brand span {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
}

.footer p {
    max-width: 460px;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
}

.footer p strong {
    font-weight: 500;
    color: #d1d1d1;
}

.footer h3 {
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    padding-bottom: 16px;
}

.footer h3:after,
.footer h3:before {
    content: "";
    height: 4px;
    position: absolute;
    bottom: 0;
    border-radius: 50px;
}

.footer h3:before {
    background: #ffffff;
    left: 40px;
    width: 8px;
}

.footer h3:after {
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-teal));
    left: 0px;
    width: 34px;
}

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer li {
    margin-bottom: 9px;
}

.footer a {
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    transition: 0.5s;
}

.footer a i {
    margin-right: 5px;
}

.footer a:hover {
    color: #bce581;
    padding-left: 3px;
}

.footer-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-meta i {
    color: #bce581;
}

.footer-bottom {
    margin-top: 55px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 11px;
    color: #3ab55e;
}

.copyright a {
    color: #3ab55e;
}

.copyright a:hover {
    padding: 0;
}

.copyright {
    color: #ffffff4d;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1010;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-teal));
    border: 0;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(31, 167, 166, .32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .25s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: .12s;
}

.delay-2 {
    transition-delay: .22s;
}

.delay-3 {
    transition-delay: .32s;
}

.page-hero {
    position: relative;
    min-height: 600px;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
    padding: 7rem 0 4rem;
}
.page-hero .eyebrow,
.hero-section .eyebrow{
        position: relative;
    display: inline-block;
    overflow: hidden;
    isolation: isolate;
    font-size: 12px;
    background: #c4ed92;
    padding: 3px 9px;
    border-radius: 8px;
    color: #000;
    line-height: normal;
}

.page-hero .eyebrow::before,
.hero-section .eyebrow::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 35%;
    height: 200%;
    z-index: -1;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );

    transform: rotate(20deg);
    animation: eyebrowShine 2.5s linear infinite;
}
.page-hero .eyebrow i,
.hero-section .eyebrow i {
    margin-right: 8px;
}
/* Soft animated glow */
.page-hero .eyebrow::after ,
.hero-section .eyebrow::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    border-radius: inherit;

    background: linear-gradient(
        90deg,
        #c4ed92,
        #e6ffc7,
        #9edc55,
        #c4ed92
    );
    background-size: 300% 100%;

    animation: eyebrowGradient 4s linear infinite;
}

@keyframes eyebrowShine {
    0% {
        left: -60%;
    }

    100% {
        left: 130%;
    }
}

@keyframes eyebrowGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.real-estate-hero {
    background: var(--brand-navy-deep) url("../images/real-estate-banner.webp") center/cover no-repeat;
}
.construction-hero{
        background: var(--brand-navy-deep) url("../images/construction-banner.jpg") center/cover no-repeat;
}
.toll-collection-hero{
     background: var(--brand-navy-deep) url("../images/toll-collection-hero.png") center/cover no-repeat;
}

.query-hero-banner{
    background: var(--brand-navy-deep) url("../images/query-hero-benner.jpg") right/cover no-repeat;
}
.careers-hero-banner{
     background: var(--brand-navy-deep) url("../images/carrer-hero-banner.jpg") right/cover no-repeat;
}

.career-applicatoin {
    background: var(--light);
}

.feature-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: .3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    width: 80px;
    height: 80px;
    position: absolute;
    right: -34px;
    bottom: -34px;
    border-radius: 50%;
    background: rgba(246, 185, 0, .12);
    transition: .3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(246, 185, 0, .65);
    box-shadow: var(--shadow);
}

.feature-card:hover::after {
    transform: scale(1.6);
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    margin-top: 15px;
}

.feature-card p {
    color: var(--muted);
    margin: 0;
    font-size: 14px;
}

.form-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 38px;
    box-shadow: var(--shadow);
}

.upload-box {
    position: relative;
    border: 1.5px dashed #b8c4cf;
    border-radius: 8px;
    background: #f9fbfc;
    padding: 22px;
    text-align: center;
    transition: .25s ease;
}

.upload-box:hover {
    border-color: var(--accent);
    background: #fffdf4;
}

.upload-box input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-box i {
    color: var(--accent-dark);
    font-size: 25px;
    margin-bottom: 8px;
}

.upload-box strong {
    display: block;
    color: #2a2a2a;
    font-size: 13px;
    font-weight: 400;
}

.upload-box span {
    color: var(--muted);
    font-size: 11px;
}

.form-note {
    display: flex;
    gap: 10px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.form-note i {
   color: #c1c0c0;
    margin-top: 0;
    font-size: 18px;
}

.form-label {
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 3px;
}

.form-control,
.form-select {
    min-height: 40px;
    border-radius: 10px;
    border-color: #d9dfeb;
    color: #585858;
    font-size: 13px;
    box-shadow: none !important;
    padding-left: 15px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.form-control::placeholder,
textarea::placeholder {
    color: #a3a3a3 !important;
    font-size: 13px;
    font-weight: 400;
    opacity: 1;
}

/* Browser support */
.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #a3a3a3;
}

.form-control:focus,
.form-select:focus {
    border-color: #26a598;
}

textarea.form-control {
    min-height: 135px;
    padding-top: 14px;
    resize: vertical;
}

.process-grid {
    counter-reset: process;
}

.process-card::before {
    counter-increment: process;
    content: '0' counter(process);
    display: block;
    color: rgba(11, 41, 71, .12);
    font-size: 56px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: -17px;
}

.process-card {
    position: relative;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 7px 20px rgba(13, 50, 72, .04);
}

.process-card h3 {
    font-size: 18px;
    margin-bottom: 9px;
    position: relative;
}

.process-card p {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
}



.query-header,
.careers-header {
    background: #ffffff;
    font-size: 12px;
    color: #217a2b;
    border: solid 1px #afc5b2;
    text-align: center;
    padding: 5px 9px;
    min-width: 90px;
    display: flex;
    gap: 7px;
    justify-content: center;
    transition: 0.3s;
}

.query-header:hover,
.careers-header:hover,
.query-header.active,
.careers-header.active {
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-teal));
    color: #fff;
}

.careers-header {
    border-radius: 12px 0px 0px 12px;
    padding-left: 10px;
}

.query-header {
    border-left: none;
    border-radius: 0px 12px 12px 0px;
    padding-right: 10px;

}


.contact-panel {
    height: 100%;
    background: #0f2638;
    color: #fff;
    border-radius: var(--radius);
    padding: 38px;
    position: relative;
    overflow: hidden;
}

.contact-panel::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 40px solid rgb(66 159 98 / 20%);
}

.contact-panel h3 {
    font-size: 27px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.contact-panel>p {
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    position: relative;
    z-index: 1;
}

.contact-item-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-teal));
    color: #fff;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 400;
    line-height: normal;
    color: #ffffffe3;
}

.contact-item .contact-call span,
.contact-item a {
    display: block;
    color: rgb(255 255 255 / 58%);
    font-size: 12px;
    font-weight: 300;
}

.accordion-button:focus {
    box-shadow: none;
}

.point-list {
    padding: 0;
    list-style: none;
    margin: 20px 0px;
}

.point-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 11px;
    font-size: 14px;
    color: #282828;
    text-transform: capitalize;
    font-weight: 400;
}

.point-list li i {
    color: #519b44;
    position: absolute;
    font-size: 15px;
    left: 0;
    top: 0px;
}


.section-dark-heading h2 {
    color: #fff;
}

.section-dark-heading p {
    color: #ffffff61;
}

/* Why Choose Us */

.why-section {
    position: relative;
    background: var(--brand-navy-deep);
}

.why-card {
    height: 100%;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: rgb(86 154 57);
    background-color: rgba(255, 255, 255, 0.11);
    transform: translateY(-7px);
}

.why-card i {
    display: inline-block;
    font-size: 33px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-teal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.why-card h5 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 9px;
    font-weight: 500;
}

.why-card p {
    font-size: 14px;
    margin: 0;
}

.technology-list {
    display: grid;
    margin-top: 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.technology-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid #cee5dc;
    border-radius: 10px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    flex-direction: column;
}

.technology-item:hover {
    border-color: rgba(247, 148, 29, 0.55);
    transform: translateX(7px);
    box-shadow: 0 12px 30px rgba(8, 39, 68, 0.08);
}

.technology-item h6 {
    margin-bottom: 0px;
}

.technology-item p {
    font-size: 13px;
    margin: 0;
}
/* Navbar toggler */
    .custom-toggler {
    position: relative;
    display: block;
    width: 26px;
    height: 20px;
}

    .custom-toggler span {
     position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: #000000;
    transition: all 0.3s ease;
    }

    .custom-toggler span:nth-child(1) {
      top: 0;
    }

    .custom-toggler span:nth-child(2) {
      top: 9px;
    }

    .custom-toggler span:nth-child(3) {
      bottom: 0px;
    }

    .navbar-toggler[aria-expanded="true"] .custom-toggler span:nth-child(1) {
      top: 10px;
      transform: rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .custom-toggler span:nth-child(2) {
      opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] .custom-toggler span:nth-child(3) {
      top: 10px;
      transform: rotate(-45deg);
    }





/* ==================================================
   RESPONSIVE CSS
================================================== */


/* ==================================================
   LARGE TABLET / SMALL DESKTOP
   0px to 1199.98px
================================================== */
@media (max-width: 1199.98px) {

    /* Topbar & Navbar */
    .topbar {
        display: none !important;
    }

    .navbar-shell {
        top: 0;
    }

    .navbar .dropdown-menu {
    margin-top: 5px;
    background-color: #ebf0f5;
    box-shadow: none;
    display: none;
    border-radius: 0;
    margin-bottom: 20px;
    min-width: auto;
}

    .navbar .dropdown-menu.show{
        display: block;
    }

    .navbar-nav {
        padding: 18px 0;
    }

    .navbar-nav .nav-link {
        padding: 9px 0 !important;
        border-bottom: solid 1px #e3e3e3;
        
    }

    .navbar-nav .nav-link::after {
        display:none;
    }
    .navbar-nav .nav-link.dropdown-toggle::before{
    border-bottom: solid 1px #6a6a6a;
    border-right: solid 1px #6a6a6a;
    right: 10px;
    top: 14px;
    width: 10px;
    height: 10px;
}

    /* Header Buttons */
    .query-header,
    .careers-header {
        position: relative;
        display: block;
        padding: 9px 0 !important;
        border: none;
        background: transparent;
        color: rgba(0, 0, 0, 0.55);
        font-size: 13px;
        font-weight: 500;
        text-align: left;
        border-bottom: solid 1px #e3e3e3;
        border-radius: 0px;
    }

    .query-header i,
    .careers-header i {
        display: none;
    }

    .query-header:hover,
    .careers-header:hover,
    .query-header.active,
    .careers-header.active {
        background: transparent;
        color: rgba(0, 0, 0, 0.55);
    }

    /* Hero Section */
    .hero-section {
        min-height: 720px;
    }

    .hero-copy {
        padding-top: 110px;
        text-align: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-copy .d-flex,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        transform: scale(0.9);
        transform-origin: center;
    }

    /* Statistics */
    .stats-strip {
        margin-top: -25px;
    }

    .stat-item {
        border-bottom: 1px solid var(--border);
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    /* Common Sections */
    .section-padding {
        padding: 85px 0;
    }

    /* About Section */
    .image-composition {
        max-width: 650px;
        margin-inline: auto;
    }

    /* Expertise Section */
    .expertise-image {
        min-height: 480px;
    }

    .expertise-content {
        padding: 70px 45px;
    }

    /* Leadership */
    .director-card {
        max-width: 460px;
        margin-inline: auto;
    }

    /* Quality Section */
    .quality-card {
        padding: 40px;
    }

    /* CTA Section */
    .cta-section {
        text-align: center;
    }
}


/* ==================================================
   TABLET
   0px to 991.98px
================================================== */
@media (max-width: 991.98px) {

    .technology-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .location-content {
        padding: 40px 30px;
    }

    .map-box,
    .map-box iframe {
        min-height: 400px;
    }
}


/* ==================================================
   MOBILE / SMALL TABLET
   0px to 767.98px
================================================== */
@media (max-width: 767.98px) {

    body {
        font-size: 14px;
    }

    /* Header */
    .brand-logo {
        width: 74px;
        height: 40px;
        object-fit: contain;
    }

    /* Hero Section */
    .hero-copy h1 {
        font-size: 45px;
    }

    .hero-lead {
        font-size: 15px;
    }

    .hero-trust {
        gap: 16px;
    }

    .hero-trust div {
        min-width: 92px;
    }

    .scroll-down {
        display: none;
    }

    /* Statistics */
    .stat-item {
        min-height: 100px;
        padding: 20px 16px;
    }

    .stat-item>i {
        font-size: 23px;
    }

    .stat-item strong {
        font-size: 22px;
    }

    .stat-item span {
        font-size: 9px;
    }

    /* Section Heading */
    .section-heading h2 {
        font-size: 31px;
    }

    /* About Images */
    .img-main {
        height: 380px;
    }

    .img-small {
        width: 200px;
        height: 145px;
    }

    .experience-badge {
        width: 94px;
        height: 94px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    /* Services */
    .service-card {
        min-height: auto;
    }

    /* Expertise */
    .expertise-image {
        min-height: 380px;
    }

    .expertise-image-overlay {
        bottom: 25px;
        left: 28px;
    }

    .expertise-content {
        padding: 55px 25px;
    }

    /* Leadership & Amenities */
    .leadership-grid,
    .amenity-grid {
        grid-template-columns: 1fr;
    }

    /* Project Accordion */
    .project-accordion .accordion-button strong {
        font-size: 13px;
    }

    .accordion-title-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    /* Real Estate */
    .realestate-visual img {
        height: 400px;
    }

    /* Quality */
    .quality-card {
        padding: 30px 22px;
        border-radius: 20px;
    }

    .quality-card h2 {
        font-size: 29px;
    }

    /* Footer */
    
    .footer-bottom{
        text-align:center;
    }
    
}


/* ==================================================
   SMALL MOBILE
   0px to 575.98px
================================================== */
@media (max-width: 575.98px) {

    /* Navbar */
    .navbar-brand {
        gap: 8px !important;
    }

    /* Map */
    .map-box,
    .map-box iframe {
        min-height: 320px;
    }

    /* Technology Grid */
    .technology-list {
        grid-template-columns: 1fr;
    }

    /* Hero Section */
    .hero-section {
        min-height: 690px;
        padding-bottom:50px;
    }

    .hero-copy h1 {
        font-size: 39px;
    }

    .btn-lg {
        width: 100%;
    }

    .hero-trust {
        margin-top: 28px !important;
    }

    /* Statistics */
    .stats-strip {
        padding-inline: 12px;
    }

    .stat-item {
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        text-align: center;
    }

    /* About Images */
    .image-composition {
        padding: 0 25px 55px 0;
    }

    .img-main {
        height: 310px;
    }

    .img-small {
        width: 155px;
        height: 115px;
        border-width: 5px;
    }

    .experience-badge {
        top: 20px;
        right: -2px;
    }

    /* Mission Tabs */
    .mission-tabs .nav-link {
        min-width: 125px;
        font-size: 12px;
    }

    blockquote {
        font-size: 17px;
    }

    /* Director */
    .director-photo img {
        height: 330px;
    }

    /* Completed Projects */
    .completed-projects h2 {
        font-size: 28px;
    }

    /* Real Estate */
    .realestate-visual {
        padding: 15px;
    }

    .realestate-visual img {
        height: 320px;
    }

    .realestate-label {
        bottom: 24px;
        left: 25px;
    }
    .page-hero .eyebrow, .hero-section .eyebrow{
        letter-spacing:1px;
        font-size:10px;
    }
}


/* ==================================================
   EXTRA SMALL MOBILE
   0px to 400px
================================================== */
@media (max-width: 400px) {

    .hero-copy h1 {
        font-size: 34px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .hero-trust {
        gap: 10px;
        flex-direction: column-reverse;
        text-align: left;
    }

    .hero-trust div {
        min-width: 80px;
    }

    .expertise-content {
        padding: 45px 18px;
    }

    .location-content {
        padding: 35px 20px;
    }

    .quality-card {
        padding: 25px 18px;
    }
}