* {
    font-family: 'Inter', sans-serif;
}
body {
    overflow-x: hidden;
}

.font-8 { font-size: 0.5rem !important; }
.font-9 { font-size: 0.5625rem !important; }
.font-10 { font-size: 0.625rem !important; }
.font-11 { font-size: 0.6875rem !important; }
.font-12 { font-size: 0.75rem !important; }
.font-13 { font-size: 0.8125rem !important; }
.font-14 { font-size: 0.875rem !important; }
.font-15 { font-size: 0.9375rem !important; }
.font-16 { font-size: 1rem !important; }
.font-18 { font-size: 1.125rem !important; }
.font-20 { font-size: 1.25rem !important; }
.font-22 { font-size: 1.375rem !important; }
.font-24 { font-size: 1.5rem !important; }
.font-26 { font-size: 1.625rem !important; }
.font-28 { font-size: 1.75rem !important; }
.font-30 { font-size: 1.875rem !important; }
.font-32 { font-size: 2rem !important; }
.font-34 { font-size: 2.125rem !important; }
.font-36 { font-size: 2.25rem !important; }
.font-38 { font-size: 2.375rem !important; }
.font-40 { font-size: 2.5rem !important; }
.font-42 { font-size: 2.625rem !important; }
.font-44 { font-size: 2.75rem !important; }
.font-46 { font-size: 2.875rem !important; }
.font-48 { font-size: 3rem !important; }
.font-50 { font-size: 3.125rem !important; }
.font-52 { font-size: 3.25rem !important; }
.font-54 { font-size: 3.375rem !important; }
.font-56 { font-size: 3.5rem !important; }
.font-58 { font-size: 3.625rem !important; }
.font-60 { font-size: 3.75rem !important; }

/* Font Weights */
.weight-100 { font-weight: 100 !important; }
.weight-200 { font-weight: 200 !important; }
.weight-300 { font-weight: 300 !important; }
.weight-400 { font-weight: 400 !important; }
.weight-500 { font-weight: 500 !important; }
.weight-600 { font-weight: 600 !important; }
.weight-700 { font-weight: 700 !important; }
.weight-800 { font-weight: 800 !important; }
.weight-900 { font-weight: 900 !important; }

/* Navbar */
#mainNavbar {
    transition: background-color 0.3s ease;
}

#mainNavbar.scrolled {
    background-color: rgb(0 0 0 / 40%) !important;
    backdrop-filter: blur(4px);
}

.navbar-brand-mobile {
    display: none;
}

