@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}




:root {
    --mainThemeBg: #111213;
    --heroBg: #262728;
    --lightNavy: #1a1b1c;
    --bgSky: #d11114;
    --bgLightSky: #e6191d;
    --bgDark: #000000;
    --bgWhite: #ffffff;

    --clDark: #000000;
    --clWhite: #ffffff;
    --clTextDark: #333;
    --clTextMuted: #666;
    --clTextMutedLight: #94a3b8;
    --clTextAppleFooter: #86868b;
    --clTextParagraph: #4A5568;
    --clTextCheckmarkList: #333;
    --clTextSubtitle: #1e293b;

    --borderLightGray: #262729;
    --borderLightMenu: #ececec;
    --borderE2E8F0: #E2E8F0;
    --borderCBD5E1: #cbd5e1;
    --borderBoxOpacity: rgba(255, 255, 255, 0.4);
    --borderBoxOpacityHover: rgba(209, 17, 20, 0.4);
    --borderBoxFooterMedia: rgba(255, 255, 255, 0.08);


    --bgAboutWarm: #fbf8f8;
    --bgTestimonialsSlideHover: #fff4f4;
    --bgOutlineBoxHover: #231213;
    --shadowBoxAccent: rgba(209, 17, 20, 0.25);
    --shadowBoxCardHover: rgba(209, 17, 20, 0.06);
    --shadowBoxHeader: rgba(0, 0, 0, .08);
    --shadowBoxHeroContainer: rgba(0, 0, 0, 0.15);

    --tintQuoteIcon: rgba(209, 17, 20, 0.07);
    --tintAvatarFrame: rgba(209, 17, 20, 0.1);
    --tintTestimonialCard: rgba(17, 18, 19, 0.02);
    --tintIconCircleShadow: rgba(17, 18, 19, 0.15);
    --tintBarItemOutlineBox: rgba(255, 255, 255, 0.08);
    --tintBarItemOutlineBoxHigh: rgba(255, 255, 255, 0.45);
}

.mainThemeBg {
    background: var(--mainThemeBg);
}

.mainThemCl {
    color: var(--clWhite);
}

.bgDark {
    background: var(--bgDark);
}

.clDark {
    color: var(--clDark);
}

.bgWhite {
    background: var(--bgWhite);
}

.clWhite {
    color: var(--clWhite);
}

.bgSky {
    background: var(--bgSky);
}

.clSky {
    color: var(--bgSky);
}

.bgLightSky {
    background: var(--bgLightSky);
}

.clLightSky {
    color: var(--bgLightSky);
}

/* ####### Header ####### */

.main-header {
    background: var(--bgWhite);
    transition: .35s;
    z-index: 9999;
    border-bottom: 1px solid rgb(158, 173, 19);
    /* border-bottom: 1px solid #f1efef; */
}

.main-header.scrolled {
    box-shadow: 0 10px 30px var(--shadowBoxHeader);
}

.navbar-brand img {
    height: 60px;
}

.navbar {
    padding: 14px 0;
}

.navbar-nav {
    gap: 20px;
}

.nav-link {
    position: relative;
    color: var(--clTextDark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 4px !important;
    transition: .3s;
}

.nav-link:hover {
    color: var(--bgSky);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--bgSky);
    transition: .3s;
    border-radius: 50px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--bgSky);
}

.nav-link.active::after {
    width: 100%;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icons .icon-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--heroBg);
    color: var(--clWhite);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .35s;
}

.header-icons .icon-btn:hover {
    background: var(--bgSky);
    color: var(--clWhite);
    transform: translateY(-3px);
}

/* ######## Hero Section ####### */

.hero-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadowBoxHeroContainer);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background-color: var(--bgDark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.overlay-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-overlay-accent-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--bgSky);
    z-index: 3;
    clip-path: ellipse(90% 120% at 0% 50%);
}

