    /* ================= NAVBAR ================= */

    .navbar {
    width: 100%;
    height: 100px;
    background: #00172700;
    position: absolute;
    overflow: hidden;
    z-index: 2;
}

header.navbar a.logo img {
    width: 70%;
}

    .navbar::before{
      content:"";
      position:absolute;
      inset:0;
      /* background:
      radial-gradient(circle at left, rgba(0,120,255,0.12), transparent 45%); */
      opacity:.8;
    }

    .nav-container{
      width:100%;
      max-width:1450px;
      margin:auto;
      height:100%;
      padding:0 40px;

      display:flex;
      align-items:center;
      justify-content:space-between;

      position:relative;
      z-index:2;
    }

    /* LEFT SIDE */
    .nav-left{
      display:flex;
      align-items:center;
      gap:40px;
    }

    /* LOGO */

    .logo{
      display:flex;
      flex-direction:column;
      align-items:center;
      color:#fff;
      text-decoration:none;
    }

    .logo-circle{
      width:54px;
      height:34px;
      border:3px solid #fff;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:800;
      font-size:18px;
      letter-spacing:.5px;
      margin-bottom:2px;
    }

    .logo small{
      font-size:8px;
      letter-spacing:1px;
      font-weight:700;
    }

    /* NAV LINKS */

    .nav-links{
      display:flex;
      align-items:center;
      gap:32px;
      list-style:none;
    }

    .nav-links li{
      position:relative;
    }

    .nav-links a{
      color:#fff;
      text-decoration:none;
      font-size:14px;
      font-weight:600;
      display:flex;
      align-items:center;
      gap:6px;
      transition:.3s;
    }

    .nav-links a:hover{
      color:#f7c62f;
    }

    .dropdown-arrow{
      font-size:10px;
      transform:translateY(-1px);
    }

    /* RIGHT SIDE */

    .nav-right{
      display:flex;
      align-items:center;
      gap:28px;
    }

    .country{
      color:#fff;
      text-decoration:none;
      font-size:14px;
      font-weight:600;
      display:flex;
      align-items:center;
      gap:8px;
    }

    .search-btn{
      width:22px;
      height:22px;
      position:relative;
      cursor:pointer;
    }

    .search-btn::before{
      content:"";
      position:absolute;
      width:12px;
      height:12px;
      border:2px solid #fff;
      border-radius:50%;
      top:0;
      left:0;
    }

    .search-btn::after{
      content:"";
      position:absolute;
      width:9px;
      height:2px;
      background:#fff;
      transform:rotate(45deg);
      bottom:2px;
      right:1px;
      border-radius:2px;
    }

    /* YELLOW TRIANGLE */

    /* .triangle{
      position:absolute;
      right:0;
      top:0;
      width:120px;
      height:100%;
      background:#f7c62f;
      clip-path:polygon(45% 0,100% 0,100% 100%);
      z-index:1;
    } */

    /* ================= RESPONSIVE ================= */

    @media(max-width:1200px){

      .nav-links{
        gap:20px;
      }

      .nav-links a{
        font-size:13px;
      }
    }

    @media(max-width:992px){

      .nav-links{
        display:none;
      }

      .nav-container{
        padding:0 20px;
      }
    }










*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family: 'Barlow', sans-serif;
}

h1, h2, h3 {
    font-family: 'Barlow Condensed', sans-serif;
}

.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

section.hero-slider .small-title::before {
    background: #ffffff;
}


.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1s ease;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    color:#fff;
    z-index:5;
    max-width:700px;
}

.small-title{
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
    position:relative;
    padding-left:80px;
    display:inline-block;
    margin-bottom:25px;
    margin-left: -81px;
}

.small-title::before{
    content:'';
    position:absolute;
    left:0;
    top:50%;
    width:60px;
    height:2px;
    background:#d8aa28;
}

.content h1{
    font-size:82px;
    line-height:1.05;
    margin-bottom:30px;
    font-weight:700;
}

.story-btn{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    letter-spacing:1px;
    font-weight:bold;
    border-bottom:2px solid #fff;
    padding-bottom:6px;
}

.bottom-slider{
    position:absolute;
    bottom:40px;
    left:8%;
    right:8%;
    z-index:20;
    display:flex;
    align-items:flex-end;
    gap:40px;
}

.slider-item{
    width:240px;
    color:#fff;
    cursor:pointer;
}

.slider-item span{
    display:block;
    margin-bottom:12px;
    font-size:18px;
    font-weight:600;
}

.progress{
    width:100%;
    height:3px;
    background:rgba(255,255,255,0.3);
    overflow:hidden;
    position:relative;
}

.progress-bar{
    width:0%;
    height:100%;
    background:#d8aa28;
}

.slider-item.active .progress-bar{
    animation:progressAnim 5s linear forwards;
}

@keyframes progressAnim{

    from{
        width:0%;
    }

    to{
        width:100%;
    }

}