@media (min-width: 992px) {
    .navbar-nav {
        justify-content: flex-end !important;
        gap: 2rem;
    }
    
    .navbar-nav .nav-item:first-child {
        margin-right: auto;
    }
        .navbar-nav .nav-item.active {
        position: relative;
    }
    
    .navbar-nav .nav-item.active::after {
        content: '';
        position: absolute;
        bottom: -0px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 4px;
        background-color: #B65C2E;
        border-radius: 50%;
    }
    
    .navbar-nav .nav-item:first-child.active::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .navbar-brand-mobile {
        display: block;
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .navbar-brand-mobile img {
        height: 50px;
    }
}

.navbar-toggler {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    outline: none;
    z-index: 1050;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    background-image: none;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

@media (min-width: 992px) {

    .navbar-nav .nav-item .nav-link:hover {
        color: #d1d1d1 !important;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(17, 36, 58, 0.98);
        backdrop-filter: blur(10px);
        padding: 80px 0 20px 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1040;
                -webkit-transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        -moz-transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        -o-transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    
    .navbar-collapse.collapsing {
        right: -100%;
        transition: none !important;
        height: auto !important;
    }
    
    .navbar-collapse.show {
        right: 0;
    }
    .navbar-nav {
        flex-direction: column;
        padding: 0 1.5rem;
        gap: 0;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        animation: slideIn 0.4s ease forwards;
    }
    
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(2) {
        animation-delay: 0.15s;
    }
    
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(3) {
        animation-delay: 0.2s;
    }
    
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(4) {
        animation-delay: 0.25s;
    }
    
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(5) {
        animation-delay: 0.3s;
    }
    
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(6) {
        animation-delay: 0.35s;
    }
    
    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .navbar-nav .nav-item:first-child {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: center;
    }
    
    .navbar-nav .nav-item:not(:first-child) {
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.875rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:active {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }
    
    .navbar-brand {
        display: inline-block;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1030;
    }
    
    .mobile-menu-overlay.show {
        opacity: 1;
        visibility: visible;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-single {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-bg-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 120px;
}

.hero-badge {
    background-color: #B65C2E66;
    border: 1px solid #B65C2E;
    border-radius: 30px;
    color: white;
}

.hero-btn {
    background-color: white;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: rgb(180, 180, 180);
    color: black;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollAnimation 2s ease-in-out infinite;
}

@keyframes scrollAnimation {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}


@media (max-width: 767px) {
    .font-56 { font-size: 2rem !important; }
    
    .hero-split-bg .hero-bg-left,
    .hero-split-bg .hero-bg-right {
        width: 100%;
    }
    
    .hero-split-bg .hero-bg-right {
        opacity: 0.5;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-scroll-line {
        height: 40px;
    }
}

.hero-section:not(.hero-split-bg) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Credentials Cards */
.credentials-card {
    border: 2px solid #D8DEE6;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credentials-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.credentials-card h2 {
    flex-shrink: 0;
}

.credentials-card h3 {
    flex-shrink: 0;
}

.credentials-card p {
    flex: 1 1 auto;
    margin-bottom: 0;
}


@media (max-width: 991px) {
    .credentials-card-medium,
    .credentials-card-small {
        max-height: none;
    }
}


/* Feature Boxes */
.feature-box {
    background: #F5F7FA;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: #11243A;
}


/* Service Cards */
.service-card {
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.service-card img {
    object-fit: cover;
    z-index: 0;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #000000 0%, #11243A 60%, #11243A 100%);
    opacity: .6;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 60%;
}

.service-content-2 {
    z-index: 3;
    transition: all 0.3s ease;
}


.service-divider {
    width: 60px;
    height: 3px;
    background-color: #B65C2E;
}
.service-divider-2 {
    width: 60px;
    height: 3px;
    background-color: #1C6BFF;
}

.service-card a {
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-card a:hover {
    transform: translateX(5px);
}

.service-card a:hover i {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}

@media (max-width: 991px) {
    .service-card {
        height: 500px;
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .service-card {
        height: 400px;
        padding: 1.5rem;
    }
}

.tech-card {
    background: white;
    border: 2px solid #D8DEE6;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: #FAF4F0;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tech-badge-tech {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: #EFF4FF;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tech-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tech-icon-construction {
    background-color: #9A4D25;
}

.tech-icon-tech {
    background-color: #1C6BFF;
}

.tech-icon i {
    font-size: 12px;
}

.tech-label-construction {
    color: #9A4D25;
}

.tech-label-tech {
    color: #1C6BFF;
}


/* Expertise Cards */
.expertise-card {
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.expertise-card img {
    object-fit: cover;
    z-index: 0;
}

.expertise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: background 0.3s ease;
}

.expertise-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    transition: height 0.4s ease;
    border-radius: 12px;
}

.expertise-card:hover::before {
    height: 50%;
}

.expertise-content {
    z-index: 3;
}

.expertise-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: #B65C2E66;
    border: 1px solid #B65C2E;
    border-radius: 24px;
    color: #DC895F;
}

.expertise-badge-tech {
    background-color: #1C6BFF66;
    border-color: #1C6BFF;
    color: #1C6BFF;
}

@media (max-width: 767px) {
    .expertise-card {
        height: 300px;
        padding: 1.5rem;
    }
    .founder-image {
    display: none !important;
    }
    .founder-image-wrapper {
    width: 90% !important;
    padding-bottom: 30% !important;
    }
}


/* Founder Section */
.founder-image-wrapper {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}

.founder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.founder-badge {
    top: -30px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-color: #B65C2E;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(4deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.leadership-box {
    background-color: #FFFFFF0D;
    border: 1px solid #FFFFFF1A;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.leadership-box:hover {
    transform: translateY(-5px);
    background-color: #FFFFFF1A;
}

@media (max-width: 991px) {
    .founder-image-wrapper {
        padding-bottom: 100%;
        margin-bottom: -3rem;
    }
    
    .founder-badge {
        width: 100px;
        height: 100px;
        right: -15px;
    }
}



/* CTA Section */
.cta-section {
    overflow: hidden;
}

.cta-bg-image {
    object-fit: cover;
    z-index: 0;
    background-position: top center;
    transform: scale(1.2);
}

.cta-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-section .container {
    z-index: 2;
}

.cta-btn-primary {
    background-color: white;
    color: black;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: black;
}

.cta-btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 767px) {
    .cta-section {
        min-height: 300px;
    }
}

.footer a:hover {
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

.footer .fab.fa-linkedin:hover {
    color: #0077B5;
    transition: color 0.3s ease;
}



/* Construction Hero */
.construction-hero {
    min-height: 100vh;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

.construction-hero-bg {
    z-index: 0;
}

.construction-hero-bg img {
    object-fit: cover;
}

.construction-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
}

.construction-hero .container {
    z-index: 2;
}

.construction-stat-box {
    background-color: #FFFFFF1A;
    border: 1px solid #FFFFFF33;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.construction-stat-box:hover {
    transform: translateY(-5px);
    background-color: #FFFFFF26;
}

.construction-cta-btn {
    background-color: #B65C2E;
    color: white;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.construction-cta-btn:hover {
    background-color: #9A4D25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(182, 92, 46, 0.4);
    color: white;
}

.construction-cta-btn i {
    transition: transform 0.3s ease;
}

.construction-cta-btn:hover i {
    transform: translateX(3px);
}

/* Construction Collage */
.construction-collage {
    position: relative;
}

.collage-img {
    overflow: hidden;
    border-radius: 0.5rem;
    position: relative;
}

.collage-img img {
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collage-img:hover img {
    transform: scale(1.05);
}

.collage-tall {
    height: 300px;
}

.collage-short {
    height: 200px;
}

@media (max-width: 991px) {
    .construction-hero {
        min-height: auto;
        padding: 100px 0 60px 0;
    }
    
    .font-56 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 767px) {
    .construction-hero {
        padding: 80px 0 40px 0;
    }
    
    .collage-tall,
    .collage-short {
        height: 200px;
    }
}



/* Capability Cards */
.capability-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.capability-icon {
    width: 60px;
    height: 60px;
    background-color: #B65C2E;
    border-radius: 12px;
}

.capability-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
}





/* Service Navigation Cards */
.service-nav-card {
    background-color: white;
    padding: 2rem 1rem 2rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-nav-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-nav-card.active {
    background-color: #11243A;
}

.service-nav-card h5,
.service-nav-card p {
    color: #000;
    transition: color 0.3s ease;
}

.service-nav-card.active h5,
.service-nav-card.active p {
    color: white;
}

.service-nav-icon {
    width: 48px;
    height: 48px;
    background-color: #F5F7FA;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-nav-icon i {
    font-size: 20px;
    color: #11243A;
    transition: color 0.3s ease;
}

.service-nav-card.active .service-nav-icon {
    background-color: #B65C2E;
}

.service-nav-card.active .service-nav-icon i {
    color: white;
}

/* Service Content */
.service-content-wrapper {
    position: relative;
    min-height: 460px;
}

.service-content {
    display: none;
    height: 100%;
}

.service-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-content-image {
    height: 270px;
    overflow: hidden;
    position: relative;
}

.service-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content-title {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 3rem;
}

.feature-check {
    width: 24px;
    height: 24px;
    border: 2px solid #B65C2E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check i {
    font-size: 12px;
    color: #B65C2E;
}

@media (max-width: 991px) {
    .service-content-wrapper {
        min-height: auto;
        margin-top: 2rem;
    }
    
    .service-content-image {
        height: 250px;
    }
}


/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    bottom: 0px;
    width: 3px;
    background: #d3d3d3;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step-last {
    margin-bottom: 0;
}

.process-content {
    display: flex;
    align-items: center;
}

.process-content-left {
    justify-content: flex-end;
}

.process-content-right {
    justify-content: flex-start;
}

.process-card {
    background: #F5F7FA;
    border: 2px solid #E5E7EB;
    max-width: 400px;
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #B65C2E;
}

.process-number {
    color: #B65C2E;
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: #11243A;
    border-radius: 50%;
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.process-icon i {
    font-size: 32px;
    color: white;
}

.process-step:hover .process-icon {
    background-color: #B65C2E;
    transform: scale(1.1);
}



/* Mobile Responsive */
@media (max-width: 991px) {
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }
    
    .process-content-left {
        display: none;
    }
    
    .process-content-right {
        justify-content: flex-start;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-icon i {
        font-size: 24px;
    }
    
    .process-card {
        max-width: 100%;
    }
    
    .process-card .text-end {
        text-align: left !important;
    }
    
    .process-card .justify-content-between {
        justify-content: flex-start !important;
        flex-direction: row-reverse;
    }
    
    .process-number {
        margin-left: 1rem;
    }
}

@media (max-width: 767px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        margin-bottom: 2rem;
        gap: 1rem;
    }
    
    .process-icon {
        width: 50px;
        height: 50px;
    }
    
    .process-icon i {
        font-size: 20px;
    }
}

.process-timeline-mobile {
    position: relative;
    padding-left: 70px;
}

.process-timeline-mobile::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 2px;
    width: 2px;
    background: linear-gradient(to bottom, #11243A 0%, #B65C2E 100%);
}

.process-step-mobile {
    position: relative;
    margin-bottom: 3rem;
}

.process-step-mobile-last {
    margin-bottom: 0;
}

.process-step-mobile-icon {
    position: absolute;
    left: -70px;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #11243A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.process-step-mobile-icon i {
    font-size: 24px;
    color: white;
}

.process-step-mobile-content {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.5rem;
}

.process-number-mobile {
    color: #B65C2E;
}

@media (max-width: 576px) {
    .process-timeline-mobile {
        padding-left: 60px;
    }
    
    .process-timeline-mobile::before {
        left: 25px;
    }
    
    .process-step-mobile-icon {
        left: -60px;
        width: 50px;
        height: 50px;
    }
    
    .process-step-mobile-icon i {
        font-size: 20px;
    }
    
    .process-step-mobile-content {
        padding: 1rem;
    }
}

/* Certification Cards */
.certification-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: white !important;
}

.certification-icon {
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.certification-icon i {
    font-size: 32px;
    color: #B65C2E;
}

.certification-card:hover .certification-icon {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .certification-icon {
        width: 70px;
        height: 70px;
    }
    
    .certification-icon i {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .certification-card {
        padding: 1.5rem 1rem !important;
    }
    
    .certification-icon {
        width: 60px;
        height: 60px;
    }
    
    .certification-icon i {
        font-size: 24px;
    }
}



/* Construction CTA Section */
.construction-cta-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.construction-cta-bg {
    z-index: 0;
}

.construction-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.construction-cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.construction-cta-section .container {
    z-index: 2;
}

.construction-cta-primary {
    background-color: #B65C2E;
    color: white;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.construction-cta-primary:hover {
    background-color: #9A4D25;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(182, 92, 46, 0.4);
    color: white;
}

.construction-cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.construction-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    color: white;
}

@media (max-width: 767px) {
    .construction-cta-section {
        min-height: 400px;
    }
    
    .construction-cta-section .font-48 {
        font-size: 2rem !important;
    }
    
    .construction-cta-section .font-18 {
        font-size: 1rem !important;
    }
}

/* Technology Hero Badge */
.hero-badge-tech {
    background-color: rgba(28, 107, 255, 0.2);
    border: 1px solid #1C6BFF;
    border-radius: 24px;
    color: #9DBBF5;
}

.hero-badge-tech i {
    color: #9DBBF5;
}

/* Technology CTA Button */
.technology-cta-btn {
    background-color: #1C6BFF;
    color: white;
    border: none;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.technology-cta-btn:hover {
    background-color: #1557D6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 107, 255, 0.4);
    color: white;
}

.technology-cta-btn i {
    transition: transform 0.3s ease;
}

.technology-cta-btn:hover i {
    transform: translateX(3px);
}

/* Technology Hero Image */
.technology-hero-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .technology-hero-image {
        margin-top: 2rem;
    }
}

/* Technology Capability Cards */
.tech-capability-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tech-capability-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.tech-capability-image {
    height: 280px;
    overflow: hidden;
}

.tech-capability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tech-capability-card:hover .tech-capability-image img {
    transform: scale(1.05);
}

.tech-capability-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #1C6BFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.tech-capability-icon i {
    font-size: 28px;
    color: white;
}

.tech-capability-header {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    z-index: 1;
    width: 100%;
    padding-top: 3rem !important;
}

.tech-capability-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tech-stat-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tech-tag {
    border: 1px solid #E5E7EB;
    color: #11243A;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background-color: #1C6BFF !important;
    color: white;
    border-color: #1C6BFF;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .tech-capability-image {
        height: 220px;
    }
    
    .tech-capability-icon {
        width: 50px;
        height: 50px;
        top: 15px;
        left: 15px;
    }
    
    .tech-capability-icon i {
        font-size: 22px;
    }
    
    .tech-capability-header h3 {
        font-size: 1.25rem !important;
    }
}

/* Technology Excellence Cards */
.tech-excellence-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.tech-excellence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(28, 107, 255, 0.15);
}

.tech-excellence-icon-box {
    width: 60px;
    height: 60px;
    background-color: #1c6bff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tech-excellence-icon-box i {
    font-size: 24px;
    color: white;
}

.tech-excellence-card:hover .tech-excellence-icon-box {
    background-color: #1557D6;
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .tech-excellence-icon-box {
        width: 50px;
        height: 50px;
    }
    
    .tech-excellence-icon-box i {
        font-size: 20px;
    }
}


/* Technology Stack Cards */
.tech-stack-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-stack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-stack-check {
    width: 20px;
    height: 20px;
    border: 2px solid #1C6BFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.tech-stack-check i {
    font-size: 10px;
    color: #1C6BFF;
}

/* Technology Approach Cards */
.approach-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(28, 107, 255, 0.3);
}

.approach-number {
    color: #1C6BFF;
}



/* Technology Deployment Cards */
.deployment-card {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deployment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.deployment-card img {
    object-fit: cover;
    transition: transform 0.3s ease;
}

.deployment-card:hover img {
    transform: scale(1.05);
}

.deployment-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.deployment-content {
    z-index: 2;
    width: 100%;
}

.deployment-badge {
    display: inline-block;
    padding: 6px 20px;
    background-color: #1C6BFF;
    border-radius: 24px;
}

@media (max-width: 991px) {
    .deployment-card {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .deployment-card {
        height: 300px;
    }
    
    .deployment-content {
        padding: 1.5rem !important;
    }
    
    .deployment-content h3 {
        font-size: 1.25rem !important;
    }
}



/* Compliance Cards */
.compliance-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(28, 107, 255, 0.15);
}



.compliance-icon i {
    font-size: 28px;
    color: #1C6BFF;
}



@media (max-width: 991px) {
    .compliance-icon {
        width: 56px;
        height: 56px;
    }
    
    .compliance-icon i {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .compliance-card {
        padding: 1.25rem !important;
    }
    
    .compliance-icon {
        width: 48px;
        height: 48px;
    }
    
    .compliance-icon i {
        font-size: 20px;
    }
}



/* Technology CTA Section */
.technology-cta-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.technology-cta-bg {
    z-index: 0;
}

.technology-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.technology-cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.technology-cta-section .container {
    z-index: 2;
}

.technology-cta-primary {
    background-color: #1C6BFF;
    color: white;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.technology-cta-primary:hover {
    background-color: #1557D6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 107, 255, 0.4);
    color: white;
}

.technology-cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.technology-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    color: white;
}

@media (max-width: 767px) {
    .technology-cta-section {
        min-height: 400px;
    }
    
    .technology-cta-section .font-48 {
        font-size: 2rem !important;
    }
    
    .technology-cta-section .font-18 {
        font-size: 1rem !important;
    }
}



.about-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #B65C2E;
    border-radius: 4px;
}

.about-hero-badge span {
    color: #B65C2E;
}

.about-hero-image-wrapper {
    position: relative;
    width: 100%;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-stats-box {
    bottom: -20px;
    left: -40px;
    background-color: #B65C2E;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    max-width: 280px;
}

@media (max-width: 991px) {
    .about-hero-section {
        min-height: auto;
    }
    
    .about-hero-image {
        height: 500px;
    }
    
    .about-hero-stats-box {
        bottom: -20px;
        left: -20px;
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        padding-top: 80px !important;
    }
    
    .about-hero-image {
        height: 400px;
    }
    
    .about-hero-stats-box {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -40px;
        margin-left: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .about-hero-badge {
        padding: 6px 16px;
        border-width: 3px;
    }
    
    .font-48 {
        font-size: 2rem !important;
    }
}


.about-military-image {
    width: 100%;
    height: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-military-image img {
    transition: transform 0.3s ease;
}



@media (max-width: 991px) {
    .about-military-image {
        height: 400px;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .about-military-image {
        height: 300px;
    }
}

/* Leadership Philosophy Section */
.leadership-card {
    background-color: #fff;
    padding: 2rem;
    border: 1px solid #D8DEE6;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leadership-icon-box {
    width: 60px;
    height: 60px;
    background-color: #11243A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.leadership-icon-box i {
    font-size: 1.5rem;
    color: #fff;
}

@media (max-width: 767px) {
    .leadership-card {
        padding: 1.5rem;
    }
    
    .leadership-icon-box {
        width: 50px;
        height: 50px;
    }
    
    .leadership-icon-box i {
        font-size: 1.25rem;
    }
}

/* Journey Timeline Section */
.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-header {
    min-width: 140px;
}

.timeline-year {
    color: #B65C2E;
    font-size: 1.125rem;
    font-weight: 700;
    white-space: nowrap;
    display: block;
}

.timeline-content {
    flex: 1;
    padding-left: 2.5rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 115%;
    background-color: #D8DEE6;
}


.timeline-line {
    display: none;
}

@media (max-width: 767px) {
    .timeline-item {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .timeline-header {
        min-width: 100px;
    }
    
    .timeline-year {
        font-size: 0.875rem;
    }
    
    .timeline-content {
        padding-left: 1.5rem;
    }
    
    .timeline-content h4 {
        font-size: 1.125rem !important;
    }
    
    .timeline-content p {
        font-size: 0.875rem !important;
    }
}

.about-quote {
    max-width: 900px;
    margin: 0 auto;
}

.about-quote p {
    position: relative;
}

@media (max-width: 767px) {
    .about-quote p {
        font-size: 1.125rem !important;
    }
    
    .about-quote footer p:first-child {
        font-size: 1rem !important;
    }
    
    .about-quote footer p:last-child {
        font-size: 0.875rem !important;
    }
}

.btn-connect {
    background-color: #11243A;
    color: #fff;
    padding: .8rem 2rem;
    font-size: 1.125rem;
    font-weight: 400;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-connect:hover {
    background-color: #1a3350;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 36, 58, 0.3);
}

.btn-connect i {
    transition: transform 0.3s ease;
}

.btn-connect:hover i {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .btn-connect {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    padding-top: 120px;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background-color: #11243A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-box i {
    font-size: 1.25rem;
    color: #fff;
}

.contact-info-content {
    flex: 1;
}

.contact-form-wrapper {
    background-color: #F5F7FA;
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-input {
    background-color: #fff;
    border: 1px solid #D8DEE6;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: #11243A;
    box-shadow: 0 0 0 0.2rem rgba(17, 36, 58, 0.1);
    background-color: #fff;
}

.contact-input.is-invalid {
    border-color: #dc3545;
}

.contact-input.is-invalid:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact-input.is-valid {
    border-color: #28a745;
}

.contact-input.is-valid:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
    display: none;
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.25rem;
}

.contact-input.is-invalid ~ .invalid-feedback {
    display: block;
}

.btn-submit-contact {
    background-color: #11243A;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 400;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit-contact:hover {
    background-color: #1a3350;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 36, 58, 0.3);
}

.btn-submit-contact i {
    transition: transform 0.3s ease;
}

.btn-submit-contact:hover i {
    transform: translateX(5px);
}

#formMessage {
    color: #155724;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
}

#formMessage i {
    color: #28a745;
}


@media (max-width: 991px) {
    .contact-section {
        padding-top: 100px;
    }
    
    
    .contact-form-wrapper {
        margin-top: 2rem;
        padding: 1.5rem !important;
    }
    
}

@media (max-width: 767px) {
    .contact-section {
        padding-top: 80px;
    }
    
    
    .contact-icon-box {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon-box i {
        font-size: 1.125rem;
    }
    
    .btn-submit-contact {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}