
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
 :root {
      --ssc-dark-green: #08281b;
      --ssc-accent-green: #0d3827;
      --ssc-light-green: #144933;
      --ssc-gold: #c89612;
      --ssc-gold-hover: #b88a0e;
      --ssc-gold-light: #fbf6e8;
      --ssc-body-bg: #f8faf9;
      --ssc-card-bg: #ffffff;
      --ssc-text-dark: #1e293b;
      --ssc-text-muted: #64748b;
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--ssc-text-dark);
      background-color: var(--ssc-body-bg);
      overflow-x: hidden;
    }

    a{
    text-decoration:none;
}

img{
    max-width:100%;
    height:auto;
    object-fit:cover;
}

    h1, h2, h3, h4, h5, h6, .brand-font {
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .bg-dark-green {
      background-color: var(--ssc-dark-green) !important;
    }

    .bg-accent-green {
      background-color: var(--ssc-accent-green) !important;
    }

    .bg-gold-light {
      background-color: var(--ssc-gold-light) !important;
    }

    .text-gold {
      color: var(--ssc-gold) !important;
    }

    .btn-gold {
      background-color: var(--ssc-gold);
      color: #000;
      font-weight: 700;
      border: 1px solid var(--ssc-gold);
      transition: all 0.3s ease;
    }

    .btn-gold:hover {
      background-color: var(--ssc-gold-hover);
      color: #000;
      border-color: var(--ssc-gold-hover);
      transform: translateY(-2px);
    }

    .btn-outline-gold {
      background-color: transparent;
      color: var(--ssc-gold);
      border: 1.5px solid var(--ssc-gold);
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-outline-gold:hover {
      background-color: var(--ssc-gold);
      color: #fff;
    }

    .btn-outline-white {
      background-color: transparent;
      color: #ffffff;
      border: 1.5px solid #ffffff;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-outline-white:hover {
      background-color: #ffffff;
      color: var(--ssc-dark-green);
    }

    /* Navbar Styling */
    .navbar-dark-custom {
      /*background-color: var(--ssc-dark-green);*/
      background-color: #00310C;
      /*border-bottom: 1px solid rgba(212, 160, 23, 0.2);*/
    }

    .nav-link {
      color: #e2e8f0 !important;
      font-weight: 500;
      font-size: 0.92rem;
      padding: 0.6rem 0.9rem !important;
      transition: color 0.2s;
    }

    .nav-link:hover, .nav-link.active {
      color: var(--ssc-gold) !important;
    }

    /* Page Navigation Views */
    .page-view {
      display: none;
    }

    .page-view.active-page {
      display: block;
      animation: fadeIn 0.4s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Hero Section */
    .hero-section {
      /*   background: linear-gradient(rgba(5, 28, 19, 0.75), rgba(10, 51, 35, 0.75)),
                url('assets/images/breadcrumb.jpg');*/
     background:url('../img/breadcrumb1.png');
      background-size: cover;
      color: white;
      position: relative;
     /* padding: 4rem 0 3.5rem 0;*/
     padding: 8rem 0 8.5rem 0;
      overflow: hidden;
    }

    @media (max-width:768px){
        .hero-section {
            background:linear-gradient(to right, rgb(8 32 20) 0%, rgb(8 32 20) 42%, rgb(8 32 20) 55%, rgb(8 32 20 / 39%) 70%), url('../img/breadcrumb1.png');
             background-size: cover;
             color: white;
             position: relative;
            /* padding: 4rem 0 3.5rem 0;*/
            padding: 8rem 0 8.5rem 0;
            overflow: hidden;
        }
    }

    .hero-section::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: radial-gradient(circle at 70% 30%, rgba(212, 160, 23, 0.12) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-title-badge {
      font-size: 0.85rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--ssc-gold);
      font-weight: 700;
    }

    .hero-main-title {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.5px;
    }

    .hero-sub-title {
      font-size: 1.15rem;
      color: var(--ssc-gold);
      letter-spacing: 1px;
      font-weight: 700;
    }
    .hero-title-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-title-badge::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #ffc1078a;
}

    /* Feature Box & Cards */
    .feature-card-sm {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 1.25rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    }

    .feature-card-sm:hover {
      border-color: #113e1f;
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(10, 40, 28, 0.08);
    }
/*
    .icon-wrapper-gold {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--ssc-gold-light);
      color: var(--ssc-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 0.8rem;
    }
*/
    .service-badge-card {
      background: #ffffff;
      border: 1px solid #e9ecef;
      border-radius: 12px;
      padding: 1.2rem 0.8rem;
      text-align: center;
      transition: all 0.3s ease;
    }

    .service-badge-card:hover {
      border-color: var(--ssc-gold);
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
      transform: translateY(-3px);
    }

    .service-badge-card i {
      font-size: 1.8rem;
      color: var(--ssc-gold);
      margin-bottom: 0.6rem;
      display: block;
    }

    .service-badge-card h6 {
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 0;
      color: var(--ssc-dark-green);
    }

    .section-line {
    width: 60px;
    height: 2px;
    background-color: #d4a017a3;
}

.text-gold {
    color: #d4a017;
}

.text-dark-green {
    color: #1d3b2a;
}

.tracking-wider {
    letter-spacing: 2px;
}

    /* Dark Section Badges (Industries We Serve) */
   /* .dark-industry-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 1rem 0.8rem;
      text-align: center;
      color: #ffffff;
      transition: all 0.3s ease;
    }

    .dark-industry-card:hover {
      background: rgba(212, 160, 23, 0.15);
      border-color: var(--ssc-gold);
      transform: translateY(-3px);
    }

    .dark-industry-card i {
      font-size: 1.5rem;
      color: var(--ssc-gold);
      margin-bottom: 0.5rem;
      display: block;
    }

    .dark-industry-card span {
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.2;
      display: block;
    }*/

.industries-section{
    position:relative;
    padding:35px 0;
    background:#071f16 url("../img/worldcity.png") no-repeat right center;
    overflow:hidden;
}
.section-titles {
    color: #c89d3d;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .5px;
}
/* Optional dark overlay */
.industries-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, #00310c 0%, #00310c 45%, rgba(7, 31, 22, .35) 70%, rgba(7, 31, 22, 0) 100%)
}

.industries-section .container{
    position:relative;
    z-index:2;
}

.industry-content{
    max-width:580px;
}

.section-title{
    color:#c89d3d;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}
.industry-content h2{
    color:#fff;
    font-size:25px;
    font-weight:600;
    line-height:1.25;
    margin:20px 0 20px;
}

.industry-item{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.industry-item i{
    font-size:28px;
    color:#c89d3d;
}

.industry-item p{
    color:#fff;
    font-size:15px;
    font-weight:500;
    line-height:1.4;
    margin:0;
}

@media(max-width:991px){

    .industries-section{
        background-size:cover;
        background-position:center;
    }

    .industries-section::before{
        background:rgba(7,31,22,.9);
    }

    .industry-content h2{
        font-size:32px;
    }
}

    /* Global Reach Section */
    .reach-country-box {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    }

    .reach-country-box i {
      font-size: 2.2rem;
      color: #1e5720;
    }

    /* Why Choose Us Grid */
   
.section-title{
    color:#183b2d;
    font-size:2rem;
    font-weight:700;
    letter-spacing:.5px;
}

.why-us-item{
    text-align:center;
    padding:10px 15px;
    border-right:1px solid #ececec;
    height:100%;
}

.why-us-item i{
    font-size:2.4rem;
    color:#b58a2d;
    margin-bottom:18px;
}

.why-us-item p{
    margin:0;
    font-size:14px;
    font-weight:600;
    color:#333;
    line-height:1.55;
}

@media (max-width:767px){

    .why-us-item{
        border-right:none;
        border-bottom:1px solid #ececec;
        padding:25px 10px;
    }

    .section-title{
        font-size:1.5rem;
    }

    .why-us-item i{
        font-size:2rem;
    }

    .why-us-item p{
        font-size:13px;
    }
}

/*OUR PROMISE*/

.our-promise{
    background:linear-gradient(to right,rgba(8,32,20,.88) 0%,rgba(8,32,20,.88) 42%,rgba(8,32,20,.55) 55%,rgba(8,32,20,0) 70%),
        url("../img/why-choose.jpg") center center/cover no-repeat;
    min-height:500px;
    display:flex;
    align-items:center;
}

.overlay{
    width:100%;
    padding:80px 0;
}

.promise-title{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.promise-title span{
    width:60px;
    height:2px;
    background:#b58a2d;
}

.promise-title small{
    color:#b58a2d;
    font-weight:700;
    letter-spacing:2px;
}

.our-promise h2{
    color:#fff;
    font-size:25px;
    font-weight:700;
    line-height:1.4;
}

.our-promise h2 span{
    color:#c79b3b;
}

.our-promise p{
    color:#fff;
    font-size:1.6rem;
    font-weight:700;
    line-height:1.4;
}

@media (max-width:768px){

    .our-promise{
        min-height:auto;
    }

    .overlay{
        padding:60px 0;
    }

    .our-promise h2{
        font-size:1.6rem;
    }

    .our-promise p{
        font-size:1.2rem;
    }

    .promise-title{
        justify-content:center;
    }

    .col-lg-6{
        text-align:center;
    }
}
/* CTA ACTION BAR*/
.cta-strip{
    background:#fff;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
    padding:18px 0;
}

.cta-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.cta-icon{
    width:70px;
    height:70px;
    background:#00310C;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.cta-icon i{
    color:#fff;
    font-size:28px;
}

.cta-left h4{
    margin:0 0 4px;
    font-size:25px;
    font-weight:700;
    color:#222;
}

.cta-left p{
    margin:0;
    font-size:20px;
    color:#444;
}

.btn-employer,
.btn-job{
    display:inline-block;
    min-width:185px;
    text-align:center;
    text-decoration:none;
    padding:12px 28px;
    font-size:14px;
    font-weight:700;
    border-radius:3px;
    transition:.3s;
}

.btn-employer{
    background:#d7a126;
    color:#222;
}

.btn-employer:hover{
    background:#c2911e;
    color:#222;
}

.btn-job{
    background:#00310C;
    color:#fff;
}

.btn-job:hover{
    background:#0a2916;
    color:#fff;
}

@media(max-width:991px){

    .cta-left{
        justify-content:center;
        text-align:center;
        flex-direction:column;
        gap:15px;
    }

    .cta-left h4{
        font-size:24px;
    }

    .cta-left p{
        font-size:17px;
    }

    .btn-employer,
    .btn-job{
        width:100%;
        margin:8px 0 0;
    }
}
    /* WhatsApp Floating Widget */
    .whatsapp-widget-btn {
      position: fixed;
      bottom: 25px;
      right: 25px;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
      z-index: 9999;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .whatsapp-widget-btn:hover {
      transform: scale(1.1);
      color: white;
    }

    .whatsapp-popover {
      position: fixed;
      bottom: 95px;
      right: 25px;
      width: 310px;
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      z-index: 9998;
      display: none;
      overflow: hidden;
      border: 1px solid #e2e8f0;
    }

    .whatsapp-popover.show {
      display: block;
      animation: popIn 0.3s ease;
    }

    @keyframes popIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    .whatsapp-header {
      background: #075e54;
      color: white;
      padding: 1rem;
    }

    /* Accordion styling */
    .accordion-button:not(.collapsed) {
      color: var(--ssc-dark-green);
      background-color: var(--ssc-gold-light);
      font-weight: 700;
    }

    .accordion-button:focus {
      box-shadow: none;
      border-color: rgba(212, 160, 23, 0.5);
    }

    /* Brand Logo Box */
    .brand-logo-container {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    
    @media (max-width:768px){
        .brand-logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
    }

    .logo-icon {
      width: 44px;
      height: 44px;
      background: radial-gradient(circle, #d4a017 0%, #966f07 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 800;
      font-size: 1.3rem;
      box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    }

    .logo-text-title {
      color: #ffffff;
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: 0.5px;
      line-height: 1.1;
      margin: 0;
    }

    .logo-text-sub {
      color: var(--ssc-gold);
      font-size: 0.65rem;
      letter-spacing: 1.5px;
      font-weight: 700;
      text-transform: uppercase;
      margin: 0;
    }

    /* Gallery Popup style */
    .mfp-bg { z-index: 10500; }
    .mfp-wrap { z-index: 10501; }

    @media (max-width: 991.98px) {
      .hero-main-title { font-size: 1.8rem; }
      .hero-section { padding: 4.5rem 0; }
    }
    .logo-2 {
    position: absolute;
    top: 0;
    background: #00310c;
    padding: 1px;
    border-radius: 0 0 20px 20px;
    /*box-shadow: 3px 3px 20px 0 #ffffff82;*/
    width: 200px !important;
   
  
    left: 0px;
    z-index: 99999;
}


/*footer css*/

.footer-section{
    background:#00310c;
    color:#fff;
    padding:70px 0 20px;
    font-family:'Poppins',sans-serif;
}

.footer-top{
    border-bottom:1px solid rgba(255,255,255,.08);
    padding-bottom:40px;
}
/*
.footer-logo img{
    width:72px;
}*/

.footer-logo h3{
    color:#d9a62b;
    font-size:38px;
    font-weight:700;
    margin:0;
    letter-spacing:1px;
}

.footer-logo span{
    color:#caa54c;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.footer-line{
    width:210px;
    height:2px;
    background:#b88a28;
    margin:15px 0;
}

.footer-about{
    color:#fff;
    font-size:17px;
    line-height:1.8;
    max-width:360px;
}

.footer-section h5{
    color:#fff;
    font-weight:700;
    margin-bottom:25px;
    font-size:25px;
    text-transform:uppercase;
}

.footer-section ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-section ul li{
    margin-bottom:14px;
}

.footer-section ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-section ul li a:hover{
    color:#d7a72d;
    padding-left:5px;
}

.social-links{
    display:flex;
    gap:14px;
    margin-top:25px;
}

.social-links a{
    width:46px;
    height:46px;
    border:2px solid rgba(255,255,255,.35);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.social-links a:hover{
    border-color:#d7a72d;
    color:#d7a72d;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:25px;
}

.contact-item i{
    color:#d7a72d;
    font-size:22px;
    margin-right:18px;
    margin-top:4px;
    width:25px;
}

.contact-item div{
    color:#fff;
    line-height:1.8;
    font-size:15px;
}

.copyright{
    text-align:center;
    padding-top:25px;
    color:#cfcfcf;
    font-size:15px;
}
.ser{
  height: 250px;
  object-fit: cover;
}

/* Responsive design system */
:root {
  --ssc-radius: 14px;
  --ssc-shadow: 0 16px 45px rgba(8, 40, 27, .09);
  --ssc-transition: 260ms cubic-bezier(.2, .8, .2, 1);
}

html { scroll-behavior: smooth; }
body { line-height: 1.65; }
.container { width: min(100% - 2rem, 1200px); }
.sticky-top { z-index: 1030; }

.navbar-dark-custom {
  min-height: 76px;
  transition: background-color var(--ssc-transition), box-shadow var(--ssc-transition);
}

.navbar.sticky-nav,
.navbar-dark-custom:has(.show) {
  background-color: rgba(8, 40, 27, .98);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

/*.logo-2 {
  position: relative;
  top: auto;
  width: 104px !important;
  height: 74px;
  object-fit: contain;
  border-radius: 0 0 16px 16px;
}*/

.navbar-toggler { padding: .45rem .6rem; }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(200, 150, 18, .3); }

.btn-gold, .btn-outline-white, .btn-employer, .btn-job {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  transition: transform var(--ssc-transition), box-shadow var(--ssc-transition), background-color var(--ssc-transition);
}

.btn-gold:hover, .btn-employer:hover, .btn-job:hover { box-shadow: 0 10px 22px rgba(8, 40, 27, .18); }

.hero-section {
  min-height: min(680px, calc(100svh - 76px));
  display: flex;
  align-items: center;
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  background-position: center;
}

.hero-main-title { font-size: clamp(2rem, 5vw, 4.4rem); max-width: 900px;font-size: 54px;}
.hero-sub-title { font-size: clamp(1rem, 2vw, 1.3rem); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.5rem; }
.hero-stat { display: flex; flex-direction: column; min-width: 90px; border-left: 2px solid rgba(200, 150, 18, .65); padding-left: .85rem; }
.hero-stat strong { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1; }
.hero-stat strong::after { content: '+'; color: var(--ssc-gold); }
.hero-stat span { color: rgba(255,255,255,.72); font-size: .7rem; letter-spacing: .1em; margin-top: .4rem; text-transform: uppercase; }
section { position: relative; }
section.py-5 { padding-top: clamp(3.5rem, 7vw, 6rem) !important; padding-bottom: clamp(3.5rem, 7vw, 6rem) !important; }

.feature-card-sm, .service-badge-card, .reach-country-box {
  border-radius: var(--ssc-radius);
  box-shadow: 0 8px 22px rgba(8, 40, 27, .045);
  transition: transform var(--ssc-transition), box-shadow var(--ssc-transition), border-color var(--ssc-transition);
}

.feature-card-sm:hover, .service-badge-card:hover, .reach-country-box:hover {
  transform: translateY(-7px);
  box-shadow: var(--ssc-shadow);
}

.feature-card-sm img, .service-badge-card img, .industry-item img, .why-us-item img { transition: transform var(--ssc-transition); }
.feature-card-sm:hover img, .service-badge-card:hover img, .industry-item:hover img, .why-us-item:hover img { transform: scale(1.1) rotate(-3deg); }
.industry-item { padding: .75rem; border-radius: 12px; transition: background-color var(--ssc-transition), transform var(--ssc-transition); }
.industry-item:hover { background: rgba(200, 157, 61, .12); transform: translateY(-4px); }
.reach-country-box { min-height: 84px; }
.reach-country-box img { width: 42px; height: 42px; object-fit: contain; flex: 0 0 auto; }
.section-title { font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.25; }
.our-promise { min-height: clamp(430px, 55vw, 620px); }
.cta-left h4 { font-size: clamp(1.2rem, 2.3vw, 1.65rem); }
.cta-left p { font-size: clamp(.95rem, 1.8vw, 1.15rem); }
.footer-section h5 { font-size: 1.1rem; letter-spacing: .08em; }
[data-aos] { will-change: transform, opacity; }

/* Prevent the primary viewport from appearing empty while AOS initializes. */
.hero-section.aos-init,
.page-banner.aos-init { opacity: 1 !important; transform: none !important; transition: none !important; }

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav { gap: .2rem; }
  .nav-link { padding-inline: .7rem !important; }
}

@media (max-width: 991.98px) {
  .navbar-collapse { padding: 1rem 0 .75rem; }
  .navigation { align-items: stretch !important; }
  .navigation .nav-link { padding: .7rem 0 !important; border-bottom: 1px solid rgba(255,255,255,.08); }
  .navbar-collapse > .btn { width: 100%; margin-top: .5rem; }
  .industry-content { max-width: none; }
  .industry-content h2 { font-size: clamp(1.7rem, 5vw, 2.3rem); }
  .our-promise { background-position: 65% center; }
  .footer-logo img { max-width: 200px; }
}

@media (max-width: 575.98px) {
  .container { width: min(100% - 1.5rem, 1200px); }
  .logo-2 { width: 113px !important; height: 114px; }
  .hero-section { min-height: 620px; background-position: 60% center; }
  .hero-main-title { line-height: 1.12; }
  .hero-section .btn { width: 100%; }
  .hero-section .d-flex { gap: .65rem !important; }
  .hero-stats { gap: 1rem; margin-top: 2rem; }
  .hero-stat { min-width: 76px; padding-left: .6rem; }
  .feature-card-sm { padding: 1rem .65rem; min-height: 160px; }
  .service-badge-card { min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .section-line { width: 28px; }
  .tracking-wider { letter-spacing: 1px; }
  .promise-title { gap: 8px; }
  .our-promise h2 { font-size: 1.35rem; }
  .our-promise p { font-size: 1.05rem; }
  .cta-left { gap: 10px; }
  .cta-icon { width: 58px; height: 58px; }
  .cta-icon i { font-size: 22px; }
  .btn-employer, .btn-job { width: 100%; margin: .35rem 0 0 !important; }
  .footer-section { padding-top: 3.5rem; }
  .footer-about { font-size: .95rem; }
  .social-links { margin-top: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}











.purpose-card{

background:#fff;

border-radius:20px;

padding:40px;

box-shadow:0 12px 25px -10px rgba(0,0,0,.25);

transition:.4s;

position:relative;

overflow:hidden;

height:100%;

}


.purpose-card:hover{

transform:translateY(-10px);

box-shadow:0 18px 35px -12px rgba(0,0,0,.35);

}
.purpose-card:before{

content:'';

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:#d4af37;

}

.purpose-card h3{

font-weight:700;

margin-bottom:20px;

}

.purpose-card p{

color:#666;

line-height:1.8;

}

.purpose-card ul{

padding-left:18px;

margin:0;

}
.purpose-card ul li{

margin-bottom:12px;

color:#666;

}
@media (max-width: 991.98px) {
    .navbar-nav {
        margin-top: 70px;
    }
}
.team-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.team-img{
    padding:35px 0 15px;
}

.team-img img{
    width:160px;
    height:160px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #d4af37;
    transition:.4s;
}

.team-card:hover .team-img img{
    transform:scale(1.08);
}

.team-content{
    padding:25px;
}

.team-content h4{
    font-weight:700;
    margin-bottom:5px;
}

.team-content span{
    display:block;
    color:#d4af37;
    font-weight:600;
    margin-bottom:15px;
}

.team-content p{
    color:#666;
    line-height:1.8;
}

.team-social{
    margin-top:20px;
}

.team-social a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f4f4f4;
    color:#0d6b57;
    margin:0 5px;
    transition:.3s;
    text-decoration:none;
}

.team-social a:hover{
    background:#d4af37;
    color:#fff;
    transform:translateY(-4px);
}

#page {
    display: none;
}
#loading {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100vw;
    height: 100vh;
    background-color: #013303;
    background-image: url("../img/loader.gif");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 420px;
}
/*whats up*/

.wa-ultimate-button1 {
  position: fixed;
  bottom: 30px;
  left: 45px;
  z-index: 100;
  perspective: 1200px;
  animation: fadeInUp 1.2s ease-out;
}

.wa-entry {
  position: relative;
  width: 65px;
  height: 65px;
  background: radial-gradient(circle, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  color: white;
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 0 20px #25d366,
    0 0 60px rgba(37, 211, 102, 0.6),
    inset 0 0 15px #128c7e;
  transition: transform 0.3s ease;
  overflow: visible;
  animation: pulse 2.5s infinite ease-in-out;
}

.wa-entry:hover {
  transform: scale(1.08) rotateX(10deg);
}

.wa-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: -20px;
  left: -20px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.3), transparent);
  animation: glowPulse 3s ease-in-out infinite;
  filter: blur(12px);
  z-index: 0;
}

.wa-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgb(33 197 107);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring1 {
  width: 75px;
  height: 75px;
  animation: spin 8s linear infinite;
}

.ring2 {
  width: 120px;
  height: 120px;
  animation: spinReverse 12s linear infinite;
}

.wa-bubbles {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
  opacity: 0.6;
  animation: bubbles 4s linear infinite;
  box-shadow:
    0 0 4px #fff,
    0 -10px 0 0 rgba(255,255,255,0.3),
    0 -20px 0 0 rgba(255,255,255,0.2),
    0 -30px 0 0 rgba(255,255,255,0.1);
}

.wa-tooltip {
  position: absolute;
  bottom: 100%;
  margin-bottom: 15px;
  padding: 6px 14px;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.95);
  transition: 0.4s ease;
  text-shadow: 0 0 4px #25d366;
}

.wa-entry:hover .wa-tooltip {
  opacity: 1;
  transform: scale(1);
}
.wa-entry:hover i{
  color: #fff
}
.wa-tooltip span {
  display: inline-block;
  overflow: hidden;
  border-right: 2px solid #fff;
  white-space: nowrap;
  animation: typing 3s steps(25) 1s forwards, blink 0.8s step-end infinite;
  max-width: 0;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    box-shadow:
      0 0 20px #25d366,
      0 0 60px rgba(37, 211, 102, 0.5),
      inset 0 0 15px #128c7e;
  }
  50% {
    box-shadow:
      0 0 30px #25d366,
      0 0 80px rgba(37, 211, 102, 0.8),
      inset 0 0 25px #128c7e;
  }
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinReverse {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes bubbles {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.6;
  }
  100% {
    transform: translateX(-50%) translateY(-50px);
    opacity: 0;
  }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes typing {
  to { max-width: 220px; }
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: white; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.navigation li.active a {
    color: #c89612 !important;
    font-weight: bold;
}

/* Compact, shared layout and interaction layer */
:root {
  --ssc-section-space: clamp(2.75rem, 5vw, 4.5rem);
  --ssc-content-space: clamp(1rem, 2vw, 1.5rem);
  --ssc-motion: 280ms cubic-bezier(.2, .8, .2, 1);
}

body { line-height: 1.55; }
.container { width: min(100% - 2rem, 1200px); }
main section.py-5 { padding-top: var(--ssc-section-space) !important; padding-bottom: var(--ssc-section-space) !important; }
main section.mt-5.mb-5 { margin-top: var(--ssc-section-space) !important; margin-bottom: var(--ssc-section-space) !important; }
.row { --bs-gutter-y: var(--ssc-content-space); }
.row.g-4 { --bs-gutter-x: var(--ssc-content-space); --bs-gutter-y: var(--ssc-content-space); }
.row.g-3 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }

.hero-section { min-height: min(620px, calc(100svh - 76px)); padding: clamp(3.75rem, 7vw, 6rem) 0; }
.hero-main-title { font-size: clamp(2rem, 4.5vw, 3.5rem) !important; letter-spacing: 0; }
.hero-stats { margin-top: 1.75rem; gap: 1.25rem; }
.page-banner { min-height: 220px; padding: 3.5rem 0 2.5rem; }
.breadcrumb-text { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.breadcrumb-text h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }

.feature-card-sm, .service-badge-card, .reach-country-box, .purpose-card, .team-card, .value-box, .industry-card {
  border-radius: 12px;
  transition: transform var(--ssc-motion), box-shadow var(--ssc-motion), border-color var(--ssc-motion);
}
.feature-card-sm { padding: 1rem; }
.service-badge-card { padding: 1rem .65rem; }
.purpose-card, .value-box { padding: 1.5rem; }
.team-content { padding: 1.25rem; }
.team-img { padding: 1.5rem 0 .75rem; }
.value-box .icon { width: 56px; height: 56px; margin-bottom: 1rem; }
.value-box h4, .purpose-card h3 { margin-bottom: .7rem; }
.value-box p, .purpose-card p, .section-desc { line-height: 1.65; }
.industry-card { padding: 1.5rem 1rem; }
.feature-card-sm:hover, .service-badge-card:hover, .reach-country-box:hover, .purpose-card:hover, .team-card:hover, .value-box:hover, .industry-card:hover { transform: translateY(-6px); }

.btn-gold, .btn-outline-white, .btn-employer, .btn-job { min-height: 42px; }
.btn-gold:hover, .btn-outline-gold:hover, .btn-outline-white:hover, .btn-employer:hover, .btn-job:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(8,40,27,.16); }
img { transition: transform var(--ssc-motion), filter var(--ssc-motion); }
.feature-card-sm:hover img, .service-badge-card:hover img, .industry-card:hover img, .team-card:hover img { transform: scale(1.06); }

.footer-section { padding: 3.5rem 0 1.25rem; }
.footer-top { padding-bottom: 2rem; }
.footer-section h5 { margin-bottom: 1rem; }
.footer-section ul li { margin-bottom: .65rem; }
.contact-item { margin-bottom: 1rem; }
.copyright { padding-top: 1.25rem; }

.scroll-progress { position: fixed; top: 0; left: 0; z-index: 1100; width: 0; height: 3px; background: var(--ssc-gold); box-shadow: 0 0 10px rgba(200,150,18,.65); transition: width 80ms linear; }
.back-to-top { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 1040; width: 42px; height: 42px; border: 0; border-radius: 50%; color: #fff; background: #00310C; box-shadow: 0 8px 20px rgba(8,40,27,.2); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity var(--ssc-motion), transform var(--ssc-motion), visibility var(--ssc-motion), background-color var(--ssc-motion); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--ssc-gold); color: #111; transform: translateY(-3px); }

/*#loading { background-size: 180px; transition: opacity .35s ease, visibility .35s ease; }*/
/*#page { display: block; }*/

@media (max-width: 991.98px) {
  .navbar-nav { margin-top: 0 !important; }
  .navbar-collapse { padding: .5rem 0 .25rem; }
  .navbar-collapse > .btn { margin-top: .5rem; }
  .our-promise { min-height: 420px; }
  .footer-section .row > [class*="col-"] { margin-bottom: 1rem !important; }
}

@media (max-width: 575.98px) {
  .container { width: min(100% - 1.5rem, 1200px); }
  main section.py-5 { padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }
  .hero-section { min-height: 570px; padding: 3.5rem 0; }
  .page-banner { min-height: 185px; padding: 2.5rem 0 1.5rem; }
  .breadcrumb-text { margin-top: 1rem !important; margin-bottom: 1rem !important; }
  .hero-stats { margin-top: 1.5rem; }
  .back-to-top { right: .9rem; bottom: .9rem; }
  .wa-ultimate-button1 { left: auto; right: 4.5rem; bottom: .9rem; transform: scale(.85); transform-origin: bottom right; }
}


.values-section{
    background:#f8fafc;
}

.section-subtitle{
    color:#c79b2c;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title{
    font-size:42px;
    font-weight:800;
    color:#123d35;
}

.section-desc{
    color:#6c757d;
    line-height:1.8;
}

.value-box{

    background:#fff;

    border-radius:18px;

    padding:35px;

    position:relative;

    overflow:hidden;

    height:100%;

    transition:.4s;

    border-left:5px solid #d4af37;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

}

.value-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.value-box.active{

    background:linear-gradient(135deg,#0d5c4d,#0a4037);

    color:#fff;

}

.value-box.active p,
.value-box.active h4{

    color:#fff;

}

.top-number{

    position:absolute;

    right:25px;

    top:20px;

    font-size:48px;

    font-weight:800;

    color:#ececec;

}

.value-box.active .top-number{

    color:rgba(255,255,255,.15);

}

.icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#e4d9bc33;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.icon i{

    font-size:30px;

    color:#c79b2c;

}

.value-box.active .icon{

    background:rgba(255,255,255,.15);

}

.value-box.active .icon i{

    color:#fff;

}

.value-box h4{

    font-weight:700;

    margin-bottom:15px;

    color:#123d35;

}

.value-box p{

    color:#6c757d;

    line-height:1.8;

    margin:0;

}

.industry-card{
    background:#fff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    transition:.35s;
    border:1px solid #e9ecef;
    height:100%;
    position:relative;
    overflow:hidden;
}

.industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
    border-color:#d4af37;
}

.industry-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#d4af37;
    transform:scaleX(0);
    transition:.35s;
}

.industry-card:hover::before{
    transform:scaleX(1);
}

.industry-icon{
    width:75px;
    height:75px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#f8f5eb;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.industry-icon i{
    font-size:32px;
    color:#0b5d4b;
}

.industry-card:hover .industry-icon{
    background:#00310C;
}

.industry-card:hover .industry-icon i{
    color:#fff;
}

.industry-card h6{
    font-weight:700;
    color:#123d35;
    margin:0;
    font-size:17px;
}
.page-banner {
    position: relative;
    background: url("../img/banner1.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgb(8 40 27 / 75%); /* Overlay */
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-text {
    padding: 40px 0;
}

/* Final spacing overrides for legacy page-specific styles */
.page-banner { min-height: 210px; padding: 2.5rem 0 1.5rem; }
.page-banner .breadcrumb-text { padding: 1rem 0; margin: 0 !important; }
.page-banner .breadcrumb-text h2 { margin-bottom: .5rem !important; }
.purpose-card, .value-box { padding: 1.35rem; }
.team-content { padding: 1rem; }
.team-img { padding: 1.25rem 0 .5rem; }
.team-content p, .value-box p, .purpose-card p { margin-bottom: .75rem; }

@media (max-width: 575.98px) {
  .page-banner { min-height: 170px; padding: 2rem 0 1rem; }
  .page-banner .breadcrumb-text { padding: .5rem 0; }
}
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: #fff; 
    content: var(--bs-breadcrumb-divider, "/");
}
.text-success {
    color: rgb(26 66 38) !important;
}




.sector-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:15px;
    height:100%;
}

.sector-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,0.18);

    box-shadow:
        0 10px 30px rgba(0,0,0,.25),
        inset 0 1px 1px rgba(255,255,255,.2);

    transition:all .35s ease;
}

.sector-icon img{
    width:40px;
    height:40px;
    object-fit:contain;
    transition:all .35s ease;
}

.sector-card:hover .sector-icon{
    transform:translateY(-6px);
    background:rgba(200,157,61,.18);
    border-color:rgba(200,157,61,.45);
    box-shadow:
        0 15px 35px rgba(200,157,61,.25),
        inset 0 1px 1px rgba(255,255,255,.25);
}

.sector-card:hover .sector-icon img{
    transform:scale(1.08);
}

.sector-card p{
    margin:0;
    color:#fff;
    font-size:15px;
    font-weight:500;
    line-height:1.5;
    max-width:170px;
}

.feature-card-sm{
    cursor:pointer;
    transition:.3s;
}

.feature-card-sm:hover{
    transform:translateY(-5px);
}

