
/* RESET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Zalando Sans Expanded", "Ubuntu", Helvetica, Arial, sans-serif;
}
#countryCode,
#countryCode option,
#countryList,
#countryList option {
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif !important;
}


body{
    background:#1a1a1a;
    color:#fff;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    min-height: 850px;   /* gives enough space */
    overflow: hidden;
    z-index: 1;
}

.hero-bg{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(60%);
}

.top-nav{
    position:absolute;
    top:20px;
    width:100%;
    padding:0 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:50px;
}

.contact-btn{
    padding:8px 16px;
    background:rgba(255,255,255,0.2);
    border-radius:4px;
    color:#fff;
    text-decoration:none;
}



.card-right a {
    text-decoration: none !important;
    color: #fff;
}

.card-right a:hover {
    opacity: 0.7;
}

.breadcrumbs a {
    color: #4cadad;
    text-decoration: none;
}

.breadcrumbs a:visited {
    color: #4cadad !important;
}

.breadcrumbs a:hover {
    opacity: 0.7;
}

.hero-content {
    position: absolute;
    top: 180px;   /* BELOW logo + breadcrumbs safely */
    left: 40px;
    max-width: 600px;
    z-index: 5;
}

.hero-content h1{
    font-size:50px;
    margin-bottom:15px;
    color: #4cadad;
     max-width: 466px;   /* Adjust width to force wrapping */
    white-space: normal;
}
.breadcrumbs {
    position: absolute;
    top: 90px;          /* below logo */
    left: 40px;
    z-index: 10;        /* above hero bg + gradient */
    font-size: 14px;
    color: #ccc;
}
@media (min-width: 1025px) {
    .hero-content {
        max-width: 900px;   /* increase width for single-line heading */
    }

    .hero-content h1 {
        font-size: 58px;    /* bigger desktop heading */
        white-space: nowrap; /* keep text on one line */
    }
}
.hero-content p{
    font-size:18px;
    margin-bottom:25px;
}

.hero-btns .btn{
    display:inline-block;
    background:#3c3c3c;
    padding:10px 20px;
    margin-right:10px;
    border-radius:5px;
    text-decoration:none;
    color:#fff;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(
        to bottom,
        rgba(26,26,26,0) 0%,
        rgba(26,26,26,0.4) 40%,
        rgba(26,26,26,0.75) 70%,
        rgba(26,26,26,1) 100%
    );
    pointer-events: none;
    z-index: 0; /* PUT BEHIND EVERYTHING */
}


@media (max-width: 1024px) {
    .hero {
        aspect-ratio: auto;
        height: auto;
        min-height: 450px;  /* safe workable height */
    }

    .hero-bg {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

/* ============= HERO MOBILE FIX ============= */
@media (max-width: 768px) {

    .hero {
        height: auto;              /* let it grow */
        min-height: unset;
        padding-top: 120px;        /* space for logo + breadcrumbs */
        padding-bottom: 40px;
    }

    .hero-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Logo */
    .top-nav {
        top: 15px;
        padding: 0 20px;
    }

     .logo img {
        height: 38px;
    }
    /* Breadcrumbs */
    .breadcrumbs {
        top: 65px;
        left: 20px;
        font-size: 12px;
    }

    /* HERO CONTENT FIX */
     .hero-content {
        position: relative;     /* REMOVE absolute */
        top: unset;
        left: unset;
        right: unset;
        max-width: 100%;
        padding: 0 20px;
        margin-top: 20px;
    }

     .hero-content h1 {
        font-size: 26px;
        line-height: 1.2;
        white-space: normal;
    }
 .hero-features ul {
        grid-template-columns: 1fr;   /* single column on mobile */
    }
    .hero-content p {
        font-size: 15px;
        margin-bottom: 18px;
    }

  .hero-btns .btn {
    display:inline-block;
    background:#3c3c3c;
    padding:10px 20px;
    margin-right:10px;
    border-radius:5px;
    text-decoration:none;
    color:#fff;
    transition: color 0.3s ease;
}

/* Hover for desktop + all devices */
.hero-btns .btn:hover {
    color:#4cadad;
}

}
.hero-description {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 650px;
}
/* KEY FEATURES */
.hero-features {
    margin-top: 20px;
}

.hero-features h4 {
    font-size: 18px;
    color: #4cadad;
    margin-bottom: 12px;
    font-weight: 600;
}

.hero-features ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
}

.hero-features ul li {
    font-size: 15px;
    position: relative;
    padding-left: 22px;
    line-height: 1.5;
}

/* Stronger bullet */
.hero-features ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: #4cadad;
    border-radius: 50%;
}

