
/* =========================
   DESIGN SYSTEM
========================= */

:root {
    --primary: #0B2D4D;
    --secondary: #1F6FEB;
    --accent: #F59E0B;
    --dark: #111827;
    --light: #F5F7FA;
}

/* =========================
   GLOBAL RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title{
    font-size: 2rem;
    color: #173856;
    font-weight: 700;
}

.section-title.dark-background{
    color: #ffffff;
}


/* =========================
   GLOBAL REVEAL SYSTEM
========================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}


/* =========================
   NAVBAR
========================= */

.custom-navbar {
    background: rgba(11, 45, 77, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 14px 0;
    z-index: 1000;
}

/* Brand */
.brand-logo {
    font-size: 20px;
    letter-spacing: 0.5px;
}

.brand-logo img{
	box-shadow: 0 0 4px 0 #f8f9fa;
    margin-right: 8pt;
}


/* Nav Links */
.navbar .nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: 0.3s ease;
}

/* Hover effect */
.navbar .nav-link:hover {
    color: #F59E0B;
}

/* Active link */
.navbar .nav-link.active {
    color: #ffffff;
}

/* Active underline effect */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #F59E0B;
    transition: 0.3s ease;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

/* =========================
   BUTTONS
========================= */

.btn-accent {
    background: var(--accent);
    color: #111;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-accent:hover {
    transform: translateY(-2px);
    background: #ffb020;
}

/* =========================
   HERO
========================= */


.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0B2D4D, #111827);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

/* Title */
.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

/* Subtitle */
.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

/* Buttons */
.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-stats .stat h3 {
    font-size: 24px;
    font-weight: 700;
    color: #F59E0B;
}

.hero-stats .stat p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}


/* Stats */
.social-media {
	opacity: 0;
    transform: translateY(30px);
}

/* Image */
.hero-image-wrapper {
    position: relative;
    opacity: 0;
    transform: scale(0.9);
}

.hero-image {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Floating glow effect */
.hero-image-wrapper::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: #F59E0B;
    filter: blur(120px);
    opacity: 0.3;
    top: -30px;
    right: -30px;
    z-index: -1;
}

/* =========================
   SERVICES
========================= */

.services-section {
    background: var(--light);
}

.service-card {
    height: 100%;
    background: #fff;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* LARGE SERVICE CARD */
.large-card {
    padding: 40px 30px;
}

/* SERVICE LIST */
.service-list {
    text-align: left;
    margin-top: 10px;
    padding-left: 18px;
}

.service-list li {
    font-size: 14px;
    margin-bottom: 5px;
}

/* ICON IMPROVEMENT */
.service-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.service-card.highlight {
    border: 2px solid var(--accent);
}


/* Icon */
.service-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Title */
.service-card h5 {
    font-weight: 600;
    color: #0B2D4D;
    margin-bottom: 10px;
}

/* Text */
.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* =========================
   PROJECTS
========================= */

.projects-section {
    background: var(--dark);
    color: #fff;
}

.project-card {
    height: 100%;
    background: #1f2937;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s ease;
}

.project-card.highlight {
    border: 2px solid var(--accent);
}

/* BADGE */
.project-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #111;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* LARGE CARD */
.large-card .project-image img {
    height: 260px;
    object-fit: cover;
}

/* HOVER UPGRADE */
.project-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


/* Image */
.project-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.project-content {
    padding: 20px;
}

.project-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.project-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Button */
.view-project {
    margin-top: 10px;
    border-radius: 6px;
}

/* =========================
   MODAL SYSTEM
========================= */

.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content-box {
    background: #fff;
    color: #000;
    padding: 30px 20px 20px 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    margin: auto;
    margin-top: 10pt;
    max-height: 90vh;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.modal-content-box p{
    font-size: 11pt;
    text-align: justify;
}

.modal-content-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.close-modal {
    position: absolute;
    top: 0px;
    right: 6px;
    font-size: 24px;
    cursor: pointer;
    color: red;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    background: var(--light);
}

.contact-info-box {
    height: 100%;
    background: var(--primary);
    color: #fff;
    padding: 30px;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.4s ease;
}

.contact-form-box {
    height: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: 0.4s ease;
}

/* Inputs */
.contact-form-box .form-control {
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    transition: 0.3s ease;
}

.contact-form-box .form-control:focus {
    border-color: #0B2D4D;
    box-shadow: none;
}

.contact-info-box h4 {
    margin-bottom: 10px;
}

.contact-item {
    margin-top: 15px;
    font-size: 14px;
}

.contact-item span {
    color: rgba(255,255,255,0.8);
}

#formResponse {
    font-size: 14px;
}

/* FLOATING BUTTON */
.map-float-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #F59E0B;
    color: #111;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s ease;
}

.map-float-btn:hover {
    transform: scale(1.1);
}

/* MODAL BACKDROP */
.map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.8);
    display: none;

    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* MODAL BOX */
.map-modal-content {
    width: 90%;
    max-width: 700px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    position: relative;
    animation: scaleIn 0.3s ease;
    margin: 30pt auto;
}

/* CLOSE BUTTON */
.close-map {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* ANIMATION */
@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* =========================
   ABOUT
========================= */

.about-section .stats-section{

}

.about-section .stats-section label{
    padding: 10pt;
    font-size: 18pt;
    background: #0b2d4d;
    color: #fff;
    border-radius: 5pt;
    margin-bottom: 10pt;
    box-shadow: 0 0 1px 1px #6c757d;
}

.mission-section{
    background: #0B2D4D;
    color: #fff;
}

.about-hero .about-hero-info p{
    text-align: justify;
}


/* =========================
   FOOTER
========================= */


.footer-section {
    background: #0B2D4D;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-sub-section{
    /*overflow: hidden;*/
    /*transition: 0.4s ease;*/
    /*opacity: 0;*/
    /*transform: translateY(40px);*/
}

    /* Titles */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-subtitle {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Text */
.footer-text {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-links li a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links li a:hover {
    color: #F59E0B;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}


/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
    background: #f8fafc;
}

/* FILTER BUTTONS */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    border: none;
    background: #e5e7eb;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #F59E0B;
    color: #111;
}

/* CARD */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* IMAGE FIX */
.gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.5s ease;
}

/* OVERLAY */
.gallery-overlay {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;

    padding: 25px;

    background: linear-gradient(
            to top,
            rgba(0,0,0,0.9),
            rgba(0,0,0,0.1)
    );

    color: #fff;

    transform: translateY(30px);
    opacity: 0;

    transition: 0.4s ease;
}

.gallery-overlay h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-overlay span {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

/* HOVER */
.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* MODAL */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.9);

    display: none;

    justify-content: center;
    align-items: center;

    z-index: 99999;
}

.gallery-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.gallery-modal-img {
    width: 100%;
    border-radius: 14px;
    margin: 20pt;
}

.close-gallery {
    position: absolute;
    top: -40px;
    right: 0;

    color: #fff;
    font-size: 35px;
    cursor: pointer;
}




/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    /* =========================
    Home
    ========================= */

    .hero-title {
        font-size: 32px;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 70px 0;
    }

    /* =========================
    Services
    ========================= */



    /* =========================
    Product
    ========================= */

    .project-card.large-card {
        padding: 0!important;
    }



    /* =========================
    About
    ========================= */



    /* =========================
    Contact
    ========================= */

}