﻿/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f7f9fc;
    color: #172033;
    overflow-x: hidden;
    padding-top: 90px;
}

form {
    width: 100%;
    overflow-x: hidden;
}

a {
    transition: all 0.3s ease;
}

section {
    scroll-margin-top: 90px;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(16, 24, 40, 0.06);
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
    height: 75px;
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.12);
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   BRAND
========================================================= */

.navbar-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}

.company-tagline {
    display: block;
    font-size: 9px;
    font-weight: 700;
    font-style: italic;
    color: #172033;
    line-height: 1.3;
    margin-bottom: 9px;
}

.company-name {
    display: block;
    font-size: 27px;
    font-weight: 800;
    color: #172033;
    line-height: 1;
    letter-spacing: -0.5px;
}

.company-name span {
    color: #ff6b00;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 14px !important;
    color: #263238 !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.navbar-nav .nav-link:not(.btn-contact)::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff6b00;
    border-radius: 10px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:not(.btn-contact):hover::after,
.navbar-nav .nav-link.active:not(.btn-contact)::after {
    width: 55%;
}

.navbar-nav .nav-link:hover {
    color: #ff6b00 !important;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.navbar-nav .btn-contact {
    height: 44px;
    padding: 0 27px !important;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    background: linear-gradient(135deg, #ff6a00, #ff9800);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.20);
}

.navbar-nav .btn-contact:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 106, 0, 0.35);
}

.navbar-nav .btn-contact::after {
    display: none !important;
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.navbar-toggler {
    width: 44px;
    height: 42px;
    padding: 8px;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    background: #ffffff;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.navbar-toggler-icon {
    width: 22px;
    height: 22px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: calc(100vh - 90px);
    padding: 60px 0 20px 0;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 107, 0, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(0, 123, 255, 0.12),
            transparent 30%
        ),
        #f8fafc;
}

.hero-content {
    padding-top: 20px;
    position: relative;
    z-index: 5;
}

.badge-tech {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255, 107, 0, 0.1);
    color: #ff6b00;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeDown 1s ease;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 25px;
    animation: fadeUp 1s ease;
}

