*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
body{
    font-family: 'roboto', sans-serif;
    overflow-x: hidden !important;
}
.navigation-sec {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px 40px;
   background: #3A4330;
   z-index: 10000;
   transition: 0.6s;
}
.navigation-sec.sticky-nav {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.navbar-logo {
  width: 20%;
}
.navbar-logo img {
  width: 100%;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}
.nav-ul {
  display: flex;
  list-style: none;
}
.nav-ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.nav-ul li a:hover {
  color: #ccc;
}
.nav-link:focus, .nav-link:hover {
  color: #fff !important;
}
.nav-item.dropdown > .nav-link {
  cursor: pointer;
}
.nav-item.dropdown {
  position: relative;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #3A4330;
  top: 100%;
  list-style: none;
  min-width: 180px;
  padding: 0;
}
.dropdown-service-menu {
  display: none;
  position: absolute;
  background: #3A4330;
  top: 100%;
  list-style: none;
  min-width: 250px;
  padding: 0;
}
.dropdown:hover .dropdown-menu,
.dropdown:hover .dropdown-service-menu {
  display: block;
}
.dropdown-menu li a,
.dropdown-service-menu li a {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
}
.dropdown-menu li a:hover,
.dropdown-service-menu li a:hover {
  background: #ddd;
   color: #5a6949;
}

@media (max-width: 768px) {
 .navbar-logo {
    width: 50%;
}
.menu-toggle {
  display: block;
}
.nav-ul {
  display: none;
  flex-direction: column;
  background: #5a6949;
  /* background: #fff; */
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
}
/* .nav-ul li a {
   text-decoration: none;
   transition: 0.3s;
} */
.nav-ul.active {
  display: flex;
}
.nav-item {
  width: 100%;
  text-align: start;
  padding: 10px 0;
}
.dropdown-menu,
.dropdown-service-menu {
  /* position: static; */
  box-shadow: none;
}
.nav-item.dropdown.open > .dropdown-menu,
.nav-item.dropdown.open > .dropdown-service-menu {
  display: block;
}

}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  /* overflow: hidden; */
  position: relative;
  /* background-color: #5a6949; */
  background-image: url('images/bg.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* padding: 0; */
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  color:#fff;
  height:90vh;
  margin-top:50px;
}
.hero-content{
  /* background-color: #FFFFFF38; */
    padding: 20px 20px 20px 20px;
    box-shadow: -10px 15px 20px 0px rgba(0, 0, 0, 0.1);
    /* background-color: #fff; */
    background-color: #ffffffa8;
    border-top: 5px solid #198754;
}
.hero-content p{
  color:#3a4330;
  font-size:18px;
  font-weight:400;
  text-align: center;
}
.hero-content p span{
  color:#3a4330;
  font-size:23px;
  font-weight:bold;
}

.why1{
   padding-top:30px;
  padding-bottom:20px;
}
.why1 h2{
  font-size:25px;
  font-weight:bold;
  text-align:center;
   color:#5a6949;
}
.why1 p{
  font-size:22px;
  font-weight:500;
  text-align:center;
   color:#5a6949;
}
.why-new{
  margin-bottom:20px;
  text-align:center;
  /* padding-top:30px;
  padding-bottom:20px; */
  background-color: #FFFFFF38;
  padding: 20px 20px 20px 20px;
  box-shadow: -10px 15px 20px 0px rgba(0, 0, 0, 0.1);
}

.why-new h2{
    font-size:20px;
    font-weight:bold;
}

.why-new p{
   font-size:17px;
}
.why-new i{
   font-size:20px;
}



/* Changed Hero section */
.expo{
  padding-top: 20px;
  padding-bottom:20px;
  background-color:#3A4330;
  height:100%;
  text-align:center;
  border-top: 5px solid #198754;
  border-bottom: 5px solid #198754;
}

.expo h2 {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 700;
  /* text-align:center; */
  color:#fff;
}

.expo p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 0px auto;
  color:#ffffffa8;
}