.hero-overlay-accent-white {
    position: absolute;
    top: 0;
    left: 0;
    width: 47%;
    height: 100%;
    background: var(--bgWhite);
    z-index: 4;
    clip-path: ellipse(90% 120% at 0% 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: var(--heroBg);
    z-index: 5;
    clip-path: ellipse(90% 120% at 0% 50%);
    display: flex;
    align-items: center;
    padding-left: 6%;
    color: var(--clWhite);
    pointer-events: auto;
}

.hero-content {
    position: absolute;
    max-width: 520px;
    padding-right: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(60px);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.6s ease,
        visibility 0.6s;
    pointer-events: none;
    will-change: transform, opacity;
}

.hero-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-content.exit {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-60px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.4s ease,
        visibility 0.4s;
}

.btn-learn-more {
    transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.btn-learn-more:hover {
    transform: translateY(-2px) !important;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 8px;
    color: var(--clWhite);
}

.hero-content h1 span {
    color: var(--bgSky);
    display: block;
    font-weight: 700;
    font-size: 3.2rem;
    margin-top: 4px;
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--clWhite);
    opacity: 0.95;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    background-color: var(--bgLightSky);
    color: var(--clWhite);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.btn-learn-more:hover {
    background-color: var(--bgSky);
    color: var(--clWhite);
}

.btn-learn-more i {
    margin-left: 12px;
    font-size: 0.9rem;
}

.bottom-bar {
    position: relative;
    background-color: var(--mainThemeBg);
    border-top: 1px solid var(--borderLightGray);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 35px 4%;
    align-items: center;
    z-index: 10;
}

.getBid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.join-panels {
    border-left: 1px solid var(--borderLightGray);
}

.slider-nav {
    position: absolute;
    right: 20px;
    bottom: 0px;
    transform: translateY(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--clWhite);
    background: var(--lightNavy);
    color: var(--clWhite);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: var(--bgWhite);
    color: var(--mainThemeBg);
    border-color: var(--bgWhite);
}

.bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clWhite);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0 15px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.bar-item:last-child {
    border-right: none;
}

.bar-item:hover {
    opacity: 0.85;
}

.bar-item i {
    font-size: 1.8rem;
    margin-right: 15px;
    color: var(--clWhite);
}

.bar-text span {
    display: block;
}

.text-highlight-blue {
    color: var(--bgLightSky);
    font-weight: 600;
    display: inline !important;
}

.bar-item.outline-box {
    position: relative;
    border: 1px solid var(--borderBoxOpacity);
    border-radius: 6px;
    padding: 10px 20px;
    max-width: 200px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
    background-color: var(--lightNavy);
    transition: border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, box-shadow;
}

.bar-item.outline-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            var(--tintBarItemOutlineBox) 20%,
            var(--tintBarItemOutlineBoxHigh) 50%,
            var(--tintBarItemOutlineBox) 80%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    transition: left 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.bar-item.outline-box:hover {
    color: var(--clWhite);
    border-color: var(--bgSky);
    background-color: var(--bgOutlineBoxHover);
    transform: translateY(-4px);
    box-shadow: 0 10px 24px var(--shadowBoxAccent);
}

.bar-item.outline-box:hover::before {
    left: 150%;
}

a:hover {
    color: var(--clWhite);
}

/* ########## Services Section ######### */

section.services-section {
    padding: 80px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.services-header h2 span {
    color: var(--bgSky);
}

.services-header::before,
.services-header::after {
    content: '';
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--bgSky));
}

.services-header::after {
    background: linear-gradient(90deg, var(--bgSky), transparent);
}

.services-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clTextDark);
    white-space: nowrap;
}

.services-overview {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    top: -180px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(230, 0, 18, .08),
            transparent 70%);
}

.section-title span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #D71920;
    letter-spacing: 2px;
    padding: 0 40px;
}

.service-title {
    font-size: 68px;
    line-height: 80px;
    font-weight: 500;
    color: var(--clTextDark);
}

.service-title span {

    color: var(--bgSky);
}

.title-line {
    width: 80px;
    height: 5px;
    border-radius: 30px;
    background: var(--bgSky);
    margin: 15px 0 35px 0;
}

.service-desc {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--clTextMuted);
    font-size: 16px;
}

.service-btn {

    background: #d71920;
    color: #fff;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 600;
    transition: .35s;
}

.service-btn:hover {

    background: #111;
    color: #fff;
}

.map-wrapper {

    position: relative;
}

.world-map {

    width: 100%;
}