.play-control{
    margin-left:auto;
}

.play-control button{
    width:58px;
    height:58px;
    border-radius:50%;
    border:2px solid #fff;
    background:transparent;
    color:#fff;
    cursor:pointer;
    font-size:20px;
}

@media(max-width:768px){

    .content h1{
        font-size:44px;
    }

    .bottom-slider{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .slider-item{
        width:100%;
    }

}












*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.about-section {
    padding: 100px 8%;
    background: #fff;
    display: flex;
    justify-content: center;
}



/* LEFT */
.left-content{
  flex:1.5;
}

.small-title{
  font-size:14px;
  letter-spacing:2px;
  font-weight:600;
  margin-bottom:20px;
  position:relative;
}

.small-title::before{
  content:"";
  width:60px;
  height:2px;
  background:#000;
  position:absolute;
  top:8px;
}

.left-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: black;
}

.left-content p{
  margin-bottom:20px;
  color:#444;
  line-height:1.7;
  font-size:15px;
}

a.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    border: 2px solid #0a6b3d;
    color: #0a6b3d;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

a.btn:hover{
  background:#0a6b3d;
  color:#fff;
}

/* RIGHT */
.right-content{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:40px;
  justify-content:center;
}

.stat-box h3{
  font-size:42px;
  color:#0a6b3d;
  margin-bottom:5px;
  font-weight: 700;
}

.stat-box p{
  font-size:16px;
  font-weight:500;
  color:#222;
}

/* RESPONSIVE */
@media(max-width:900px){
  .container{
    flex-direction:column;
  }

  .left-content h2{
    font-size:32px;
  }

  .stat-box h3{
    font-size:36px;
  }
}








.work-section {
    width: 100%;
    min-height: 100vh;
    padding: 80px 8%;
    background: #36383d;
    display: flex;
    justify-content: center;
}
    .top-content {
    display: flex;
    gap: 60px;
}

section.about-section .left-content {
    margin-right: 90px;
}

    .top-label{
      gap:12px;
      margin-bottom:20px;
      color:#cfcfcf;
      font-size:12px;
      letter-spacing:2px;
    }

    .top-label span{
      width:40px;
      height:2px;
      background:#cfcfcf;
      display:block;
    }
    

    .map-count01 {
    display: flex;
    gap: 60px;
}

    h1{
      font-size:58px;
      line-height:1.1;
      margin-bottom:25px;
      font-weight:800;
    }

    .desc{
      max-width:600px;
      color:#d1d1d1;
      line-height:1.7;
      margin-bottom:40px;
    }

    .tabs{
      display:flex;
      gap:30px;
      margin-bottom:40px;
      flex-wrap:wrap;
    }

    section.work-section .tab-btn{
      background:none;
      border:none;
      color:#fff;
      font-size:18px;
      cursor:pointer;
      padding-bottom:8px;
      position:relative;
      transition:0.3s;
      font-weight: 700;
      font-family: 'Barlow Condensed';
    }

    section.work-section .tab-btn.active{
      color:#ffbf1c;
    }

    section.work-section .tab-btn.active::after{
      content:"";
      position:absolute;
      left:0;
      bottom:0;
      width:100%;
      height:3px;
      background:#ffbf1c;
    }

    .map-box{
      /* max-width:750px; */
      border-radius:12px;
      overflow:hidden;
    }

    .map-box img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .right-content{
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:60px;
    }

    .stat h2{
      font-size:90px;
      color:#ffbf1c;
      font-weight:800;
      margin-bottom:10px;
    }

    .stat p{
      color:#d4d4d4;
      font-size:22px;
    }

    .office-btn{
      margin-top:20px;
      padding:18px 30px;
      border:none;
      background:#fff;
      color:#1f4e3d;
      font-weight:500;
      letter-spacing:1px;
      cursor:pointer;
      transition:0.3s;
    }

    .office-btn:hover{
      background:#ffbf1c;
      color:#000;
    }

    .small-text{
      margin-top:18px;
      color:#d0d0d0;
      font-size:14px;
    }


    section.work-section .container {
    /* padding: 0 4rem;
    max-width: 80rem; */
    display: block;
}



section.work-section .small-title {
    color: white;
}

section.work-section .small-title::before {
    background: white;
}

section.work-section h1.heading01 {
    color: white;
}

