body {
    margin: 0;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    margin: 0;
 
}



/* NAV */

/* New Additions */

/* NAV */

.logo {
    font-weight: 700;
    color: #0094d4;
    font-size: 18px;
    display: flex;
    align-items: center;
}

/* Logo Images */
.logo-img {
    height: 150px;
    width: auto;
    display: none;
    transition: height 0.3s ease;
}

/* Show white logo by default (on transparent header) */
.white-logo {
    display: block;
}

/* When scrolled */
.main-header.scrolled .white-logo {
    display: none;
}

.main-header.scrolled .dark-logo {
    display: block;
}

.main-header.scrolled .logo-img {
    height: 85px;
}

/* Underline animation */
.nav-links a {
    position: relative;
    text-decoration: none;
    color: #333;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #f37828;
    transition: 0.3s;
}

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

.nav-links a.active {
    color: #0094d4;
}

/* NAVBAR FIX */
.nav-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Single consolidated .main-header rule */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    padding: 12px 0;  /* ONE padding value — no more conflict */
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* add this */
    margin-top: -20px;
}

.main-header .logo {
    color: white;
    font-weight: bold;
}

.main-header .nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.main-header.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 12px 0;  /* same as above — no jump */
}

.main-header.scrolled .logo,
.main-header.scrolled .nav a {
    color: black;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

/* ========== HAMBURGER ========== */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.main-header.scrolled .hamburger span {
    background: #333;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .main-header .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 32px;
        padding: 40px 32px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .main-header .nav.open {
        right: 0;
    }

    .main-header .nav a {
        color: #333;
        font-size: 18px;
        margin-left: 0;
    }

    .logo-img {
        height: 55px;
    }

    .main-header.scrolled .logo-img {
        height: 85px;
    }
}

@media (max-width: 480px) {
    .main-header .nav {
        width: 85%;
    }

    .logo-img {
        height: 90px;
    }

}


/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;

}

/* VIDEO WRAPPER */

    .video-container {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vw;
        height: 100vh;
        transform: translate(-50%, -50%);
        overflow: hidden;
        z-index: 1;
    }


.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%) scale(1.3);
    pointer-events: none;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 2;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    top: 50%;
    transform: translateY(-50%);
}

.hero-buttons{

margin-top: 40px;
}

/* BUTTONS */
.btn {
    background: #f37828;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
}

.btn.outline {
    background: transparent;
    border: 2px solid white;
}

/* SECTIONS */
.section {
    padding: 60px 20px;
}

.grey-bg {
    background: #f5f5f5;
}

.blue-bg {
    background: #0094d4;
    color: white;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
}

/* CARDS */
.card {
    background: white;
    padding: 25px;
    border-radius: 15px;
}

.hover:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

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

/* METRICS */
.metrics {
    display: flex;
    justify-content: space-around;
    text-align: center;
}


/* FOOTER */
footer {
    background: #818284;
    color: white;
    text-align: center;
    padding: 20px;
}

/* ========== ABOUT ========== */

.about-wrap {
    padding: 0px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 64px;
}

.about-tag {
    display: inline-block;
    background: #e6f1fb;
    color: #185fa5;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.2;
}

.about-heading span {
    color: #0094d4;
}

.about-body {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 16px;
}

.about-cta {
    display: inline-block;
    margin-top: 12px;
}

.about-visual {
    position: relative;
    padding-bottom: 30px;
}

.about-card-main {
    background: #0094d4;
    border-radius: 16px;
    padding: 36px;
    color: white;
}

.about-card-main h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.about-card-main p {
    font-size: 14px;
    opacity: 0.85;
    margin: 0 0 24px;
    line-height: 1.7;
}

.badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.18);
    color: white;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
}

.about-stat-card {
    position: absolute;
    bottom: -24px;
    right: -20px;
    background: white;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: #e6f1fb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-num {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.stat-label {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pillar {
    background: white;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 28px 24px;
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pillar h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.pillar p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .about-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stat-card {
        position: static;
        margin-top: 16px;
        display: inline-flex;
    }

    .pillars {
        grid-template-columns: 1fr;
    }

    .about-heading {
        font-size: 26px;
    }

    .about-visual {
        padding-bottom: 0;
    }
}

/* ===== ANIMATION BASE ===== */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* When visible */
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== STAGGER EFFECT ===== */
.pillar:nth-child(1) {
    transition-delay: 0.2s;
}
.pillar:nth-child(2) {
    transition-delay: 0.4s;
}
.pillar:nth-child(3) {
    transition-delay: 0.6s;
}