.pin {

    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--bgSky);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(215, 25, 32, .35);
}

.pin::after {

    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--bgSky);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {

        transform: translate(-50%, -50%) scale(.5);
        opacity: 1;
    }

    100% {

        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }

}

.pin1 {

    top: 22%;
    left: 28%;
}

.pin2 {

    top: 38%;
    left: 60%;
}

.pin3 {
    top: 57%;
    left: 55%;
}

.pin4 {
    top: 34%;
    left: 80%;
}

.pin5 {
    top: 67%;
    left: 74%;
}

.pin6 {
    top: 41%;
    left: 13%;
}

.feature-box {
    background: #fff;
    border-radius: 22px;
    padding: 20px 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.feature-item {

    border-right: 1px solid #ececec;
    padding: 10px 20px;
}

.icon {
    width: 75px;
    height: 75px;
    margin: auto;
    background: #fff5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--bgSky);
    margin-bottom: 20px;
}

.contact-page .icon {
    margin: 0;
}

.feature-item h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--clTextDark);
}

.feature-item p {
    font-size: 14px;
    color: var(--clTextMuted);
    margin: 0;
}


/* ########## About Section ############ */

.exact-about-section {
    width: 100%;
    padding: 80px 0;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
}

.exact-about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 20px;
}

.exact-text-column {
    flex: 1.1;
    max-width: 560px;
}

.exact-subtitle {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clTextSubtitle);
    margin-bottom: 4px;
}

.exact-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--bgSky);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.exact-checkmark-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exact-checkmark-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.exact-checkmark-list li:last-child {
    margin-bottom: 0;
}

.exact-checkmark-list li i {
    color: var(--bgSky);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.exact-checkmark-list li p {
    margin: 0;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.9;
    color: var(--clTextMuted);
    font-size: 16px;
}

.exact-visual-column {
    flex: 0.9;
    position: relative;
    display: flex;
    justify-content: flex-end;
    height: 320px;
}

.exact-picture-mask {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    border-radius: 40px 40px 40px 0;
    box-shadow: 0 15px 35px var(--shadowBoxCardHover);
}

.exact-picture-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exact-dots-pattern {
    position: absolute;
    left: -35px;
    top: 10%;
    width: 75px;
    height: 120px;
    z-index: 1;
    background-image: radial-gradient(var(--bgSky) 2px, transparent 2.5px);
    background-size: 15px 15px;
    opacity: 0.8;
}

.exact-pill-shape {
    position: absolute;
    left: -25px;
    bottom: -20px;
    width: 90px;
    height: 90px;
    background-color: var(--mainThemeBg);
    border-radius: 50%;
    z-index: 2;
}





/* ############ feild Managment ############ */


.feild-managment {
    width: 100%;
    height: 600px;
    background: url("/img/bgNode.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.feild-heading {
    display: inline-block;
    padding: 25px 30px;
    background: #ffffff38;
    color: var(--clWhite);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feild-heading h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0;
}

.project-management {
    width: 100%;
    background-color: var(--bgAboutWarm);
    padding: 80px 0;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
}

.project-card {
    overflow: hidden;
    position: relative;
}

.sub-heading {

    color: var(--bgSky);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-heading {
    margin-bottom: 25px;
    font-size: 68px;
    line-height: 80px;
    font-weight: 500;
    color: var(--clTextDark);
}

.main-heading span {
    display: block;
    color: var(--bgSky);
}

.project-card p {
    max-width: 430px;
    line-height: 1.9;
    color: var(--clTextMuted);
    font-size: 16px;
}

.red-line {
    width: 40px;
    height: 4px;
    background: #e61b23;
    border-radius: 30px;
    position: relative;
    z-index: 10;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--clTextMuted);
}

.feature i {
    color: var(--bgSky);
    margin-top: 4px;
    font-size: 13px;
}

.learn-btn {
    background: var(--bgSky);
    color: #fff;
    border-radius: 8px;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: .35s;
}

.learn-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
}

.image-box {
    position: relative;
    text-align: center;
}

.project-img {
    position: relative;
    z-index: 3;
    max-width: 470px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.recruiting-section {
    width: 100%;
    padding: 80px 0;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
}

.image-wrapper {
    position: relative;
}

.shape {
    position: absolute;
    width: 88%;
    height: 88%;
    background: var(--bgSky);
    border-radius: 35px;
    left: -25px;
    top: -25px;
    z-index: 1;
}

.main-img {
    position: relative;
    z-index: 2;
    border-radius: 35px;
    border: 8px solid #fff;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .18);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.section-title span {
    color: #555;
    font-size: 18px;
}

.section-title h2 {
    font-size: 18px;
    color: var(--bgSky);
    letter-spacing: 1px;
    position: relative;
    margin: 0;
}

.main-heading span {
    color: var(--bgSky);
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 25px;
    background: #fff;
    border-radius: 18px;
    margin-bottom: 18px;
    border: 1px solid #ececec;
    transition: .35s;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, .05);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 45px rgba(216, 31, 38, .18);
}

.feature-card .icon {
    min-width: 68px;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: #fff5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bgSky);
    font-size: 28px;
    border: 2px solid #ffe3e3;
    margin: 0;
}

.feature-card p {
    margin: 0;
    line-height: 1.9;
    color: var(--clTextMuted);
    font-size: 16px;
}

.recruiting-section .section-title span {
    color: var(--bgSky);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0;
}

.approach-section {
    width: 100%;
    background-color: var(--bgAboutWarm);
    padding: 80px 0;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section-heading .line {
    width: 90px;
    height: 2px;
    background: #bdbdbd;
    position: relative;
}

.section-heading .line::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d91e26;
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);

}