p.topcontent {
    color: white;
}


    @media(max-width:992px){

      .work-section{
        flex-direction:column;
      }

      h1{
        font-size:42px;
      }

      .right-content{
        width:100%;
      }

      .stat h2{
        font-size:70px;
      }
    }







    .services-section{
      width:100%;
      padding:80px 0%;
      background: #f9f9f9;
    }

    .top-title{
      display:flex;
      align-items:center;
      gap:15px;
      margin-bottom:20px;
    }

    .top-title .line{
      width:45px;
      height:2px;
      background:#000;
    }

    .top-title span{
      font-size:14px;
      letter-spacing:2px;
      font-weight:600;
      color:#444;
    }

    .main-heading{
      font-size:58px;
      font-weight:800;
      line-height:1.1;
      max-width:900px;
      margin-bottom:60px;
    }

    /* Tabs */
    .tabs{
      display:flex;
      gap:40px;
      flex-wrap:wrap;
      margin-bottom:45px;
    }

    .tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    font-weight: 700;
    color: #0c5b38;
    padding-bottom: 10px;
    position: relative;
    transition: 0.3s;
    font-family: 'Barlow Condensed';
}

    .tab-btn::after{
      content:"";
      position:absolute;
      left:0;
      bottom:0;
      width:0;
      height:3px;
      background:#0c5b38;
      transition:0.3s;
    }

    .tab-btn.active::after{
      width:100%;
    }

    /* Content */
    .tab-content{
  display:none;
  width:100%;
  align-items:stretch;
  gap:0;
}

    .tab-content.active{
      display:flex;
    }

    .left-image{
  width:55%;
}

    .left-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.tab-details{
  width:45%;
  padding:80px 70px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.tab-details h2{
  font-size:72px;
  line-height:1.1;
  margin-bottom:30px;
  font-weight:800;
}

.tab-details p{
  font-size:22px;
  line-height:1.8;
  color:#444;
  margin-bottom:50px;
}

    .learn-more{
  display:inline-flex;
  align-items:center;
  gap:15px;
  text-decoration:none;
  color:#0c5b38;
  font-weight:500;
  letter-spacing:1px;
  font-size:16px;
}

    .learn-more::after{
  content:"";
  width:40px;
  height:2px;
  background:#0c5b38;
}

section.services-section .container {
    display: block;
    /* padding: 0 4rem;
    max-width: 80rem; */
}


    /* Responsive */
    @media(max-width:991px){

  .tab-content.active{
    flex-direction:column;
  }

  .left-image,
  .right-content{
    width:100%;
  }

  .right-content{
    padding:50px 0px;
  }

  .right-content h2{
    font-size:42px;
  }

  .right-content p{
    font-size:18px;
  }

  .right-content {
    gap: 20px;
}

.about-section {
    padding: 50px 2%;
}


.tab-btn {
    font-size: 14px;
}

}













.ps-project-section{
  padding:80px 0%;
  background:#ffffff;
}

.ps-top-heading{
  /* max-width:700px; */
  margin:0 auto 60px;
}

.ps-small-title{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:13px;
  letter-spacing:2px;
  color:#666;
  margin-bottom:20px;
  text-transform:uppercase;
}

.ps-small-title::before{
  content:"";
  width:40px;
  height:2px;
  background:#222;
  display:block;
}

.ps-top-heading h2{
  font-size:52px;
  line-height:1.15;
  font-weight:800;
}

.ps-showcase-wrapper{
  display:flex;
  align-items:center;
  gap:60px;
  margin-top:40px;
}

.ps-left-image,
.ps-right-content{
  flex:1;
}

.ps-left-image img{
  width:100%;
  height:620px;
  object-fit:cover;
  transition:0.4s;
}

.ps-tabs{
  display:flex;
  gap:35px;
  margin-bottom:45px;
  flex-wrap:wrap;
}

.ps-tab-btn{
  background:none;
  border:none;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  padding-bottom:10px;
  position:relative;
  color:#245943;
}

.ps-tab-btn.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  background:#245943;
}

.ps-project-label{
  font-size:13px;
  letter-spacing:2px;
  color:#777;
  margin-bottom:18px;
  text-transform:uppercase;
}

.ps-project-title{
  font-size:52px;
  line-height:1.1;
  margin-bottom:25px;
  font-weight:800;
}

.ps-project-desc{
  font-size:18px;
  line-height:1.8;
  color:#555;
  margin-bottom:30px;
  max-width:520px;
}

.ps-meta{
  margin-bottom:35px;
}

.ps-meta p{
  margin-bottom:12px;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
}

.ps-meta span{
  font-weight:bold;
  color:#111;
}

.ps-learn-btn{
  display:inline-block;
  padding:16px 34px;
  border:2px solid #2d6a4f;
  color:#2d6a4f;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.ps-learn-btn:hover{
  background:#2d6a4f;
  color:#fff;
}

@media(max-width:991px){

  .ps-showcase-wrapper{
    flex-direction:column;
  }

  .ps-top-heading h2{
    font-size:40px;
  }

  .ps-project-title{
    font-size:38px;
  }

  .ps-left-image img{
    height:450px;
  }
}