.hero h1 span {
    background: linear-gradient(90deg, #ff6b00, #ffb000, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #667085;
    max-width: 600px;
    margin-bottom: 20px;
}

.hero-certifications {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #475467;
    font-size: 14px;
    line-height: 1.6;
}

.hero-certifications i {
    color: #198754;
    margin-right: 5px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-primary-custom {
    padding: 14px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff6b00, #ff9800);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-5px);
    color: #ffffff;
}

.btn-outline-custom {
    padding: 13px 30px;
    border-radius: 30px;
    border: 2px solid #172033;
    color: #172033;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: #172033;
    color: #ffffff;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;
    height: 550px;
}

.dashboard-card {
    position: absolute;
    width: 450px;
    height: 320px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 25px;
    top: 70px;
    left: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    padding: 25px;

    transform:
        perspective(1000px)
        rotateY(-10deg)
        rotateX(5deg);

    animation: dashboardFloat 5s ease-in-out infinite;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header h5 {
    font-weight: 800;
    margin: 0;
}

.circle-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ff6b00;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    height: 170px;
    padding: 20px;
}

.bar {
    width: 35px;
    background: linear-gradient(to top, #ff6b00, #ffbd66);
    border-radius: 10px 10px 0 0;
    animation: growBar 2s ease forwards;
}

.bar:nth-child(1) { height: 40%; }
.bar:nth-child(2) { height: 65%; }
.bar:nth-child(3) { height: 50%; }
.bar:nth-child(4) { height: 85%; }
.bar:nth-child(5) { height: 70%; }
.bar:nth-child(6) { height: 100%; }


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floating 4s ease-in-out infinite;
    z-index: 5;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card small {
    margin-top: 4px;
    color: #667085;
}

.floating-card i {
    color: #ff6b00;
    font-size: 25px;
}

.card-one {
    top: 20px;
    right: 10px;
}

.card-two {
    bottom: 70px;
    left: 0;
    animation-delay: 1s;
}

.card-three {
    bottom: 20px;
    right: 20px;
    animation-delay: 2s;
}


/* =========================================================
   PARTICLES
========================================================= */

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff6b00;
    border-radius: 50%;
    opacity: 0.4;
    animation: particleMove 8s linear infinite;
}

.p1 { top: 20%; left: 10%; }
.p2 { top: 70%; left: 20%; animation-delay: 2s; }
.p3 { top: 30%; right: 20%; animation-delay: 3s; }
.p4 { top: 80%; right: 10%; animation-delay: 1s; }


/* =========================================================
   COMMON SECTION
========================================================= */

.section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 0px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
}

.section-title h2 span {
    color: #ff6b00;
}

.section-title p {
    max-width: 720px;
    margin: 15px auto 0;
    color: #667085;
    line-height: 1.8;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 15px;
    border-radius: 50px;
    background: rgba(255, 107, 0, 0.1);
    color: #ff6b00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-heading {
    text-align: left;
}

.about-heading h2 {
    text-align: left;
}

.about-content p {
    text-align: justify;
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-content .about-lead {
    font-size: 17px;
    color: #475467;
}

.about-features {
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.about-feature-icon {
    min-width: 55px;
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff6a00, #ff9d00);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.25);
}

.about-feature h5 {
    color: #172033;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}


/* =========================================================
   ABOUT VISUAL
========================================================= */

.about-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        circle at center,
        rgba(255, 106, 0, 0.1),
        transparent 65%
    );
}

.about-main-card {
    width: 420px;
    min-height: 350px;
    padding: 50px 40px;
    border-radius: 35px;
    background: linear-gradient(135deg, #172033, #2d3b55);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(23, 32, 51, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.about-card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 25px;
    background: linear-gradient(135deg, #ff6a00, #ff9d00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 15px 35px rgba(255, 106, 0, 0.35);
}

.about-main-card h3 {
    font-size: 30px;
    font-weight: 800;
}

.about-main-card h3 span {
    color: #ff8a00;
}

.about-main-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}


/* =========================================================
   ABOUT FLOATING
========================================================= */

.about-floating-card {
    position: absolute;
    background: #ffffff;
    padding: 18px 22px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 5;
    animation: aboutFloat 4s ease-in-out infinite;
}

.about-floating-card strong {
    display: block;
    color: #172033;
    font-size: 15px;
}

.about-floating-card small {
    display: block;
    color: #667085;
    font-size: 12px;
    margin-top: 4px;
}

.about-round-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 106, 0, 0.1);
    color: #ff6a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-experience {
    top: 60px;
    left: 0;
}

.about-projects {
    right: 0;
    top: 180px;
    animation-delay: 1s;
}

.about-security-card {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 18px 25px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.about-security-card > i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-security-card strong,
.about-security-card small {
    display: block;
}

.about-security-card strong {
    color: #172033;
    font-size: 14px;
}

.about-security-card small {
    color: #667085;
    font-size: 12px;
    margin-top: 4px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: #f7f9fc;
}

.service-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff6b00, #ffae42);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin: 0 auto 25px;
}

.service-card h4 {
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}

.service-card p {
    color: #667085;
    line-height: 1.7;
    text-align: center;
}


/* =========================================================
   STATS
========================================================= */

.stats {
    background: #101828;
    color: #ffffff;
}

.stat-box {
    text-align: center;
    padding: 30px;
}

.stat-box h2 {
    color: #ff8a00;
    font-size: 48px;
    font-weight: 800;
}

.stat-box p {
    color: #d0d5dd;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.solutions-section {
    background: #f7f9fc;
}

.project-card {
    height: 100%;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e8edf3;
    box-shadow: 0 10px 35px rgba(20, 30, 50, 0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(20, 30, 50, 0.14);
}

.project-image {
    height: 210px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #172033, #2d3b55);
    overflow: hidden;
    color: #ffffff;
}

.project-icon {
    position: relative;
    z-index: 5;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #ff6a00, #ff9500);
    color: #ffffff;
    font-size: 40px;
    box-shadow: 0 15px 35px rgba(255, 106, 0, 0.35);
    transition: all 0.4s ease;
}

.project-card:hover .project-icon {
    transform: scale(1.08) rotate(-5deg);
}

.project-number {
    position: absolute;
    top: 20px;
    right: 22px;
    z-index: 10;
    color: rgba(255, 255, 255, 0.35);
    font-size: 30px;
    font-weight: 800;
}

.project-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: #ff6a00;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.project-content h4 {
    color: #172033;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

.project-content p {
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #ff6a00;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.project-link:hover {
    color: #172033;
}

.project-link:hover i {
    transform: translateX(6px);
}


/* =========================================================
   CTA
========================================================= */

.cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #ff6b00, #ff9d00);
    color: #ffffff;
    text-align: center;
}

.cta-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.cta h2 {
    font-size: 42px;
    font-weight: 800;
}

.cta p {
    margin-top: 15px;
    font-size: 17px;
}

.cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #ff6b00;
    border-radius: 30px;
    padding: 14px 35px;
    font-weight: 700;
    margin-top: 20px;
    border: none;
}

.cta .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   ENQUIRY
========================================================= */

.enquiry-section {
    background: #f7f9fc;
}

.enquiry-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(16, 24, 40, 0.1);
}

.enquiry-card label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #172033;
}