.section-heading h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.section-heading h2 span {
    color: #d91e26;
}

.section-subtitle {
    text-align: center;
    margin: 0;
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--clTextMuted);
    font-size: 16px;
}

.approach-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}

.approach-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.approach-card::before {
    content: "";
    display: block;
    height: 135px;
    background: #fff;
}

.icon-circle {
    position: absolute;
    left: 50%;
    top: 88px;
    transform: translateX(-50%);
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bgSky);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 52px;
    color: #222;
    z-index: 5;
}

.icon-circle i {
    color: var(--heroBg);
    font-size: 42px;
}

.card-content {
    background: var(--heroBg);
    color: #fff;
    padding: 70px 30px 40px;
    text-align: center;
    position: relative;
    border-top: 4px solid #e61b23;
    height: 100%;
}

.card-content h4 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
    position: relative;
    z-index: 10;
}

.card-content p {
    color: #dddddd;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 10;
}



/* ############ Contact Us ############### */


section.contactUs-sec {
    width: 100%;
    background-color: var(--bgAboutWarm);
    padding: 80px 0 20px 0;
}

.contact-page {
    overflow: hidden;
    padding: 80px 0;
    width: 100%;
    background-color: var(--bgAboutWarm);
}

.premium-header {
    width: 100%;
    height: 430px;
    background: url('/img/PhoneBackground.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 85% center;
    color: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.contact-us-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.premium-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.premium-header h4 {
    color: var(--bgSky);
    margin-bottom: 35px;
    font-weight: 600;
    text-transform: uppercase;
}

.address-box {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    gap: 18px;
    align-items: center;
}

.address-box i {
    color: var(--bgSky);
    font-size: 24px;
}

.simple-title {
    font-size: 32px;
    font-weight: 700;
    margin: 80px 0 35px;
}

.simple-title span {
    color: var(--bgSky);
}

.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    transition: .35s;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    border-top: 4px solid var(--bgSky);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);

}

.profile {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bgSky);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.profile h5 {
    color: var(--clTextDark);
    margin: 0;
    font-weight: 700;
}

.profile span {
    margin: 0;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.9;
    color: var(--clTextMuted);
    font-size: 16px;
    ;
}

.contact-card hr {
    margin: 22px 0;
}

.info p {
    margin: 12px 0;
    color: var(--clTextMuted);
}

.info i {
    width: 28px;
    margin-right: 5px;
    color: var(--bgSky);
}




/* ####### Footer ####### */




.apple-style-footer {
    width: 100%;
    background-color: var(--heroBg);
    padding: 10px 0;
    color: var(--clWhite);
    position: relative;
}

.directory-column {
    display: flex;
    flex-direction: column;
}