@media(max-width:600px){

  .ps-top-heading h2{
    font-size:32px;
  }

  .ps-project-title{
    font-size:30px;
  }

  .ps-tabs{
    gap:15px;
  }
}






    /* =========================
       CAREER SECTION
    ========================= */

    .career-section{
      background:#f9f9f9;
      padding:90px 20px;
      overflow:hidden;
    }

    .career-container{
      /* max-width:1050px; */
      margin:auto;
    }

    /* SMALL TITLE */

    .career-small-title{
      display:flex;
      align-items:center;
      gap:14px;
      font-size:12px;
      letter-spacing:2px;
      color:#444;
      margin-bottom:22px;
      text-transform:uppercase;
    }

    .career-small-title::before{
      content:"";
      width:40px;
      height:2px;
      background:#444;
      display:block;
    }

    /* MAIN HEADING */

    .career-main-title{
      font-size:56px;
      line-height:1.15;
      font-weight:800;
      color:#000;
      max-width:760px;
      margin-bottom:55px;
    }

    /* VIDEO BOX */

    .career-video-box{
      position:relative;
      width:100%;
      overflow:hidden;
      background:#000;
    }

    /* VIDEO */

    .career-video-box video{
      width:100%;
      height:600px;
      object-fit:cover;
      display:block;
      background:#000;
    }

    /* DARK OVERLAY */

    .career-overlay{
      position:absolute;
      inset:0;
      background:rgba(0,0,0,0.35);
      transition:0.3s;
      pointer-events:none;
    }

    /* CUSTOM PLAY BUTTON */

    .career-play-btn{
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%, -50%);
      width:95px;
      height:95px;
      border:none;
      border-radius:50%;
      background:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      z-index:5;
      transition:0.3s;
    }

    .career-play-btn:hover{
      transform:translate(-50%, -50%) scale(1.08);
    }

    .career-play-btn svg{
      margin-left:5px;
    }

    /* DESCRIPTION */

    .career-description{
      font-size:20px;
      font-weight:700;
      line-height:1.6;
      color:#000;
      margin:35px 0;
    }

    /* BUTTONS */

    .career-btns{
      display:flex;
      gap:20px;
      flex-wrap:wrap;
    }

    .career-btn{
      flex:1;
      min-width:220px;
      text-align:center;
      padding:20px 25px;
      background:#005d32;
      color:#fff;
      text-decoration:none;
      font-size:13px;
      letter-spacing:1px;
      font-weight:500;
      transition:0.3s;
    }

    .career-btn:hover{
      background:#003f22;
    }

    /* RESPONSIVE */

    @media(max-width:991px){

      .career-main-title{
        font-size:42px;
      }

      .career-video-box video{
        height:420px;
      }
    }

    @media(max-width:768px){

      .career-main-title{
        font-size:34px;
      }

      .career-video-box video{
        height:320px;
      }

      .career-description{
        font-size:18px;
      }

      .career-btns{
        flex-direction:column;
      }
    }

    @media(max-width:480px){

      .career-main-title{
        font-size:28px;
      }

      .career-video-box video{
        height:250px;
      }

      .career-play-btn{
        width:70px;
        height:70px;
      }

      .career-play-btn svg{
        width:22px;
        height:22px;
      }
    }







.owner-success-section{
  padding:80px 0;
  background:#ffffff;
}

.owner-success-container{
  margin:auto;
}

/* Top Area */

.owner-success-top{
  display:flex;
  justify-content:space-between;
  gap:80px;
  margin-bottom:70px;
  align-items:flex-start;
}

.owner-success-label{
  display:flex;
  align-items:center;
  gap:15px;
  letter-spacing:2px;
  font-size:12px;
  text-transform:uppercase;
  color:#555;
  margin-bottom:20px;
}

.owner-success-label::before{
  content:"";
  width:40px;
  height:1px;
  background:#555;
  display:block;
}

.owner-success-left h2{
  font-size:54px;
  line-height:1.1;
  font-weight:700;
  max-width:500px;
  margin:0;
}

.owner-success-right{
  max-width:500px;
}

.owner-success-right p{
  font-size:16px;
  line-height:1.8;
  color:#444;
  margin-bottom:35px;
}

.owner-success-link{
  display:inline-flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:#0b5d4b;
  font-size:13px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
}

.owner-success-link::after{
  content:"";
  width:35px;
  height:2px;
  background:#0b5d4b;
}

/* Card */

.owner-success-card{
  background:#ececec;
  display:grid;
  grid-template-columns:1.4fr 420px;
  align-items:center;
  overflow:hidden;
}

.owner-success-content{
  padding:80px;
}

.owner-success-content h3{
  font-size:54px;
  margin-bottom:15px;
  font-weight:700;
}

.owner-success-designation{
  font-size:18px;
  font-weight:600;
  margin-bottom:35px;
  color:#222;
}

.owner-success-content p{
  font-size:18px;
  line-height:1.9;
  color:#333;
  max-width:650px;
}

.owner-success-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Responsive */

