:root {
    --blue: #1f2a5a;
    --yellow: #1b2350;
    --text: #374151;
    --border: #e5e7eb;
    --bg-grid: repeating-linear-gradient(
        0deg,
        #f8fafc 0,
        #f8fafc 1px,
        transparent 1px,
        transparent 40px
    );
}

body {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    color: var(--text);
    background: var(--bg-grid);
    padding-top: 114px; /* adjust if navbar height changes */
}

 




/* NAVBAR */
.navbar {
    position: fixed;
    top: 32px; /* height of top-bar */
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between; /* THIS splits left and right */
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;

    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-logo img {
    height: 50px;
    width: auto;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--blue);
}

.nav-links .active {
    color: var(--blue);
    border-bottom: 2px solid var(--blue);
}


/* MOBILE TOGGLER */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: #1f2a5a;
    transition: all 0.3s ease;
}


/* MOBILE NAV */
@media (max-width: 992px) {

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        width: 250px;
        padding: 1.5rem;
        display: none;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
}




/* TOP INFO BAR */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1f2a5a; /* deep security green */
    color: #fff;
    z-index: 1100;
    font-size: 13px;
}

.top-bar-container {
    max-width: 1200px;
    margin: auto;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-container.center {
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.top-bar-phone {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.top-bar-phone:hover {
    text-decoration: underline;
}



/* =========================================
   HERO – TWO TONE GRADIENT VERSION
========================================= */

.hero-card {
    background: linear-gradient(
        to bottom,
        #ffffff -10%,
        #e9edf5 5%,
        #1f2a5a 40%
    );

    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    padding: 110px 40px;
    margin: 60px auto;
    max-width: 1200px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Headline */
.hero-card h1 {
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.15;
}

/* Subheading */
.hero-card h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* Paragraph */
.hero-card p {
    max-width: 750px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
}

/* Logo slight glow for contrast */
.hero-logo img {
    max-height: 120px;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.3));
}

/* Buttons container */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* White Buttons */
.hero-primary,
.hero-secondary {
    background: #ffffff;
    color: #1f2a5a;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Hover */
.hero-primary:hover,
.hero-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.25);
    background: #ffffff;
}




/* ICONS */
.service-icon {
    font-size: 2.2rem;
    color: #1f2a5a;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 1.6rem;
    color: #1f2a5a;
    margin-bottom: .5rem;
}

.value-icon {
    font-size: 1.5rem;
    color: #1f2a5a;
    margin-bottom: .5rem;
    display: block;
}

/* CARD ICON ALIGNMENT */
.card {
    text-align: left;
}

.values-grid div {
    text-align: center;
}


/* BUTTONS */
.btn {
    padding: .8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
}

.btn.primary {
    background: var(--blue);
    color: #fff;
}

.btn.outline {
    border: 1px solid var(--border);
    color: var(--text);
}

/* SECTIONS */
.section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
}

/* CARDS */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

/* SPLIT */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}



/* FOOTER (Punon Style) */
.footer {
    background: #1f2a5a;
    color: #ffffff;
    padding-top: -1rem;
}

/* MAIN LAYOUT */
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;

    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

/* LOGO */
.footer-logo {
    height: 55px;
}

/* LINKS GRID */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    flex: 1;
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #136d97;  
}

/* BADGES */
.footer-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.footer-badges img {
    width: 70px;              /* uniform width */
    height: 70px;             /* uniform height */
    object-fit: contain;      /* keeps aspect ratio */
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-badges img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.9rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    border-top: 2px dashed #d1d5db;
    margin-bottom: 2rem;
}

