﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.top-bar {
    background: #fff;
    color: #000;
    padding: 6px 20px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    background: #ef5423;
}

.main-header {
    background: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    text-align: center;
    padding-left: 40px;
}

    .logo-box img {
        width: 320px;
    }

.tagline {
    font-size: 14px;
    margin-top: 10px;
    color: #f36c22;
}

.certificates {
    display: flex;
    gap: 20px;
    padding-right: 60px;
}

    .certificates img {
        width: 80px;
        height: auto;
    }

.navbar {
    display: flex;
    justify-content: center;
    background: #ef5423;
    padding: 15px 0;
    gap: 30px;
}

    .navbar a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: bold;
    }

        .navbar a.active,
        .navbar a:hover {
            border-bottom: 2px solid white;
            padding-bottom: 4px;
        }

.hero {
    height: 90vh;
}


.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: auto;
    object-fit: fill; 
}


.slide {
    display: none;
    width: 100%;
    height: 100%;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.fade {
    animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    font-size: 30px;
    color: white;
    user-select: none;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.active-dot {
    opacity: 1;
}

.strength-section {
    background: #f15a22;
    text-align: center;
    padding: 50px 0;
    color: #fff;
    font-family: Arial, sans-serif;
}

.title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 40px;
}

.strength-img-box {
    width: 75%;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
}

    .strength-img-box img {
        width: 100%;
        height: auto;
    }

.strength-bottom {
    display: flex;
    width: 75%;
    margin: 40px auto;
    gap: 20px;
}

.s-card {
    width: 33%;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

    .s-card img {
        width: 100%;
        height: auto;
    }

    .s-card p {
        color: #ff5a23;
        font-weight: bold;
        padding: 15px 0;
    }

.footer-text {
    font-size: 13px;
    margin-top: 20px;
}

    .footer-text span {
        color: #b9ff58;
        cursor: pointer;
    }

.products-section {
    padding: 60px 0;
    text-align: center;
    background: #fff;
    font-family: Arial, sans-serif;
}

.products-title {
    font-size: 34px;
    font-weight: bold;
    color: #a51d1d;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

    .products-title .underline-img img {
        width: 300px; 
        display: block;
        margin: 6px auto 0;
    }


.product-top-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

    .product-top-row img {
        width: 250px;
        height: 140px;
        object-fit: cover;
        border-radius: 6px;
    }

.product-cards {
    width: 85%;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.p-card {
    width: 32%;
    background: #f4f4f4;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}



    .p-card h3 {
        color: #444;
        font-size: 20px;
        margin-bottom: 20px;
        font-weight: 600;
    }

.lt-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}

    .lt-img-wrap .main-img {
        width: 180px;
    }

    .lt-img-wrap .side-img {
        width: 140px;
    }

.side-img {
    width: 100px;
    height: auto;
}

.new-tag {
    background: #bd0000;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 12px 0 12px 0;
    position: absolute;
    bottom: 10px;
    right: 10px;
}


.big-img {
    width: 180px;
    height: auto;
    margin: 25px auto;
}


.ht-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
}

    
    .ht-inner .big-img {
        width: 180px;
        height: auto;
    }

    
    .ht-inner .ht-desc {
        text-align: left;
        font-size: 15px;
        color: #444;
        line-height: 26px;
        max-width: 200px;
    }


.trunkey .big-img {
    width: 240px;
    margin: 15px auto;
}

.trunkey-text {
    margin-top: 15px;
    font-size: 16px;
    color: #444;
    line-height: 26px;
}


.p-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.p-card img {
    display: block;
    margin: auto;
}



.trunkey-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
    color: #444;
    font-weight: 500;
}

.p-card img {
    display: block;
    margin: auto;
}

.clients-title {
    margin-top: 70px;
    font-size: 30px;
    font-weight: bold;
    color: #a51d1d;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.clients-underline {
    display: block;
    margin: 6px auto 0;
    width: 300px; 
    height: auto;
}




.client-scroll {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    height: 120px;
    margin-top: 30px;
}

.client-track {
    display: flex;
    gap: 22px;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
}


.client-box {
    width: 200px;
    height: 90px;
    background: #e3e2e2;
    border-radius: 10px;
    border: 1.5px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .client-box img {
        width: 140px;
        height: 60px;
        object-fit: contain;
    }



.industry-section {
    padding: 60px 0;
    text-align: center;
    background: #f6f6f6;
    font-family: Arial, sans-serif;
}

.industry-title {
    font-size: 34px;
    color: #b52a1c;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}

    .industry-title .underline-img img {
        width: 100px;
        display: block;
        margin: 8px auto 20px;
    }

.industry-desc {
    width: 75%;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 28px;
    color: #444;
}

.industry-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

    .industry-grid div {
        background: #e84610;
        color: #fff;
        padding: 14px 10px;
        border-radius: 4px;
        font-size: 15px;
        font-weight: bold;
        transition: 0.3s ease;
    }

        .industry-grid div:hover {
            background: #d8532b;
            cursor: pointer;
        }

.footer-section {
    margin-top: 70px;
    background: #ffffff;
    padding-top: 30px;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    width: 220px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 14px;
    margin-top: 10px;
    color: #444;
    width: 240px;
    line-height: 22px;
}

.footer-links h3,
.footer-social h3 {
    color: #d54422;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
}

    .footer-links a:hover {
        color: #d54422;
    }

.social-icons img {
    width: 40px;
    margin-right: 10px;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 40px;
    padding: 16px;
    background: #ff6633;
    color: #fff;
    text-align: center;
    font-size: 14px;
}

.contact-option {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    margin-bottom: 12px;
    color: #333;
    font-size: 24px;
    line-height: 55px;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: 0.35s ease;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

    .contact-option.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

.whatsapp {
    color: #25D366;
}

.hamburger {
    display: none;
}


.about-wrapper {
    padding: 60px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
}


.sidebar {
    width: 280px;
}

.sidebar-title {
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
}

    .sidebar-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 60px;
        height: 3px;
        background: #f1c40f;
    }

.quick-links {
    list-style: none;
    margin-top: 25px;
}

    .quick-links li {
        padding: 14px 15px;
        margin-bottom: 8px;
        background: #f3f3f3;
        cursor: pointer;
        transition: 0.3s;
    }

        .quick-links li:hover {
            background: #ddd;
        }

        .quick-links li.active {
            background: #8b1d1d;
            color: #fff;
        }

        .quick-links li.highlight {
            background: #b97b7b;
            color: #fff;
        }

        .quick-links li a {
            color: #333; 
            text-decoration: none; 
            font-weight: 500;
            display: block; 
        }

        .quick-links li:hover a {
            color: #000;
        }

        .quick-links li.active a,
        .quick-links li.highlight a {
            color: #fff; 
        }



.brochure-box {
    margin-top: 30px;
    background: #f4d65a;
    padding: 25px;
    text-align: center;
}

    .brochure-box h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }

.download-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}


.content {
    flex: 1;
}

.content-title {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
}

    .content-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 80px;
        height: 3px;
        background: #8b1d1d;
    }

.content p {
    margin: 18px 0;
    line-height: 1.7;
}

.benefits {
    margin-top: 15px;
    padding-left: 20px;
}

    .benefits li {
        margin-bottom: 10px;
    }

.navbar {
    position: relative;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

    .nav-dropdown > a {
        display: flex;
        align-items: center;
        gap: 6px;
    }


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 230px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-top: 3px solid #8b1d1d;
    display: none;
    z-index: 999;
}

    
    .dropdown-menu a {
        display: block;
        padding: 12px 16px;
        color: #222;
        text-decoration: none;
        font-size: 14px;
        border-bottom: 1px solid #eee;
        transition: 0.3s;
    }

        .dropdown-menu a:hover {
            background: #8b1d1d;
            color: #fff;
        }


.nav-dropdown:hover .dropdown-menu {
    display: block;
}
.team-section {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
}

.team-card {
    display: flex;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

.team-img {
    width: 220px;
    flex-shrink: 0;
    text-align: center;
}

    .team-img img {
        width: 180px;
        border: 3px solid #d8c98a;
    }

.team-info {
    padding-left: 40px;
}

    .team-info p {
        font-size: 20px;
        margin: 12px 0;
    }

    .team-info strong {
        font-weight: 700;
    }

.turnkey-section {
    padding: 60px 40px;
}

.section-title {
    font-size: 36px;
    color: #f36f3a;
    margin-bottom: 40px;
}

.card-wrapper {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.turnkey-card {
    width: 300px;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: #fff;
}

    .turnkey-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 4px;
    }

.facility-section {
    padding: 40px 50px;
}

.text-block {
    margin-bottom: 30px;
}

    .text-block h2 {
        font-size: 22px;
        margin: 20px 0 10px;
        font-weight: bold;
    }

    .text-block ul {
        margin-left: 20px;
    }

        .text-block ul li {
            font-size: 16px;
            margin-bottom: 6px;
        }

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

    .image-grid img {
        width: 100%;
        height: 190px;
        object-fit: cover;
        border: 2px solid #bfbfbf;
        padding: 4px;
        background: #fff;
    }

.Certiimage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

    .Certiimage-grid img {
        width: 100%;
        height: 240px;
        object-fit: contain;
        border: 2px solid #bfbfbf;
        padding: 4px;
        background: #fff;
    }


.industry-section {
    padding: 40px 60px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    
}

.industry-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 120px;
}

    .industry-columns ul {
        list-style-type: disc;
        padding-left: 25px;
    }

    .industry-columns li {
        font-size: 22px;
        margin-bottom: 26px;
    }

.govt-section {
    padding: 10px 40px;
}

.govt-title {
    font-size: 28px;
    color: #f36f3a;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.govt-list {
    list-style-type: disc;
    padding-left: 10px;
}

    .govt-list li {
        font-size: 18px;
        margin-bottom: 10px;
        color: #000;
        letter-spacing: normal;
    }
.inquiry-section {
    padding: 40px 60px;
    max-width: 1400px;
}

.inquiry-title {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 10px;
}

.title-line {
    width: 450px;
    height: 3px;
    background: linear-gradient(to right, #f2c94c, #8b0000);
    margin-bottom: 40px;
}

.inquiry-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 40px;
}

    .form-grid input,
    .form-grid textarea {
        width: 100%;
        padding: 14px 16px;
        font-size: 18px;
        border: 2px solid #d0d0d0;
        border-radius: 6px;
        outline: none;
    }

    .form-grid textarea {
        height: 90px;
        resize: none;
    }

        .form-grid input::placeholder,
        .form-grid textarea::placeholder {
            color: #9e9e9e;
        }

.recaptcha-placeholder {
    margin: 30px 0;
    width: 300px;
    height: 80px;
    border: 1px solid transparent; 
}

.submit-btn {
    background: #8b1e16;
    color: #fff;
    font-size: 22px;
    padding: 14px 40px;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
}

.contact-section {
    padding: 40px 50px;
}

.contact-form {
    margin-bottom: 50px;
}

.row {
    margin-bottom: 20px;
}

.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

input, textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f6f6f6;
}