@media(max-width:991px){

  .owner-success-top{
    flex-direction:column;
    gap:40px;
  }

  .owner-success-left h2{
    font-size:42px;
  }

  .owner-success-card{
    grid-template-columns:1fr;
  }

  .owner-success-image{
    height:500px;
  }

  .owner-success-content{
    padding:50px 35px;
  }

  .owner-success-content h3{
    font-size:40px;
  }
}

@media(max-width:576px){

  .owner-success-left h2{
    font-size:34px;
  }

  .owner-success-content h3{
    font-size:32px;
  }

  .owner-success-content p,
  .owner-success-right p{
    font-size:16px;
  }

  .owner-success-image{
    height:380px;
  }
}










.safety-life-section{
  background:#f9f9f9;
  padding:90px 0;
}

.safety-life-container{
  width:1200px;
  max-width:90%;
  margin:auto;

  display:grid;
  grid-template-columns: 520px 1fr;
  align-items:center;
  gap:100px;
}

.safety-life-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.safety-life-content h2{
  font-size:56px;
  font-weight:700;
  line-height:1.1;
  color:#000;
  margin-bottom:28px;
}

.safety-life-content p{
  max-width:480px;
  font-size:18px;
  line-height:1.8;
  color:#222;
  margin-bottom:40px;
}

.safety-life-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-width:170px;
  height:56px;

  border:1px solid #0a5b49;
  text-decoration:none;

  color:#0a5b49;
  font-size:13px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;

  transition:0.3s ease;
}

.safety-life-btn:hover{
  background:#0a5b49;
  color:#fff;
}

/* Responsive */

@media(max-width:991px){

  .safety-life-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .safety-life-content h2{
    font-size:42px;
  }

  .safety-life-image{
    max-width:100%;
  }
}

@media(max-width:576px){

  .safety-life-section{
    padding:70px 0;
  }

  .safety-life-content h2{
    font-size:34px;
  }

  .safety-life-content p{
    font-size:16px;
  }

  .safety-life-btn{
    min-width:150px;
    height:50px;
    font-size:12px;
  }
}

















    /* ================= HERO ================= */

    .hero{
      position:relative;
      padding:90px 10%;
      min-height:520px;
      background:#ececec;
      display:flex;
      align-items:center;
    }

    .hero-content{
      max-width:650px;
      z-index:2;
    }

    .hero h1{
      font-family:'Barlow Condensed';
      font-size:72px;
      line-height:1;
      margin-bottom:25px;
      font-weight:700;
      letter-spacing:-1px;
    }

    .hero p{
      font-size:18px;
      line-height:1.7;
      color:#333;
      max-width:580px;
      margin-bottom:35px;
    }

    .btn-group{
      display:flex;
      gap:18px;
      flex-wrap:wrap;
    }

    .btn{
      padding:18px 34px;
      border:2px solid #00552b;
      text-transform:uppercase;
      letter-spacing:1px;
      font-weight:700;
      font-size:14px;
      cursor:pointer;
      transition:.3s;
    }

    .btn-primary{
      background:#00552b;
      color:#fff;
    }

    .btn-primary:hover{
      background:#003d1f;
    }

    .btn-outline{
      background:transparent;
      color:#00552b;
    }

    .btn-outline:hover{
      background:#00552b;
      color:#fff;
    }

    /* Decorative Shapes */

    .shape-container{
      position:absolute;
      right:0;
      top:0;
      width:500px;
      height:100%;
    }

    .triangle{
      position:absolute;
      clip-path:polygon(0 0,100% 100%,0 100%);
    }

    .t1{
      width:260px;
      height:260px;
      background:#ecdca7;
      right:140px;
      top:30px;
    }

    .t2{
      width:190px;
      height:190px;
      background:#f0cb50;
      right:140px;
      top:220px;
    }

    .t3{
      width:180px;
      height:180px;
      background:#f1df9c;
      right:0;
      top:120px;
    }

    .t4{
      width:90px;
      height:90px;
      background:#00552b;
      right:0;
      top:215px;
    }

    /* ================= NEWSLETTER ================= */

    .newsletter{
      background:#00552b;
      padding:38px 10%;
      color:#fff;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:40px;
      flex-wrap:wrap;
    }

    .newsletter-text h2{
      font-family: 'Barlow Condensed';
      font-size:38px;
      margin-bottom:10px;
    }

    .newsletter-text p{
      max-width:620px;
      line-height:1.7;
      color:#f2f2f2;
    }

    .newsletter-form{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
    }

    .newsletter-form input{
      width:320px;
      padding:18px;
      border:none;
      outline:none;
      font-size:15px;
    }

    .newsletter-form button{
      padding:18px 28px;
      border:2px solid #fff;
      background:transparent;
      color:#fff;
      text-transform:uppercase;
      font-weight:700;
      cursor:pointer;
      transition:.3s;
    }

    .newsletter-form button:hover{
      background:#fff;
      color:#00552b;
    }

    /* ================= FOOTER ================= */

    footer{
      padding:70px 10% 10px;
      background:#ececec;
    }

    .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-bottom: 50px;
    font-weight: 500;
    justify-content: center;
}

    .footer-links a{
      text-decoration:none;
      color:#222;
      transition:.3s;
    }

    .footer-links a:hover{
      color:#00552b;
    }

    .footer-bottom{
      display:flex;
      justify-content:space-between;
      align-items:center;
      flex-wrap:wrap;
      gap:30px;
    }

    .logo{
      display:flex;
      align-items:center;
      gap:18px;
    }

    .logo-circle{
      width:60px;
      height:60px;
      border-radius:50%;
      background:#00552b;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#f0cb50;
      font-weight:800;
      font-size:22px;
      border:4px solid #f0cb50;
    }

    .tagline{
      font-weight:700;
      color:#00552b;
      text-transform:uppercase;
      font-size:14px;
    }

    .copyright {
    font-size: 14px;
    color: #555;
    text-align: end;
    margin-top: 40px;
}


    button.btn.btn-primary {
    min-width: 250px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    flex: 1 1 0%;
    padding: 20px 25px;
    background: rgb(0, 93, 50);
    text-decoration: none;
    transition: 0.3s;
    border: none;
    border-radius: 0;
}