.expo .carousel-control-prev,
.expo .carousel-control-next {
  width: 10%;
}

.expo .carousel-control-next-icon,
.expo .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.expo .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation-delay: 0.8s;
  color: #ffffffa8;
}






.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill:#fff;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}


.about{
    display:flex;
    position:relative;
    align-items: center;
    justify-content: center;
    padding:50px;
}
.aboutus1 h3{
  font-size:25px;
  font-weight:bold;
  margin-bottom:10px;
  color:#5a6949;
}
.aboutus1 h4{
  font-size:23px;
  font-weight:bold;
  margin-bottom:10px;
  color:#5a6949;

}
.aboutus1 p{
  font-size:15px;
}



.services{
  /* background-color:#f1f2f2; */
  padding-top:60px;
  padding-bottom:50px;
}
.services h2{
  font-size:25px;
  font-weight:bold;
  text-align:center;
  margin-bottom:30px;
  color:#5a6949;
}
.services .service-item {
  background-color: #fff;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 30px 60px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-align:center;
}

.services .service-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
   color:#5a6949;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
   color:#5a6949;
}

.services .service-item p {
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
  min-height:60%;
}
.read{
    margin-top:10px;
}
.read a{
    color:#5a6949;
    font-size:18px;
    font-weight:bold;
}
@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}




.sectors {
  background-color:#f1f2f2;
  padding-top:30px;
  padding-bottom:50px;
}
.sectors h2{
  font-size:25px;
  font-weight:bold;
  text-align:center;
   color:#5a6949;
}
.sectors p{
  font-size:22px;
  font-weight:500;
  text-align:center;
   color:#5a6949;
}
.sector1 img{
  background-color:#fff;
  padding:20px;
  width:100%;
  border-radius:10px;
}

/* .footer {
  color: #fff;
  background-color: #5a6949;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}
.footer img{
  width:30%;
  margin-bottom:20px;
}
.footer p {
  font-size: 18px;
  padding: 0;
  margin: 0 0 30px 0;
}
.v1-line{
  width:100%;
}
.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
} */


@media screen and (max-width: 996px) {
  .about{
    display:block;
}
 .aboutus1, .choose{
    margin-top:20px;
 }
 /* .footer img{
  width:50% !important;
 } */

}
@media screen and (max-width: 578px) {
  .sector1{
    text-align: center;
  }
   .sector1 img{
  width:30% !important;
 } 
}



.diamond-why{
  background-color:#f1f2f2;
  /* background-image: url('images/stylish.png'); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top:30px;
  padding-bottom:30px;
}
.diamond-why h6{
  display: none;
}

.diamond-card {
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, #ffff); /* light orange-pink gradient */
  transform: rotate(45deg);
  margin: 40px;
  /* box-shadow: 5px 5px 15px rgba(0,0,0,0.15); */
  /*box-shadow: 5px 5px 15px #0f5132;*/
  box-shadow: 5px 5px 15px #0f513278;
  border-radius: 20px;
  position: relative;
  display: inline-block;
}