.enquiry-card label span {
    color: #ff6a00;
}

.enquiry-card .form-control,
.enquiry-card .form-select {
    height: 52px;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
}

.enquiry-card textarea.form-control {
    height: auto;
    resize: vertical;
}

.enquiry-card .form-control:focus,
.enquiry-card .form-select:focus {
    border-color: #ff6a00;
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
}

.enquiry-btn {
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff6a00, #ff9d00);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.enquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.3);
}

.validation-summary {
    background: #fff3f3;
    color: #b42318;
    border: 1px solid #fecdca;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #101828;
    color: #ffffff;
    padding: 70px 0 25px;
}

footer h4 {
    font-weight: 800;
    margin-bottom: 20px;
}

footer h4 span {
    color: #ff6b00;
}

footer p {
    color: #98a2b3;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 16px;
}

footer p i {
    color: #ff6b00;
    margin-right: 8px;
    width: 18px;
    font-size: 13px;
}

.map-wrapper {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    border-top: 1px solid #344054;
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
    color: #98a2b3;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes floating {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}

@keyframes dashboardFloat {

    0%, 100% {
        transform:
            perspective(1000px)
            rotateY(-10deg)
            rotateX(5deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(1000px)
            rotateY(-10deg)
            rotateX(5deg)
            translateY(-12px);
    }

}

@keyframes aboutFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes fadeDown {

    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes growBar {

    from {
        transform: scaleY(0);
        transform-origin: bottom;
    }

    to {
        transform: scaleY(1);
    }

}

@keyframes particleMove {

    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, -100px);
    }

    100% {
        transform: translate(0, 0);
    }

}


/* =========================================================
   LARGE TABLET / LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .hero h1 {
        font-size: 48px;
    }

    .dashboard-card {
        width: 400px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    html {
        scroll-padding-top: 80px;
    }

    body {
        padding-top: 75px;
    }

    section {
        scroll-margin-top: 80px;
    }

    .navbar {
        height: auto;
        min-height: 75px;
        padding: 10px 0;
    }

    .navbar.navbar-scrolled {
        height: auto;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding: 15px;
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 15px 40px rgba(16, 24, 40, 0.10);
    }

    .navbar-nav {
        gap: 2px;
        align-items: stretch !important;
        padding-top: 0;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        height: 45px;
        justify-content: flex-start;
        padding: 0 15px !important;
    }

    .navbar-nav .nav-link:not(.btn-contact)::after {
        display: none;
    }

    .navbar-nav .btn-contact {
        width: 100%;
        margin: 8px 0 0;
    }

    .hero {
        min-height: auto;
        padding: 70px 0;
    }

    .hero-content {
        text-align: center;
        padding-top: 0;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-certifications {
        text-align: left;
        max-width: 650px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .dashboard-card {
        left: 50%;
        transform:
            translateX(-50%)
            perspective(1000px)
            rotateY(-10deg)
            rotateX(5deg);
        width: 80%;
        max-width: 450px;
    }

    .card-one {
        right: 0;
    }

    .card-three {
        right: 0;
    }

    .about-content {
        text-align: center;
    }

    .about-content p {
        text-align: left;
    }

    .about-features {
        text-align: left;
    }

    .about-feature {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-heading {
        text-align: center;
    }

    .about-heading h2 {
        text-align: center;
    }

    .about-visual {
        margin-top: 30px;
        min-height: 520px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .section {
        padding: 70px 15px;
    }

    .company-tagline {
        font-size: 7px;
        max-width: 250px;
        white-space: normal;
    }

    .company-name {
        font-size: 21px;
    }

    .hero {
        padding: 55px 15px 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-certifications {
        font-size: 13px;
        text-align: left;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        justify-content: center;
        text-align: center;
        margin: 0;
    }

    .hero-visual {
        height: 400px;
    }

    .dashboard-card {
        width: 90%;
        max-width: 330px;
        height: 280px;
        padding: 20px;
        top: 35px;
    }

    .floating-card {
        padding: 12px;
        font-size: 12px;
    }

    .card-one {
        right: -10px;
    }

    .card-two {
        left: -10px;
    }

    .card-three {
        right: -10px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .about-visual {
        min-height: 470px;
    }

    .about-main-card {
        width: 90%;
        min-height: 320px;
        padding: 35px 25px;
    }

    .about-main-card h3 {
        font-size: 25px;
    }

    .about-experience {
        left: -10px;
        top: 30px;
    }

    .about-projects {
        right: -10px;
        top: 150px;
    }

    .about-security-card {
        bottom: 25px;
        width: 90%;
        justify-content: center;
    }

    .project-image {
        height: 180px;
    }

    .project-icon {
        width: 75px;
        height: 75px;
        font-size: 32px;
    }

    .project-content {
        padding: 24px;
    }

    .cta {
        padding: 70px 15px;
    }

    .cta h2 {
        font-size: 32px;
    }

    .enquiry-card {
        padding: 25px 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 576px) {

    .navbar .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .company-tagline {
        font-size: 6.5px;
        line-height: 1.3;
        max-width: 230px;
    }

    .company-name {
        font-size: 20px;
    }

    .hero {
        padding: 45px 10px 50px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero-visual {
        height: 330px;
        margin-top: 30px;
    }

    .dashboard-card {
        width: 85%;
        max-width: 285px;
        height: 225px;
        top: 30px;
        padding: 16px;
    }

    .dashboard-header h5 {
        font-size: 13px;
    }

    .chart {
        height: 115px;
        gap: 7px;
        padding: 15px 5px;
    }

    .bar {
        width: 17px;
    }

    .floating-card {
        transform: scale(0.8);
    }

    .card-one {
        right: -25px;
    }

    .card-two {
        left: -25px;
    }

    .card-three {
        right: -25px;
    }

    .about-visual {
        min-height: 430px;
    }

    .about-main-card {
        min-height: 290px;
    }

    .about-floating-card {
        transform: scale(0.75);
    }

    .about-experience {
        left: -35px;
    }

    .about-projects {
        right: -35px;
    }

    .about-security-card {
        width: 95%;
        padding: 14px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .stat-box {
        padding: 20px 10px;
    }

    .stat-box h2 {
        font-size: 34px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .company-tagline {
        font-size: 6px;
        max-width: 210px;
    }

    .company-name {
        font-size: 19px;
    }

    .navbar-toggler {
        width: 40px;
        height: 38px;
    }

    .hero {
        padding: 35px 10px 45px;
    }

    .hero h1 {
        font-size: 29px;
    }

    .hero-visual {
        height: 310px;
    }

    .dashboard-card {
        width: 88%;
        max-width: 275px;
        height: 215px;
        top: 25px;
        padding: 14px;
    }

    .dashboard-header h5 {
        font-size: 12px;
    }

    .chart {
        height: 105px;
        gap: 5px;
    }

    .bar {
        width: 15px;
    }

    .about-floating-card {
        transform: scale(0.65);
    }

    .about-experience {
        left: -55px;
    }

    .about-projects {
        right: -55px;
    }
}

@media (max-width: 400px) {
    .dashboard-card {
        left: 15%;
    }
}

/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact-item > i {
    color: #ff6b00;
    font-size: 16px;
    width: 20px;
    min-width: 20px;
    margin-top: 5px;
}

.footer-contact-item p {
    margin: 0;
    color: #98a2b3;
    line-height: 1.7;
}


/* Contact Links */

.footer-contact-item a {
    color: #98a2b3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-item a:hover {
    color: #ff6b00;
}


/* Contact Label */

.contact-label {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 8px !important;
}


/* Phone Row */

.phone-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}