/* TABLET */
@media (max-width: 992px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-main {
        padding: 2.5rem 1.5rem;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .footer-main {
        flex-direction: column;
        padding: 2rem 1.2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-badges {
        justify-content: flex-start;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding: 1.2rem;
    }
}



/* ABOUT PAGE */
.page-header {
    text-align: center;
    padding: 5rem 1rem 3rem;
    max-width: 900px;
    margin: auto;
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.05rem;
    color: #4b5563;
}

.about-split {
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 520px;
}

.team-section {
    text-align: center;
}

.center-text {
    text-align: center;
}

.max-text {
    max-width: 900px;
    margin: 1.5rem auto 3rem;
}

.team-points h4 {
    margin-bottom: .4rem;
}

.mt {
    margin-top: 3rem;
}


.card {
    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.service-icon {
    transition: transform 0.35s ease;
}

.card:hover .service-icon {
    transform: scale(1.15) rotate(-3deg);
}

.features > div {
    transition: transform 0.3s ease;
}

.features > div:hover {
    transform: translateX(6px);
}

/* =========================================
   WHY CHOOSE US – MATCH CORE VALUES SYSTEM
========================================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: start;
}

.why-grid div {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect — identical to values */
.why-grid div:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Icon styling */
.why-icon {
    font-size: 1.8rem;
    color: #1f2a5a;
    margin-bottom: 0.8rem;
    display: block;
    transition: transform 0.35s ease;
}

/* Subtle icon motion */
.why-grid div:hover .why-icon {
    
    transform: scale(1.2) rotate(-5deg);
}

/* Responsive fallback */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/* CORE VALUES – HORIZONTAL LAYOUT */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: start;
}

/* Each value item */
.values-grid div {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect stays clean */
.values-grid div:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Responsive fallback */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}


.btn {
    transition: all 0.3s ease;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(11, 67, 220, 0.3);
}

.btn.outline:hover {
    background: #f8fafc;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #1f2a5a;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links .active::after {
    width: 100%;
}


/* TIMELINE */
.timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    border-left: 3px solid #1f2a5a;
    padding-left: 1.5rem;
}

.timeline-year {
    font-weight: 600;
    margin-bottom: .5rem;
}

/* CONTROL ROOM */
.control-room-section .card {
    text-align: center;
}

/* COMPLIANCE */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

.compliance-item i {
    font-size: 2rem;
    color: #1f2a5a;
    margin-bottom: .8rem;
}

@media (max-width: 992px) {
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* VISION / MISSION ICON ONLY */
/* VISION & MISSION SIDE-BY-SIDE */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.vision-mission-item {
    text-align: left;
    padding: 2rem;
    border-radius: 16px;
}

.vm-icon {
    margin-bottom: 1rem;
}

.vm-icon i {
    font-size: 2.8rem;
    color: #1f2a5a;
    transition: transform 0.35s ease;
}

.vision-mission-item:hover .vm-icon i {
    transform: scale(1.15);
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.values-grid div {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
}

.value-icon {
    font-size: 2rem;
    color: #1f2a5a;
    margin-bottom: 1rem;
    transition: transform 0.35s ease;
}

.values-grid div:hover .value-icon {
    transform: scale(1.2) rotate(-5deg);
}


/* Responsive */
@media (max-width: 992px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}


.icon-display {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-display i {
    font-size: 4rem;
    color: #1f2a5a;
}

/* OUR VALUES GRID REUSES COMPLIANCE STYLING */
/* Already styled by .compliance-grid & .compliance-item */

.compliance-item {
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.compliance-item i {
    font-size: 2.2rem;
    color: #1f2a5a;
    margin-bottom: 0.8rem;
    transition: transform 0.35s ease;
}

.compliance-item:hover i {
    transform: scale(1.15);
}


/* GLOBAL CARD HOVER SYSTEM */
.hover-card {
    transition: 
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

/* ABOUT STORY ICON BLOCK */
.about-icon-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
}

.about-icon-block i {
    font-size: 4rem;
    color: #1f2a5a;
    margin-bottom: 1.5rem;
    transition: transform 0.35s ease;
}

.about-icon-block:hover i {
    transform: scale(1.1);
}

.about-icon-block h3 {
    margin-bottom: 1rem;
}


/* CLIENT LOGO EFFECT */
.grayscale {
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.3s ease;
}

.grayscale:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.stats-section {
    background: transparent; /* clean */
    padding: 4rem 0;
}

.stat-item {
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1f2a5a;
    margin-bottom: 0.5rem;
}

.stat-item p {
    margin: 0;
    color: #374151;
}

/* subtle hover */
.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}


.cta-clear {
    padding: 4rem 1rem;
    background: transparent; /* completely clear */
}

.cta-icon {
    font-size: 2.5rem;
    color: #1c1b66;
    margin-bottom: 1rem;
}

.cta-clear h2 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-clear p {
    color: #4b5563;
    margin-bottom: 1.8rem;
}

.cta-btn {
    padding: 12px 28px;
    font-weight: 500;
}

/* PAGE HEADER */
.page-header {
    padding: 6rem 1rem 3rem;
    background: transparent;
}

.page-header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* GALLERY ITEM */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 107, 220, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* SERVICE IMAGE STRIP */
/* FEATURE HIGHLIGHT */
.feature-highlight {
    padding: 5rem 0;
    position: relative;
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Reverse Layout */
.feature-highlight.reverse .feature-container {
    direction: rtl;
}

.feature-highlight.reverse .feature-content {
    direction: ltr;
}

/* Image */
.feature-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-highlight:hover .feature-image img {
    transform: scale(1.06);
}

/* Floating Accent Shape */
.feature-image::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(11, 107, 220, 0.1);
    border-radius: 20px;
    top: -20px;
    right: -20px;
    z-index: -1;
}

/* Content */
.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature-content p {
    color: #4b5563;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-highlight.reverse .feature-container {
        direction: ltr;
    }
}


.hero .btn.primary {
    background: #ffffff;
    color: #1f2a5a; /* hero navy color */
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

/* Icons inherit text color */
.hero .btn.primary i {
    color: inherit;
}

/* Hover effect */
.hero .btn.primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* CAROUSEL WRAPPER */
.client-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* TRACK */
.client-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scrollClients 35s linear infinite;
}

/* CLIENT LOGOS */
.client-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ANIMATION */
@keyframes scrollClients {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .client-track {
        gap: 2rem;
    }

    .client-track img {
        height: 45px;
    }
}





/* Certifications */
.certification-row{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(180px,1fr));
    gap:25px;
    margin-top:40px;
}

.cert-item{
    background:white;
    padding:25px;
    text-align:center;
    border-radius:10px;
    transition:all 0.3s ease;
}

.cert-item img{
    max-width:120px;
    margin-bottom:15px;
}

.cert-item p{
    font-weight:600;
    font-size:14px;
    margin:0;
}

/* hover */
.cert-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.cert-item img{
    filter: grayscale(100%);
}

.cert-item:hover img{
    filter: grayscale(0%);
}