.diamond-card1 {
  width: 230px;
  height: 230px;
  background: #5a6949;
  transform: rotate(45deg);
  margin: 40px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.15); 
  border-radius: 20px;
  position: relative;
  display: inline-block;
  color:#fff;
}
.center-column {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100%; /* ensure it stretches full height of sibling columns */
}
.why{
  display: flex;
  align-items: center;
  justify-self: center;
}
.why-choose-us h3 {
  font-size: 30px;
  margin: 10px 0 5px;
  color:#fff;
  font-weight:700;
}
.why-choose-us {
  transform: rotate(-45deg);
  text-align: center;
  padding: 40px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) rotate(-45deg);
  display: flex;
  align-items: center;
}
.why-choose-us p {
  font-size: 14px;
  color: #3333339c;
}
.diamond-content {
  transform: rotate(-45deg);
  text-align: center;
  padding: 30px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.diamond-content h3 {
  font-size: 20px;
  margin: 10px 0 5px;
  color:#5a6949;
  font-weight:700;
}
.diamond-content p {
  font-size: 15px;
  color: #3333339c;
}
.diamond-content i {
  font-size: 25px;
  color: #3333339c;
}


/***** Subscribe Section *****/
.subscribe{
    margin-top:50px;
    margin-bottom:50px;
    padding:20px;
}
.subscribe-sec{
    display:flex;
    align-items: center;
    justify-content: space-around;
}
.subscribe-content p{
     font-size:28px;
     font-weight:600;
     margin-bottom: 0;
     color:#5a6949;
}
.subscribt-btn{
     display:flex;
     align-items: center;
     justify-content: center;
}
.subscribe-btn input{
     width: 350px; 
     padding: 10px; 
     border: none; 
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.subscribe-btn button{
     background-color:#5a6949;
     color:#fff;
     text-decoration:none;
     padding:10px;
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
     font-weight:500; 
     border: none; 
     cursor:pointer;
}







/***** About Us *****/
.about-banner{
  margin-top: 50px;
  margin-bottom:50px;
  height:30vh;
  background-color:#58884c;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; 
}
.banner-sec h2{
  color:#fff;
  font-size:35px;
  font-weight: bold;
}
.banner-sec p{
  color:#fff;
  font-size:16px;
  margin-bottom:0;
}
.aboutus-sec{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top:50px;
}
.aboutus-img{
  position:relative;
  text-align:center;
}
.aboutus-img img{
  width:60%;
}
.aboutus-img-cont{
  position: absolute;
    bottom: -10%;
    left:35%;
    background-color: 
 color-mix(in srgb, var(--surface-color), transparent 50%);
    backdrop-filter: blur(10px);
    border: 1px solid
 color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 10px;
    padding: 12px 20px;
    width: 200px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #5a6949;

}
/* .aboutus-img-cont span{
  font-size:25px;
  color:#5a6949;
  font-weight:bold;
} */
.aboutus-img-cont h4{
  font-size:30px;
  color:#fff;
   font-weight:bold;
}
.aboutus-img-cont p{
  font-size:17px;
  color:#fff;
  margin-bottom: 0;
}
/* .aboutus-content h2{
  font-size:30px;
  color:#5a6949;
  font-weight:bold;
} */
.aboutus-content h4{
  font-size:30px;
  color:#5a6949;
  font-weight:600;
}
.aboutus-content p{
  font-size:16px;
  color:#000000ab;
  text-align: justify;
  margin-bottom: 0;
}


/***** Vision - Mission *****/
.vision-mission{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  margin-bottom:50px;
}
.vision-sec{
  display: flex;
  align-items: center;
  justify-content: center;
  border-top:2px solid #cdd1d1;
  padding:20px;
}
.mission-sec{
  display: flex;
  align-items: center;
  justify-content: center;
  border-top:2px solid #cdd1d1;
  padding:20px;
}
/* .vision-icon, .mission-icon{
  text-align: center;
} */
.vision-icon img{
  width:60%;
}
.mission-icon img{
  width:60%;
}
.vision-content h2, .mission-content h2{
  font-size:25px;
  color:#5a6949;
  font-weight:bold;
}
.vision-content p, .mission-content p{
  font-size:16px;
  color:#000000ab;
  text-align: justify;
  margin-bottom:0;
}


/***** Values *****/
.values{
  /* margin-top: 50px;
  margin-bottom:50px;
  height:30vh; */
  background-color:#f3f3f3;
  height:100%;
  padding:40px;
}
.values h2:before {
    content: "";
    width: 100px;
    height: 2px;
    background: #5a6949;
    display: inline-block;
    margin: 0 15px 10px 0;
}
 .values h2:after {
    content: "";
    width: 100px;
    height: 2px;
    background: #5a6949;
    display: inline-block;
    margin: 0 15px 10px 15px;
 }
.values h2{
  font-size:28px;
  font-weight:bold;
  color:#5a6949;
  text-align:center;
}
.values-content{
  background-color:#fff;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    border-radius: 10px;
    margin-top:30px;
    height:90%;
    margin-bottom:30px;
}
.values-content h4{
  font-size:18px;
  font-weight:bold;
  color:#5a6949;
  letter-spacing: 0.5px;
}
.values-content p{
  font-size:16px;
  color:#000000ab;
  margin-bottom:0;
}



/***** Our Team *****/
/***** About Us *****/
.team-banner{
  margin-top: 50px;
  margin-bottom:50px;
  height:30vh;
  background-color:#58884c;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; 
}
.team-sec h2{
  color:#fff;
  font-size:35px;
  font-weight: bold;
}
.team-img{
  text-align:center;
}
.team-img img{
  width:57%;
  margin-bottom:10px;
}
.team-img p{
  margin-bottom:0;
}
.team-img i{
  color: #1d7227;
  margin-right:8px;
}
.team-border{
  border-top:2px solid #00000021;
  padding-top:20px;
  padding-bottom:20px;
}
.team-content{
  margin-bottom:10px;
}
.team-content h2{
  font-size:25px;
  font-weight:bold;
  color:#5a6949;
}
.team-content h2 span, .team-content p{
  font-size:15px;
  color:#000000ab;
  margin-bottom:0;
}
.team-content li{
  font-size:15px;
  color:#000000ab;
}
.team-content h3{
  font-size:16px;
  font-weight:bold;
  color:#5a6949;
}



/***** History *****/
.history-banner{
  margin-top: 50px;
  margin-bottom:30px;
  height:30vh;
  background-color:#58884c;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; 
}
.history-sec h2{
  color:#fff;
  font-size:35px;
  font-weight: bold;
}
.history-content{
  padding:50px 100px;
}
.history-content h2{
  font-size:35px;
  font-weight:bold;
  color:#5a6949;
}
.history-content p{
  margin-bottom:0;
  font-size:17px;
  color:#000000ab;
  margin-bottom:10px;
}
.history-content li{
  margin-bottom:0;
  font-size:17px;
  color:#000000ab;
}
.history-bg{
  background-color:#efffdd;
}

.timeline{
  margin-bottom:50px;
}
 .timeline-row {
    position: relative;
  }

  .timeline-item {
    position: relative;
    text-align: center;
    padding: 10px;
  }

  .timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 125px; /* adjust vertically to align with h4 */
    right: -80px;
    width: 150px;
    border-top: 4px dotted #5a6949;
  }
  .timeline-item h4{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #dbe4d1;
  color: #5a6949;
  text-align: center;
  margin: 0 auto 10px; /* center and add spacing */
  font-size: 18px;
  font-weight:bold;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
  }
  .timeline-item .l1{
    color:#5a6949;
    font-size:18px;
    font-weight:600;
    height:10%;
  }
.timeline-item h4::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 50px; /* Adjust to reach the h4 */
  background-color: #aaa;
  z-index: 0;
}
  .timeline-content{
    border:2px solid #5a6949;
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
    padding: 20px 20px;
    color:#000000ab;
    border-radius: 10px;
    height:50%;
    margin-top:50px;
  }
  .timeline-content h3{
     font-size:17px;
     margin-bottom:10px;
     font-weight:bold;
  }
  .timeline-content p{
     font-size:16px;
     margin-bottom:0;
  }
  .timeline-heading{
    text-align: center;
    padding:30px;
  }
   .timeline-heading h2{
     font-size: 28px;
    font-weight: bold;
    color: #5a6949;
  }
   .timeline-heading p{
    font-size: 23px;
    color: #5a6949;
  }
  .timeline-btn{
    text-align:center;
    margin-top:50px;
  }
  .timeline-btn a{
    background-color:#5a6949;
    color:#fff;
    border:none;
    border-radius:10px;
    padding:10px 20px;
    text-decoration: none;
    font-size:16px;
    font-weight:bold;
  }