/* ===== HOVER EFFECT (PREMIUM) ===== */
.pillar {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* MAIN CARD HOVER */
.about-card-main {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-card-main:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* STAT CARD FLOAT */
.about-stat-card {
    transition: transform 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
}


/* ========== WHY SECTION ========== */

.why-wrap {
    padding: 10px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADER */
.why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.why-tag {
    display: inline-block;
    background: #e6f1fb;
    color: #185fa5;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.why-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-heading span {
    color: #0094d4;
}

.why-subtext {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.why-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 24px;
    transition: all 0.4s ease;
}

/* ICON */
.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
}

/* TEXT */
.why-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* HOVER */
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-header {
        text-align: left;
        max-width: 700px;
        margin: 0 auto 50px;
        margin-top: -50px;
    }
            
    
    
}

/* ========== ROLES SECTION ========== */

.roles-wrap {
    padding: 0px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADER */
.roles-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.roles-tag {
    display: inline-block;
    background: #e6f1fb;
    color: #185fa5;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.roles-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.roles-heading span {
    color: #0094d4;
}

.roles-subtext {
    font-size: 15px;
    color: #666;
}

/* TABLE */
.roles-table {
    background: white;
    border-radius: 16px;
    border: 1px solid #eee;
    overflow: hidden;
}

/* ROW */
.roles-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 120px;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #f1f1f1;
    transition: 0.3s;
}

/* HEADER ROW */
.roles-head {
    background: #f9fbfd;
    font-weight: 600;
    font-size: 13px;
    color: #666;
}

/* HOVER */
.roles-row:hover {
    background: #f5faff;
}

/* ROLE TEXT */
.roles-row strong {
    display: block;
    font-size: 15px;
}

.roles-row p {
    margin: 3px 0 0;
    font-size: 12px;
    color: #888;
}

/* COUNTDOWN */
.countdown {
    font-weight: 600;
    color: #f37828;
    font-size: 13px;
}

/* BUTTON SMALL */
.btn.small {
    padding: 6px 14px;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .roles-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .roles-head {
        display: none;
    }

    .roles-header {
        text-align: left;
        max-width: 700px;
        margin: 0 auto 50px;
        margin-top: -50px;
    
}}



/* ========== PROCESS SECTION ========== */

.process-wrap {
    padding: 0px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADER */
.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.process-tag {
    display: inline-block;
    background: #e6f1fb;
    color: #185fa5;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.process-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-heading span {
    color: #0094d4;
}

.process-subtext {
    font-size: 15px;
    color: #666;
}

/* STEPS GRID */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* STEP CARD */
.process-step {
    background: white;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

/* STEP NUMBER */
.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #0094d4;
    margin-bottom: 12px;
}

/* TEXT */
.process-step h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* HOVER */
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* CONNECTING LINE (DESKTOP ONLY) */
.process-steps {
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: #e6f1fb;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-steps::before {
        display: none;
    }
}


/* ========== RECRUITMENT (UPDATED) ========== */

.recruitment-wrap {
    max-width: 1100px;
    margin: auto;
    padding: 0px 20px;
}

/* GRID */
.recruitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.recruitment-image {
    position: relative;
}

.recruitment-image img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

/* FLOATING CARD (YOUR UNIQUE VERSION) */
.recruitment-float {
    position: absolute;
    top: 20px;
    right: -20px;
    background: linear-gradient(135deg, #0094d4, #007bb5);
    color: white;
    padding: 20px;
    border-radius: 14px;
    width: 220px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.recruitment-float h4 {
    font-size: 14px;
    margin-bottom: 6px;
}

.recruitment-float p {
    font-size: 12px;
    opacity: 0.9;
}

/* CONTENT */
.recruitment-content h2 {
    font-size: 30px;
    margin-bottom: 16px;
}

.recruitment-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* POINTS */
.recruitment-points {
    margin-bottom: 25px;
}

.recruitment-points div {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

/* TAG */
.recruitment-tag {
    display: inline-block;
    background: #fff3ea;
    color: #f37828;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* HOVER */
.recruitment-grid:hover .recruitment-float {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .recruitment-grid {
        grid-template-columns: 1fr;
    }

    .recruitment-float {
        position: static;
        margin-top: 15px;
        width: auto;
    }
}


/* ========== CONTACT PREMIUM ========== */

.contact-wrap {
    max-width: 1100px;
    margin: auto;
    padding: -30px 20px;
}

/* HEADER */
.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    margin-top: -40px;
}

.contact-heading span {
    color: #0094d4;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* FORM CARD */
.contact-form-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #eee;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* FORM */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s;
}

/* INPUT FOCUS (PREMIUM TOUCH) */
.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
    border-color: #0094d4;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,148,212,0.1);
}

/* MAP CARD */
.contact-map-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* MAP */
.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
}

/* INFO OVERLAY */
.map-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.map-info h4 {
    margin-bottom: 6px;
    font-size: 14px;
}

.map-info p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* HOVER EFFECT */
.contact-form-card:hover,
.contact-map-card:hover {
    transform: translateY(-6px);
    transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* General Footer Styles */
.mga-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px 20px;
    font-family: 'Outfit', sans-serif; /* Set to your preferred font */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Typography & Links */
.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #00aaff; /* Accent color */
}

.footer-about {
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    max-width: 180px;
    margin-bottom: -30px;
    margin-top: -30px;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

.footer-legal a {
    color: #777;
    text-decoration: none;
    margin: 0 5px;
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col ul li a:hover {
        padding-left: 0;
    }
}