.directory-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bgSky);
    margin-bottom: 22px;
}

.directory-paragraph {
    font-size: 0.78rem;
    line-height: 1.65;
    color: var(--clTextMutedLight);
    font-weight: 400;
    margin: 0 25px 24px 0;
    text-align: justify;
}

.directory-social-row {
    display: flex;
    gap: 16px;
}

.directory-social-row a {
    color: var(--clTextMutedLight);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.25, 1, 0.5, 1), transform 0.25s ease;
}

.directory-social-row a:hover {
    color: var(--clWhite);
    transform: translateY(-2px);
}

.directory-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.directory-links-list li {
    margin-bottom: 10px;
}

.directory-links-list li a {
    font-size: 0.78rem;
    color: var(--clTextMutedLight);
    text-decoration: none;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.directory-links-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--clWhite);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.directory-links-list li a:hover {
    color: var(--clWhite);
}

.directory-links-list li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.architectural-photo-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 240px;
}

.apple-media-box {
    position: relative;
    width: 100%;
    height: 80px;
    border-radius: 6px;
    border: 1px solid var(--borderBoxFooterMedia);
    overflow: hidden;
    background-color: var(--lightNavy);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease;
}

.apple-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.apple-media-box:hover {
    border-color: var(--borderBoxOpacityHover);
}

.apple-media-box:hover img {
    opacity: 1;
    transform: scale(1.04);
}

.apple-footer-separator {
    width: 100%;
    height: 1px;
    background-color: var(--borderBoxFooterMedia);
    margin: 50px 0 24px 0;
}

.apple-bottom-bar {
    width: 100%;
    position: relative;
}

.bottom-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.copyright-text,
.developer-credit {
    font-size: 0.72rem;
    color: var(--clTextAppleFooter);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.developer-credit a {
    color: var(--clTextAppleFooter);
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}

.developer-credit a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--clWhite);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.developer-credit a:hover {
    color: var(--clWhite);
}

.developer-credit a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}




/* ####### Media Queries ########## */




@media (max-width: 1200px) {
    .hero-overlay {
        width: 55%;
    }

    .hero-overlay-accent-white {
        width: 58%;
    }

    .hero-overlay-accent-blue {
        width: 61%;
    }

    .feild-heading h2 {
        font-size: 1.7rem;
    }

    .section-heading h2 {

        font-size: 42px;

    }

    .card-content h4 {

        font-size: 26px;

    }

    .main-heading {
        font-size: 52px;
    }

    .project-img {
        max-width: 400px;
    }
}