/***** Footer Section *****/

#footer{
  color: #fff;
  background-color: #5a6949;
  font-size: 14px;
  padding: 30px 0;
  position: relative;
}
#footer img{
  width:100%;
  margin-bottom:20px;
}
.footer-col{
  text-align: left;
}
.footer h4{
  margin-bottom:18px;
  font-size:20px;
  font-weight:600;
}
.footer-col p{
  font-size:16px;
  color:#fff;
  margin-bottom:10px;
}
.footer-col p a{
  color:#fff;
  text-decoration:none;
}
.footer-col ul{
  padding-left:0;
}
.footer-col li{
  list-style-type: none;
}
.footer-col li a{
  font-size:15px;
  color:#fff;
  margin-bottom:0;
  text-decoration: none;
}
.footer-col i{
  margin-right: 5px;
  font-size:15px;
}
.claimer p{
  text-align:left;
  font-size:16px;
  margin-top:20px;
  margin-bottom:5px;
}
.v1-line{
  width:100%;
}
.copyright{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size:17px;
  font-weight:500;
}



/***** Services - Audit and Assurance *****/
.services-banner{
  height:100%;
  background-color:#58884c;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding:40px;
}
.services-sec h2{
  color:#fff;
  font-size:35px;
  font-weight: bold;
  margin-top:20px;
}
.services-sec p{
  color:#fff;
  font-size:16px;
}
.sub-servicves{
 display:flex;
 align-items: center;
 justify-content: space-evenly;
}
 .sub-servicves a {
  text-decoration: underline;
  color:#fff;
  font-size:16px;
 }
 .sub-servicves a i{
  margin-right:5px;
 }
 .service-partner{
     text-align:start;
 }
 .service-partner p{
    color:#fff;
    font-size:15px;
    text-align:justify;
 }
 .service-partner p b{
    color:#fff;
    font-size:18px;
 }
 .service-row{
  margin-top:50px;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-margin-top: 100px;
 }
 .audit-image img{
  width:100%;
  display: flex;
  align-items: center;
  justify-content: center;
 }
 .audit-content h4{
  font-size:25px;
  color:#5a6949;
  font-weight:bold;
  letter-spacing: 1.3px;
 }
 .audit-content li{
  font-size:17px;
  color:#000000ab;
 }
 .audit-content li p{
  font-size:17px;
  color:#000000ab;
  margin-bottom:0;
 }



 /***** Contact Us *****/