@media (max-width: 900px) {
    .hero-features ul {
        grid-template-columns: 1fr; /* single column */
    }
}
@media (max-width: 768px) {
    .hero-features ul li {
        font-size: 14px;
    }
}
/* Base button */
.hero-btns .btn {
    display: inline-block;
    background: #3c3c3c;         /* normal background */
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;                 /* normal text color */
    transition: all 0.3s ease;   /* smooth background + text transition */
}

/* Hover effect (desktop + mobile, everywhere) */
.hero-btns .btn:hover {
    background: #4cadad;         /* hover background color */
    color: #1a1a1a;              /* hover text color (black/dark) */
}
/* EXTRA SMALL SCREENS */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .breadcrumbs {
        font-size: 11px;
    }
}
.hero-bg-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0; /* stays behind content */
}

.hero-bg-slider img.hero-bg {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    filter: brightness(60%);
}

.hero-bg-slider img.active {
    opacity: 1;
}

.business-heading {
    font-size: 28px;
    font-weight: 700;
    color: #4cadad;      /* match your theme */
    margin-bottom: 18px;
    text-align: left;
    width: 100%;
}
@media (max-width: 600px) {
    .business-heading {
        font-size: 22px;
        text-align: center;
    }
}
/* Product Category Heading */
.pc-main-heading {
    margin-top: 20px; /* pulls it upward into the faded area */
    margin-bottom: 45px;
    padding-top: 40px; /* keeps layout stable */
    text-align: center;
    font-size: 35px;
    font-weight: bold;
}

/* ACCORDION */
.pc-accordion-wrapper{
    border-bottom:1px solid #ffffff33;
    padding-bottom:20px;
    margin-bottom:20px;
}

.pc-accordion-header{
    width:100%;
    background:#1a1a1a;
    padding:18px 25px;
    border:none;
    cursor:pointer;
    color: #4cadad;
    font-size:20px;
    font-weight:bold;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
@media (max-width: 600px) {

    .pc-accordion-header {
        font-size: 16px !important;     /* smaller text */
        line-height: 1.2 !important;
        padding: 14px 18px !important;  /* tighter spacing */
    }

    .pc-icon {
        font-size: 18px !important;     /* match new size */
    }
}
.pc-icon{
    font-size:22px;
    font-weight:bold;
}

.pc-accordion-body{
    max-height:0;
    overflow:hidden;
    background:#1a1a1a;
    transition:max-height .3s ease;
}

.pc-body-inner{
    display:flex;
    gap:25px;
    padding:25px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* FIX: Make all images uniform size */
.pc-slider {
    width: 40%;
    height: 260px;
    position: relative;  /* Required for arrows */
    border-radius: 10px;
    overflow: hidden;
}
.pc-slider img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;   /* keeps aspect ratio, no distortion */
    display: none;
}

.pc-slider img.active {
    display: block;
}
/* Track for slider movement */
.pc-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

/* Ensure images are equal size inside track */
.pc-track img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
    display: block !important; /* override your .active system */
}
/* Slider Arrows */
.pc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 10;
}
.pc-arrow.left { left: 5px; }
.pc-arrow.right { right: 5px; }