textarea {
    height: 120px;
    resize: none;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.captcha-box {
    background: #3558a8;
    color: #fff;
    padding: 10px 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.captcha-row input {
    width: 180px;
}

.captcha-text {
    margin: 10px 0 20px;
    font-size: 14px;
}

    .captcha-text a {
        text-decoration: none;
    }

.btn-row {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 40px;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.submit {
    background: #8b1e16;
    color: #fff;
}

.clear {
    background: #f2e27b;
    color: #000;
}


.map-address {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.map-box iframe {
    width: 100%;
    height: 320px;
    border: none;
}

.address-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.address-box p {
    font-size: 16px;
    margin-bottom: 14px;
}


.career-section {
    width: 100%;
    margin: 20px auto;
    border: 1px solid #cfcfcf;
}

.career-header {
    background: #8b1e16;
    color: #fff;
    font-size: 34px;
    padding: 18px 25px;
}

.career-body {
    background: #e6e6e6;
    padding: 10px 20px;
}

    .career-body p {
        font-size: 16px;
        margin-bottom: 12px;
        color: #000;
    }

        .career-body p strong {
            font-size: 19px;
        }


.career-form-section {
    padding: 30px 40px;
    max-width: 1400px;
}

.career-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 40px;
}

    .form-grid input,
    .form-grid select,
    .form-grid textarea {
        width: 100%;
        padding: 14px 16px;
        font-size: 17px;
        border: 2px solid #d3d3d3;
        border-radius: 6px;
        outline: none;
    }

    .form-grid textarea {
        grid-column: 1 / -1;
        height: 90px;
        resize: none;
    }

        .form-grid input::placeholder,
        .form-grid textarea::placeholder,
        .form-grid select {
            color: #9a9a9a;
        }

.upload-row {
    margin: 25px 0;
}

    .upload-row label {
        display: block;
        margin-bottom: 8px;
        font-size: 18px;
    }

    .upload-row input[type="file"] {
        font-size: 16px;
    }

.recaptcha-placeholder {
    width: 300px;
    height: 80px;
    margin-bottom: 25px;
    border: 1px solid transparent; 
}

.button-row {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 40px;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

.submit {
    background: #8b1e16;
    color: #fff;
}

.clear {
    background: #f4e38b;
    color: #000;
}




