.contactus-banner{
  margin-top: 40px;
  margin-bottom:30px;
  height:30vh;
  background-color:#58884c;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; 
}
.contactus-sec h2{
  color:#fff;
  font-size:35px;
  font-weight: bold;
  margin-top:20px;
}
.location-sec{
  margin-top:30px;
  margin-bottom:30px;
}
/* .loc-sec{
  display: flex;
  align-items: center;
  justify-content: center;
} */
 .location h4{
  font-weight:600;
  font-size:20px;
  color:#58884c;
 }
 .location p{
  margin-bottom: 0;
  color:#000000ab;
  font-size:15px;
  line-height:1.6;
 }
 .location p a{
  text-decoration:none;
  color:#000000ab;
 }
  .location p i{
  margin-right:5px;
 }
 .map{
  margin-top:10px;
 }
.location-branch{
    display:flex;
    align-items:center;
    justify-content:center;
}
 .contact h2{
  font-size:25px;
  text-align: center;
  color:#5a6949;
  font-weight:bold;
 }
  .contact-form {
    max-width: 600px;
    background-color:#e0f2db;
    padding:20px 30px;
    border-radius:20px;
  }

  .contact-form label {
    display: block;
    margin: 30px 0 5px;
    font-weight: 500;
  }
  .contact-form span{
    color:#dd0b0b;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #5a6949;
    padding: 5px 4px;
    font-size: 16px;
    background: transparent;
    outline: none;
  }

  .contact-form textarea {
    resize: vertical;
  }

  .contact-form input[type="submit"] {
    margin-top: 20px;
    background-color: #1d7227;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
  }

  .contact-form input[type="submit"]:hover {
    background-color: #155a1d;
  }

 .careers{
  padding-top:130px;
  padding-bottom:50px;
 }
  .career-banner {
    background-color:#e0f2db;
    margin-top:100px;
    max-width: 600px;
    margin:0 auto;
    padding:20px 30px;
    border-radius:20px;
  }
  /* .career-sec{
    margin-top:100px;
    margin-bottom:100px;
  } */
   .input-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:20px;
   }
  .career-form label {
    display: block;
    margin: 30px 0 5px;
    font-weight: 500;
  }
  .career-form span{
    color:#dd0b0b;
  }
   .career-form input[type="text"],
  .career-form input[type="email"],
  .career-form textarea, .career-form select {
    width: 100%;
    border: none;
    border-bottom: 2px solid #5a6949;
    padding: 5px 4px;
    font-size: 16px;
    background: transparent;
    outline: none;
    right:5px;
  }

  .career-form textarea {
    resize: vertical;
  }

  .career-form input[type="submit"] {
    margin-top: 20px;
    background-color: #1d7227;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
  }

  .career-form input[type="submit"]:hover {
    background-color: #155a1d;
  }