/* WhatsApp */

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #25D366 !important;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.whatsapp-link i {
    color: #25D366;
    font-size: 17px;
}

.whatsapp-link:hover {
    color: #128C7E !important;
    transform: translateX(3px);
}

.whatsapp-link:hover i {
    color: #128C7E;
}


/* =========================================================
   MAP
========================================================= */

.map-wrapper {
    overflow: hidden;
    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.20);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}


/* =========================================================
   MOBILE FOOTER
========================================================= */

@media (max-width: 767px) {

    .footer-contact-item {
        gap: 12px;
    }

    .phone-row {
        gap: 8px;
    }

    .whatsapp-link {
        font-size: 12px;
    }

    .map-wrapper {
        margin-top: 15px;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 400px) {

    .phone-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        margin-bottom: 12px;
    }
}

/* =========================================================
   CAPTCHA
========================================================= */

.captcha-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.captcha-image {
    width: 180px;
    height: 52px;

    object-fit: cover;

    border-radius: 10px;

    border: 1px solid #e4e7ec;

    background: #172033;

    box-shadow:
        0 5px 15px rgba(16, 24, 40, 0.10);
}

.captcha-refresh {
    width: 45px;
    height: 45px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #172033;

    color: #ffffff;

    text-decoration: none;

    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background: #ff6a00;

    color: #ffffff;

    transform: rotate(180deg);
}


/* CAPTCHA INPUT */

#txtCaptcha {
    text-transform: uppercase;
}


/* MOBILE */

@media (max-width: 576px) {

    .captcha-box {
        width: 100%;
    }

    .captcha-image {
        width: 160px;
        height: 50px;
    }

}

.enquiry-card .form-control, .enquiry-card .form-select {
    border: 1px solid #ddd;
    border-radius: 4px;
}