button.btn.btn-outline {
    min-width: 250px;
    border: 1px solid #0a5b49;
    text-decoration: none;
    color: #0a5b49;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s ease;
    border-radius: 0;
}


button.btn.btn-outline:hover {
    background: #005d32;
    color: white;
}

    @media(max-width:900px){

      .hero h1{
        font-size:52px;
      }

      .shape-container{
        opacity:.3;
      }

      .newsletter{
        flex-direction:column;
        align-items:flex-start;
      }

      .newsletter-form{
        width:100%;
      }

      .newsletter-form input{
        width:100%;
      }
    }

    @media(max-width:600px){

      .hero{
        padding:70px 7%;
      }

      .hero h1{
        font-size:42px;
      }

      .newsletter,
      footer{
        padding-left:7%;
        padding-right:7%;
      }

      .btn{
        width:100%;
        text-align:center;
      }
    }













    footer .col-md-6 img {
    width: 50%;
}




@media screen and (max-width: 600px) {

  section.about-section .left-content {
    margin-right: 0px !important;
}

.tabs {
    gap: 29px;
}

section.work-section .tab-btn {
    font-size: 14px;
}

.tab-details {
    width: 100%;
    padding: 20px 20px;
}


.main-heading {
    font-size: 40px;
    margin-bottom: 30px;
}

.tab-details h2 {
    font-size: 40px;
}

.tab-details p {
    font-size: 16px;
    line-height: 26px;
}

.ps-right-content {
    padding: 10px 10px;
}

.ps-showcase-wrapper {
    gap: 20px;
}

.copyright {
    text-align: center;
}

.shape-container {
    display: none;
}

.newsletter-form button {
    width: 100%;
}

span.text-uppercase.text-white-50.small.d-inline-block.mb-2 {
    font-size: 20px;
}
}













    .hero-section{
      height:450px;

      position:relative;
      overflow:hidden;

      display:flex;
      align-items:center;

      background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
url("../images/about-ustop.jpg");

      background-size:cover;
      background-position:center;
    }

    /* CONTENT */

    .hero-content{
      position:relative;
      z-index:2;
    }

    /* SMALL TEXT */

    .hero-subtitle{
      color:#fff;

      font-size:14px;
      font-weight:700;

      text-transform:uppercase;
      letter-spacing:.8px;

      margin-bottom:18px;

      position:relative;
    }

    /* GOLD LINE */

    .hero-subtitle::before{
      content:"";

      position:absolute;

      width:520px;
      height:2px;

      background:#d8a31a;

      left:-560px;
      top:50%;

      transform:translateY(-50%);
    }

    /* MAIN HEADING */

    .hero-title{
      color:#fff;

      font-size:64px;
      font-weight:800;

      line-height:1.02;
      letter-spacing:-2px;

      max-width:620px;
    }

    /* PAUSE BUTTON */

    .pause-btn{
      position:absolute;

      right:28%;
      bottom:28px;

      width:24px;
      height:24px;

      border:2px solid #fff;
      border-radius:50%;

      display:flex;
      align-items:center;
      justify-content:center;

      z-index:5;

      cursor:pointer;
    }

    .pause-btn span{
      width:2px;
      height:9px;
      background:#fff;
      margin:0 1.5px;
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width:992px){

      .hero-section{
        height:420px;
      }

      .hero-subtitle::before{
        display:none;
      }

      .hero-title{
        font-size:52px;
      }

      .pause-btn{
        right:40px;
      }
    }

    @media(max-width:768px){

      .hero-section{
        height:380px;
      }

      .hero-title{
        font-size:40px;
        line-height:1.1;
      }

      .hero-subtitle{
        font-size:12px;
      }

      .pause-btn{
        right:20px;
        bottom:20px;
      }
    }





















    .about-section{
      padding:100px 0;
      background:#fff;
      overflow:hidden;
    }

    /* SMALL TITLE */

    .section-subtitle{
      color:#c79a1b;
      font-size:14px;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:1px;
      margin-bottom:15px;
    }

    /* MAIN TITLE */

    .section-title{
      font-size:52px;
      font-weight:800;
      line-height:1.1;
      color:#111;
      margin-bottom:25px;
    }

    /* TEXT */

    .about-text{
      color:#555;
      font-size:17px;
      line-height:1.9;
      margin-bottom:35px;
    }

    /* FEATURES */

    .feature-box{
      display:flex;
      gap:18px;
      margin-bottom:28px;
    }

    .feature-icon{
      width:60px;
      height:60px;
      min-width:60px;

      background:#004b2d;
      color:#fff;

      border-radius:50%;

      display:flex;
      align-items:center;
      justify-content:center;

      font-size:24px;
    }

    .feature-content h5{
      font-size:20px;
      font-weight:700;
      margin-bottom:8px;
      color:#111;
    }

    .feature-content p{
      margin:0;
      color:#666;
      line-height:1.7;
    }

    /* BUTTON */

    .about-btn{
      display:inline-block;
      padding:15px 35px;

      background:#004b2d;
      color:#fff;

      text-decoration:none;
      font-weight:600;
      border-radius:4px;

      transition:.3s;
    }

    .about-btn:hover{
      background:#022f1d;
      color:#fff;
    }

    /* IMAGE SIDE */

    .about-image-wrapper{
      position:relative;
    }

    .about-image{
      width:100%;
      border-radius:12px;
      object-fit:cover;
      height:600px;
    }

    /* EXPERIENCE CARD */

    .experience-card{
      position:absolute;

      bottom:30px;
      left:-40px;

      background:#004b2d;
      color:#fff;

      padding:30px;

      width:240px;
      border-radius:10px;

      box-shadow:0 10px 30px rgba(0,0,0,.15);
    }

    .experience-card h2{
      font-size:52px;
      font-weight:800;
      margin-bottom:5px;
    }

    .experience-card p{
      margin:0;
      font-size:15px;
      line-height:1.6;
    }

    /* RESPONSIVE */

    @media(max-width:991px){

      .section-title{
        font-size:40px;
      }

      .about-image{
        height:450px;
        margin-top:50px;
      }

      .experience-card{
        left:20px;
      }
    }

    @media(max-width:768px){

      .about-section{
        padding:70px 0;
      }

      .section-title{
        font-size:34px;
      }

      .about-text{
        font-size:16px;
      }

      .experience-card{
        width:200px;
        padding:20px;
      }

      .experience-card h2{
        font-size:40px;
      }


    }




    span.text-uppercase.text-white-50.small.d-inline-block.mb-2 {
    font-size: 40px;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    color: white !important;
}














    .services-section{
      padding:100px 0;
      background:#f8f9fa;
    }

    /* SECTION HEADER */

    .section-subtitle{
      color:#c89b1f;
      font-size:14px;
      font-weight:700;
      letter-spacing:1px;
      text-transform:uppercase;
      margin-bottom:15px;
    }

    .section-title{
      font-size:52px;
      font-weight:800;
      line-height:1.1;
      color:#111;
      margin-bottom:20px;
    }

    .section-text{
      color:#666;
      font-size:17px;
      line-height:1.8;
      max-width:700px;
      margin:auto;
    }

    /* SERVICE CARD */

    .service-card{
      background:#fff;
      border-radius:16px;

      padding:40px 30px;

      height:100%;

      transition:.4s ease;

      border:1px solid #eee;

      position:relative;
      overflow:hidden;
    }

    .service-card:hover{
      transform:translateY(-10px);
      box-shadow:0 20px 40px rgba(0,0,0,.08);
    }

    .service-card::before{
      content:"";

      position:absolute;
      left:0;
      top:0;

      width:100%;
      height:5px;

      background:#004b2d;

      transform:scaleX(0);
      transition:.4s;
      transform-origin:left;
    }

    .service-card:hover::before{
      transform:scaleX(1);
    }

    /* ICON */

    .service-icon{
      width:75px;
      height:75px;

      background:#004b2d;
      color:#fff;

      border-radius:18px;

      display:flex;
      align-items:center;
      justify-content:center;

      font-size:32px;

      margin-bottom:25px;
    }

    /* TITLE */

    .service-title{
      font-size:24px;
      font-weight:700;
      color:#111;
      margin-bottom:15px;
    }

    /* TEXT */

    .service-text{
      color:#666;
      line-height:1.8;
      margin-bottom:25px;
    }

    /* LINK */

    .service-link{
      color:#004b2d;
      font-weight:700;
      text-decoration:none;

      display:inline-flex;
      align-items:center;
      gap:8px;

      transition:.3s;
    }

    .service-link:hover{
      color:#c89b1f;
    }

    /* RESPONSIVE */

    @media(max-width:991px){

      .section-title{
        font-size:42px;
      }
    }

    @media(max-width:768px){

      .services-section{
        padding:70px 0;
      }

      .section-title{
        font-size:34px;
      }

      .section-text{
        font-size:16px;
      }
    }































     .contact-section {
    background: #f5f5f5;
  }

  .line {
    width: 120px;
    height: 2px;
    background: #d4a017;
  }

  .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
  }

  .form-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
  }

  .custom-input {
    height: 52px;
    border-radius: 0;
    border: 1px solid #bdbdbd;
    font-size: 14px;
  }

  textarea.custom-input {
    height: auto;
  }

  .custom-input:focus {
    box-shadow: none;
    border-color: #0d5c3f;
  }

  .submit-btn {
    background: #005b3c;
    color: #fff;
    border-radius: 0;
    height: 48px;
    min-width: 190px;
    border: none;
    font-weight: 600;
  }

  .submit-btn:hover {
    background: #00452e;
    color: #fff;
  }

  .privacy-text {
    font-size: 13px;
    color: #666;
    max-width: 320px;
  }

  .privacy-text a {
    color: #005b3c;
    font-weight: 600;
    text-decoration: underline;
  }

  .right-box {
    border-left: 1px solid #ddd;
  }

  .info-item h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    font-family: 'Barlow Condensed';
}

  .info-item p {
    color: #555;
    margin-bottom: 18px;
  }

  .custom-link {
    color: #005b3c;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
  }

  .custom-link::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #005b3c;
    position: absolute;
    top: 50%;
    right: -55px;
    transform: translateY(-50%);
  }

  @media (max-width: 991px) {
    .right-box {
      border-left: none;
      padding-left: 0 !important;
    }

    .section-title,
    .form-title {
      font-size: 34px;
    }

    .info-item h4 {
      font-size: 26px;
    }
  }












   /* ================= SERVICES PAGE ================= */

  .custom-services-page{
  padding:100px 0;
  background:#fff;
}