/***** Call to Action *****/
     .call-icon {
  position: fixed;
  bottom: 150px;
  right: 20px;
  background-color: #28a745;
  color: white;
  font-size: 25px;
  padding:10px;
  border-radius: 50%;
  text-align: center;
  z-index: 9999;
  animation: blink 1s infinite;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  text-decoration: none;
  width:60px;
  height: 60px;
}
.call-icon i{
 color:#fff;
}
.call-icon i:hover{
 color:#fff;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.call-icon:hover {
  background-color: #218838;
}



  .gallery-title{
    font-size: 36px;
    color: #3F6184;
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}
.filter-button{
    font-size: 18px;
    border: 2px solid #3F6184;
	padding:5px 10px;
    text-align: center;
    color: #3F6184;
    margin-bottom: 30px;
	background:transparent;
}
.filter-button:hover,
.filter-button:focus,
.filter-button.active{
    color: #ffffff;
    background-color:#3F6184;
	outline:none;
}
.gallery_product{
    margin: 0px;
	padding:0;
	position:relative;
}
.gallery_product .img-info{
	position: absolute;
    background: rgba(0,0,0,0.5);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
	overflow:hidden;
	color:#fff;
	top:0;
	display:none;
	   -webkit-transition: 2s;
    transition: 2s;
}

.gallery_product:hover .img-info{
	display:block;
   -webkit-transition: 2s;
    transition: 2s;
}