@media(max-width:991px) {
    .navbar-collapse {
        margin-top: 20px;
        background: var(--bgWhite);
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 15px 35px var(--shadowBoxHeader);
    }

    .navbar-nav {
        gap: 0;
    }

    .nav-link {
        padding: 14px 0 !important;
        border-bottom: 1px solid var(--borderLightMenu);
    }

    .header-icons {
        justify-content: center;
        margin-top: 20px;
    }

    .navbar-brand img {
        height: 52px;
    }

    .hero-overlay {
        width: 65%;
    }

    .hero-overlay-accent-white {
        width: 68%;
    }

    .hero-overlay-accent-blue {
        width: 71%;
    }

    .bottom-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .bar-item {
        border-right: none;
    }

    .services-grid {
        flex-direction: column;
        gap: 40px;
    }

    .service-column {
        padding: 20px 0;
    }

    .service-column:not(:last-child)::after {
        display: none;
    }

    .testimonials-slider-wrapper {
        padding-top: 60px;
    }

    .testimonial-slide {
        flex-direction: column;
        gap: 75px;
    }

    .apple-style-footer {
        padding: 60px 0 30px 0;
    }

    .directory-title {
        margin-bottom: 14px;
        margin-top: 15px;
    }

    .architectural-photo-stack {
        max-width: 100%;
        flex-direction: row;
        gap: 16px;
    }

    .apple-media-box {
        flex: 1;
        height: 110px;
    }

    .bottom-bar-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .apple-footer-separator {
        margin: 40px 0 20px 0;
    }

    .exact-about-section {
        clip-path: none;
        padding: 60px 0;
    }

    .exact-about-row {
        flex-direction: column;
        gap: 60px;
    }

    .exact-text-column,
    .exact-visual-column {
        width: 100%;
        max-width: 100%;
    }

    .exact-visual-column {
        padding-left: 35px;
        height: 340px;
    }

    .feild-heading h2 {
        font-size: 1.4rem;
    }

    .sub-heading {
        text-align: left;
    }

    .project-card p {
        text-align: left;
    }

    .main-heading {
        text-align: left;
    }

    .red-line {
        margin: 30px 0;
    }

    .learn-btn {
        margin: 40px 0;
    }


    .service-title {

        font-size: 50px;
        text-align: center;
    }

    .title-line {

        margin: 25px auto;
    }

    .service-desc {

        text-align: center;
    }

    .service-btn {

        display: block;
        width: max-content;
        margin: auto;
    }

    .feature-item {

        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 30px 0;
    }

    .feature-item:last-child {

        border-bottom: none;
    }

    .approach-section {

        padding: 70px 0;

    }

    .section-heading h2 {

        font-size: 38px;

    }

    .section-subtitle {

        font-size: 19px;

    }

    .recruiting-section .container {

        padding: 40px;

    }

    .main-heading {

        font-size: 42px;

    }

    .shape {

        display: none;

    }

    .main-img {

        width: 100%;

    }

    .project-management {
        padding: 70px 0;
    }

    .project-card {
        padding: 40px;
    }

    .main-heading {
        font-size: 46px;
        text-align: center;
    }

    .sub-heading {
        display: block;
        text-align: center;
    }

    .project-card p {
        max-width: 100%;
        text-align: center;
    }

    .red-line {
        margin: 30px auto;
    }

    .learn-btn {
        display: block;
        width: max-content;
        margin: 40px auto 0;
    }

    .image-box {
        margin-top: 60px;
    }

    .project-img {

        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .overlay-wrapper {
        height: auto;
        position: relative;
    }

    .hero-slider {
        height: 300px;
    }

    .hero-overlay {
        position: relative;
        width: 100%;
        clip-path: none;
        background: var(--mainThemeBg);
        padding: 40px 20px;
    }

    .hero-overlay-accent-white,
    .hero-overlay-accent-blue {
        display: none;
    }

    .feild-heading h2 {
        font-size: 1.2rem;
    }

    .premium-header {
        padding: 40px 25px;
    }

    .premium-header h2 {
        font-size: 30px;
    }

    .simple-title {
        font-size: 26px;
    }

    .section-heading {

        flex-direction: column;

        gap: 12px;

    }

    .section-heading .line {

        display: none;

    }

    .section-heading h2 {
        font-size: 32px;
        text-align: center;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .icon-circle {
        width: 110px;
        height: 110px;
        font-size: 42px;
        top: 60px;
    }

    .card-content {
        padding-top: 75px;
    }

    .card-content h4 {
        font-size: 24px;
    }

    .card-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .bottom-bar {
        grid-template-columns: 1fr;
    }

    .slider-nav {
        right: 20px;
    }

    .exact-title {
        font-size: 1.8rem;
    }

    .exact-visual-column {
        padding-left: 0;
        height: 240px;
    }

    .exact-picture-mask {
        border-radius: 24px 24px 24px 0;
    }

    .exact-dots-pattern,
    .exact-pill-shape {
        display: none;
    }

    .apple-media-box {
        height: 90px;
    }

    .approach-section {
        padding: 50px 0;
    }

    .section-heading h2 {
        font-size: 28px;
        white-space: pre-wrap;
    }

    .card-content {
        padding: 70px 20px 30px;
    }

    .card-content h4 {
        font-size: 22px;
    }

    .recruiting-section .container {
        padding: 25px;
    }

    .main-heading {
        font-size: 34px;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        justify-content: center;
    }

    .project-card {
        padding: 30px 20px;
    }

    .main-heading {
        font-size: 36px;
    }

    .feature {
        font-size: 14px;
    }

    .learn-btn {
        padding: 14px 28px;
        font-size: 13px;
    }

    .project-img {
        max-width: 240px;
    }

    .service-title {
        font-size: 40px;
    }
}