/* Dots */
.pc-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 10px;
}
.pc-dots span {
    width: 10px;
    height: 10px;
    background: #777;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}
.pc-dots span.active {
    background: #fff;
}
.pc-slider:not(:has(.pc-track)) {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pc-details{
    width:55%;
}
.pc-details h3{
    font-size:22px;
    margin-bottom:10px;
    color: #4cadad;
}
.pc-details p{
    font-size:16px;
    line-height:1.4;
    color:#fff;
}

.pc-accordion-body .pc-body-inner:not(:last-child){
    border-bottom:1px solid #ccc;
    margin-bottom:25px;
    padding-bottom:25px;
}
.pc-features {
    margin-top: 12px;
    padding-left: 18px;
    list-style: none;
}

.pc-features li {
    font-size: 15px;
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
    line-height: 1.4;
}

/* Green pointer icon */
.pc-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #4cadad;
    font-size: 22px;
    line-height: 14px;
}
.pc-accordion-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When visible */
.pc-accordion-header.show {
    opacity: 1;
    transform: translateY(0);
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .pc-features li {
        font-size: 14px;
        padding-left: 16px;
    }
}
/* MOBILE STRUCTURE FIX FOR ACCORDION ITEMS */
@media (max-width: 600px) {

    /* Stack image + content vertically */
    .pc-body-inner {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        padding: 20px 15px !important;
    }

    /* Make slider full width */
    .pc-slider {
        width: 100% !important;
        height: auto !important;
        max-height: 300px;
    }

    .pc-slider img,
    .pc-track img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    /* Adjust slider arrows */
    .pc-arrow {
        top: 50% !important;
        transform: translateY(-50%);
        padding: 6px 10px !important;
        font-size: 18px !important;
    }

    /* Make details section full width */
    .pc-details {
        width: 100% !important;
        text-align: left !important;
    }

    .pc-details h3 {
        font-size: 20px !important;
        text-align: left !important;
    }

    .pc-details p {
        font-size: 15px !important;
        line-height: 1.4;
        margin-bottom: 10px !important;
    }

    /* Bullet points full width */
    .pc-features {
        padding-left: 10px !important;
        margin-top: 10px !important;
    }

    .pc-features li {
        font-size: 14px !important;
        margin-bottom: 6px !important;
        padding-left: 16px !important;
    }
}
/* FIX CROPPED IMAGES ON MOBILE */
@media (max-width: 600px) {

    /* Remove cropping */
    .pc-slider {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }

    /* Track auto height */
    .pc-track {
        height: auto !important;
    }

    /* Images should scale naturally */
    .pc-track img,
    .pc-slider img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    /* Arrows reposition correctly on taller images */
    .pc-arrow {
        top: 45% !important;
    }
}

/* FADING ANIMATION */
.pc-accordion-body {
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s ease, opacity 0.35s ease, transform 0.35s ease;
}

.pc-accordion-body.open {
    opacity: 1;
    transform: translateY(0);
}
/* ===============================
   IDEAL FOR + MILITARY CARD WRAPPER
   (ONLY SIDE BY SIDE ON PC VIEW)
   =============================== */
.ideal-military-wrapper{
    padding: 50px 20px 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 160px;
}

/* Ideal For */
.ideal-for-section{
    flex:1;
}
.ideal-for-section h3{
    font-size:24px;
    margin-bottom:12px;
}
.ideal-for-section ul li{
    font-size:18px;
    margin-bottom:8px;
}

/* Military Card */

.military-card{
    width:100%;
    max-width:680px;
    background:url('images/camo-strip4.png') center/cover no-repeat;
    display:flex;
    align-items:center;
    padding:42px;
    gap:30px;
    border-radius:14px;
    box-shadow:0 8px 26px rgba(0,0,0,0.5);
}
.military-card-section{
    flex: 1;
    max-width: 600px;
}
.military-card .card-left img{
    width:150px;
    height:185px;
    border-radius:6px;
    object-fit:cover;
}

.military-card .card-right h3{
    font-size:26px;
    font-weight:700;
    margin-bottom:6px;
}
.military-card .role{
    font-size:18px;
    margin-bottom:12px;
    opacity:.9;
}
.military-card .line{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    margin-bottom:8px;
}
.military-card .icon{
    font-size:20px;
}

/* ===========================
     RESPONSIVE 
   =========================== */
   
@media (max-width: 900px) {

    .ideal-military-wrapper {
        flex-direction: column;
        gap: 50px;
        padding: 60px 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .lion-bottom img {
        max-width: 400px;
        width: 100%;
    }
}
/* Tablet */
@media (max-width:900px){
    .ideal-military-wrapper{
        flex-direction:column;
    }

    .military-card{
        padding:30px;
        gap:20px;
        flex-direction:column;
        text-align:center;
    }

    .military-card .card-left img{
        width:130px;
        height:160px;
    }
}

/* Mobile */
@media (max-width:600px){
    .military-card{
        padding:25px;
    }
    .military-card .card-left img{
        width:140px;
        height:160px;
        margin:auto;
    }
    .military-card .line{
        justify-content:center;
    }
}

/* Small Phones */
@media (max-width:420px){
    .military-card{
        padding:20px;
    }
    .military-card .card-left img{
        width:120px;
        height:150px;
    }
    .military-card .line{
        font-size:15px;
    }
}
.ideal-image-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: auto;
}

.ideal-img {
    width: 100%;
    max-width: 420px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 16px;
    
}

.ideal-caption {
    font-size: 22px;
    font-weight: 600;
    color: #4cadad;
    margin-top: 10px;
}

/* Tablet */
@media (max-width: 900px) {
    .ideal-img {
        max-width: 360px;
    }
    .ideal-caption {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .ideal-img {
        max-width: 300px;
    }
    .ideal-caption {
        font-size: 18px;
    }
}
/* Back To Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #4cadad;
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
}

/* Show button when scrolling */
.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #3b8f8f;
}
/* ===========================
   VALIDATION FORM OVERLAY
=========================== */

#validationOverlay {
    position: fixed;
    inset: 0;
    background: #0f0f0f;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.form-container {
    width: 90%;
    max-width: 450px;
    background: #1a1a1a;
    border: 1px solid #4cadad;
    padding: 30px;
    border-radius: 10px;
}