/* SECTION HEADER */

.custom-services-subtitle{
  color:#c89b1f;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:15px;
}

.custom-services-title{
  font-size:54px;
  font-weight:800;
  line-height:1.1;
  color:#111;
  margin-bottom:20px;
}

.custom-services-description{
  color:#666;
  font-size:17px;
  line-height:1.9;
  max-width:750px;
  margin:auto;
}

/* SERVICE CARD */

.custom-service-box{
  background:#fff;
  border-radius:18px;
  overflow:hidden;

  transition:.4s ease;

  height:100%;

  border:1px solid #eee;
}

.custom-service-box:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

/* IMAGE */

.custom-service-image{
  width:100%;
  height:250px;
  object-fit:cover;
}

/* CONTENT */

.custom-service-content{
  padding:30px;
}

.custom-service-icon{
  width:70px;
  height:70px;

  background:#004b2d;
  color:#fff;

  border-radius:16px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;

  margin-top:-65px;
  margin-bottom:20px;

  position:relative;
  z-index:2;

  box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.custom-service-title{
  font-size:26px;
  font-weight:700;
  margin-bottom:15px;
  color:#111;
}

.custom-service-text{
  color:#666;
  line-height:1.8;
  margin-bottom:25px;
}

/* BUTTON */

.custom-service-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;

  text-decoration:none;

  color:#004b2d;
  font-weight:700;

  transition:.3s;
}

.custom-service-btn:hover{
  color:#c89b1f;
}

/* CTA SECTION */

.custom-cta-section{
  margin-top:90px;

  background:#004b2d;
  border-radius:24px;

  padding:70px 50px;

  color:#fff;
}

.custom-cta-title{
  font-size:42px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:20px;
}

.custom-cta-text{
  color:#e2e2e2;
  font-size:17px;
  line-height:1.8;
  margin-bottom:30px;
}

.custom-cta-btn{
  display:inline-block;

  padding:16px 35px;

  background:#fff;
  color:#004b2d;

  text-decoration:none;
  font-weight:700;

  border-radius:6px;

  transition:.3s;
}

.custom-cta-btn:hover{
  background:#c89b1f;
  color:#fff;
}

/* RESPONSIVE */

@media(max-width:991px){

  .custom-services-title{
    font-size:42px;
  }

  .custom-cta-title{
    font-size:34px;
  }
}

@media(max-width:768px){

  .custom-services-page{
    padding:70px 0;
  }

  .custom-services-title{
    font-size:34px;
  }

  .custom-cta-section{
    padding:50px 30px;
  }

  .custom-cta-title{
    font-size:28px;
  }
}