@media screen and (max-width: 767px) {
  .aboutus-img-cont{
  bottom:-10% !important;
}
.aboutus-content{
  margin-top:70px !important;
}
 .diamond-card {
  width: 100%;
  transform: unset !important;
  margin:0;
}
.choose-us {
 display:none !important;
}
.diamond-content {
  transform: unset !important;
  top: 0 !important;
  left: 0 !important;
}
.diamond-why .row{
  margin-top:0 !important;
}
.diamond-why h6 {
  display: block;
  font-size: 30px;
  margin: 10px 0 5px;
  color:#5a6949;
  font-weight:700;
  text-align:center;
  margin-bottom:20px;
}
.timeline-row {
    position: relative;
    flex-direction: column;
}
.timeline-item:not(:last-child)::after {
  display:none;
}
.location-branch{
    display:flex;
    flex-wrap:wrap;
}
.map iframe{
    width:100% !important;
}
 .sub-servicves {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.subscribe-sec {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}
.subscribe-content{
    margin-bottom: 10px;
}
.subscribe-btn button{
    margin-top:20px;
}
.sector-ch img{
    width:20% !important;
}
.footer .col {
    flex: 1 0 30% !important;
    margin-bottom: 15px;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px)  {

  /* .hero {
    background-position: top !important;
    background-size: contain !important;
    height: 45vh !important;
    margin-top:60px !important;
} */
 .diamond-card {
  width: 100%;
  transform: unset !important;
  margin:0;
}
.choose-us {
 display:none !important;
}
.diamond-content {
  transform: unset !important;
  top: 0 !important;
  left: 0 !important;
}
.diamond-why .row{
  margin-top:0 !important;
}
.diamond-why h6 {
  display: block;
  font-size: 30px;
  margin: 10px 0 5px;
  color:#5a6949;
  font-weight:700;
  text-align:center;
  margin-bottom:20px !important;
}
.aboutus-img-cont{
  bottom:-10% !important;
}
.aboutus-content{
  margin-top:70px !important;
}
.timeline-item:not(:last-child)::after {
  display:none;
}
.timeline-row {
    position: relative;
    flex-direction: column;
}
 .map iframe{
    width:100% !important;
}
 .contact-form{
     max-width:unset !important;
 }
 .contact{
      margin-top:20px;
 }
 .subscribe-sec {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.subscribe-content{
    margin-bottom: 10px;
}
.footer .col {
    flex: 1 0 30% !important;
    margin-bottom: 15px;
}
 
}

@media screen and (max-width: 1200px) {
  /* .hero {
    background-position: top !important;
    background-size: contain !important;
    height: 45vh !important;
    margin-top:60px !important;
} */
.aboutus-img-cont{
  bottom:15%;
}
.timeline-content{
  height:60%;
}
.timeline-item:not(:last-child)::after {
    top: 135px;
        width: 120px;
}
.map iframe{
    width:100% !important;
}
.location-branch{
    gap:15px !important;
}
 
}


/* Services appointment */
.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark transparent background */
  z-index: 999;
  }
  .popup-form{
    display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 600px; /* Increased width */
  max-width: 95%;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  }
  .close-btn{
     cursor: pointer;
    float: right;
    font-size: 20px;
    font-weight: bold;
    color: #333;
  }

  .appointment-btn {
    background-color: #5a6949;
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left:30px;
  }

  .appointment-btn:hover {
    background-color: #5a6949;
  }
  .appointment-send-btn{
    margin-top:20px;
  }
  .appointment-send-btn button{
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    border: none;
    background-color: #5a6949;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
  }
  .form-label{
    margin-bottom:0px !important;
  }
  .form-label span{
    color:red;
  }
  .form-control{
    margin-bottom:10px;
  }
  
  
  
  /* Disclaimer Popup */
  #disclaimer-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
  }

  .popup-box {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .popup-box  img{
      background:#5a6949;
      padding:10px;
  }
  .popup-box p {
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
  }

  .popup-box ul {
    text-align: left;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #444;
  }
.popup-box ul li{
    font-size: 15px;
  }
  .popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  .popup-buttons i{
    color:#fff;
  }
  .popup-buttons button {
    padding: 10px 20px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    background-color: #4d6340;
    transition: background 0.3s;
  }

  .popup-buttons button:hover {
    background-color: #3c4d2d;
  }
  
  
  
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.success-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    font-family: Arial;
    color: #006633;
    position: relative;
}
.success-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #006633;
    color: white;
    width: 30px;
    height: 30px;
    font-size: 20px;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}
.success-ptag{
    text-align:center;
}
.success-ptag i{
    color: #fff;
    background: #006633;
    border-radius: 50%;
    padding: 10px;
}

.success-ptag p{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 10px;
    letter-spacing: 0px;
}


/* General Popup */