.form-container h2 {
    color: #4cadad;
    text-align: center;
    margin-bottom: 20px;
}

.form-container label {
    margin-top: 10px;
    display: block;
    font-size: 14px;
    color: #fff;
}

.form-container input,
.form-container select,
.form-container textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #444;
    background: #0f0f0f;
    color: #fff;
    border-radius: 6px;
}

.phone-row {
    display: flex;
    gap: 8px;
}

.submitBtn {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #4cadad;
    border: none;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.submitBtn:hover {
    opacity: 0.8;
}
/* SUCCESS MODAL */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.success-box {
    background: #1a1a1a;
    border: 1px solid #4cadad;
    padding: 30px;
    width: 90%;
    max-width: 380px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    animation: fadeInScale 0.4s ease;
}

.success-box h3 {
    color: #4cadad;
    margin-bottom: 12px;
    font-size: 22px;
}

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}
/* ================= LOADER + CHECKMARK ================= */
.circle-loader {
  margin: 0 auto 20px auto;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-left-color: #4cadad;
  animation: loader-spin 1.2s infinite linear;
  position: relative;            /* IMPORTANT → needed for centering */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;                 /* center fix */
  justify-content: center;       /* center fix */
  align-items: center;           /* center fix */
}

.load-complete {
  animation: none;
  border-color: #4cadad;
  transition: border 500ms ease-out;
}

.checkmark {
  display: none;
}

.checkmark.draw:after {
  animation: checkmark 800ms ease forwards;
}

.checkmark:after {
  content: "";
  position: absolute;

  width: 16px;
  height: 32px;

  /* REAL CHECKMARK SHAPE */
  border-right: 4px solid #4cadad;
  border-bottom: 4px solid #4cadad;

  left: 50%;
  top: 50%;

  /* PERFECT TICK ANGLE */
  transform: translate(-50%, -50%) rotate(45deg);

  transform-origin: center;
}


@keyframes loader-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes checkmark {
  0% { height: 0; width: 0; opacity: 1; }
  20% { height: 0; width: 18px; opacity: 1; }
  40% { height: 35px; width: 18px; opacity: 1; }
  100% { height: 35px; width: 18px; opacity: 1; }
}



.validation-bg-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* behind form */
}

.validation-bg-slider img.vbg {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: brightness(35%);
    transition: opacity 1.5s ease-in-out;
}

.validation-bg-slider img.vbg.active {
    opacity: 1;
}

/* ===========================
   APPLICATION + CONTACT LAYOUT
=========================== */

.application-section {
    flex: 6;
    max-width: 440px;
    background: #161616;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #4cadad33;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Two column row */
.form-row {
    display: flex;
    gap: 18px;
}

.form-row input {
    flex: 1;
}

.application-form input,
.application-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Focus glow */
.application-form input:focus,
.application-form textarea:focus {
    border-color: #4cadad;
    box-shadow: 0 0 10px #4cadad33;
    outline: none;
}

/* Button fix */
.application-form button {
    margin-top: 10px;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
}

/* ===========================
   LION BOTTOM CENTER
=========================== */

.lion-bottom {
    text-align: center;
    margin-top: 80px;
    padding-bottom: 40px;
}

.lion-bottom img {
    max-width: 400px;
    width: 80%;
    opacity: 0.9;
}

.lion-bottom p {
    margin-top: 20px;
    font-size: 22px;
    color: #4cadad;
    font-weight: 600;
}
/* ===========================
   RESPONSIVE FIX
=========================== */
@media (min-width: 768px) and (max-width: 1024px) {

    .ideal-military-wrapper {
        padding: 80px 40px;
        gap: 60px;
    }

    .application-section {
        max-width: none;      /* remove restriction */
        width: 100%;
    }

    .military-card-section {
        max-width: none;      /* remove restriction */
        width: 100%;
    }

    .military-card {
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 900px) {

    .ideal-military-wrapper {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .lion-bottom img {
        max-width: 280px;
    }
}
/* Desktop & Tablet */
.pc-track img[src="images/HUB UNIT WITHOUT BTY1444.png"] {
    transform: scale(0.85);
    margin: auto;
}

/* Mobile only */
@media (max-width: 600px) {
    .pc-track img[src="images/HUB UNIT WITHOUT BTY1444.png"] {
        transform: scale(0.95);
    }
}