
/*	@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap"); 
	@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');  */
	@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap'); 
/*	@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500&display=swap'); 
	@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600&display=swap'); */





:root {
  --yellow:#f5a505;
  --golden:#f5a505;
  --black:#111;
  --white:#fff;
  --light-color:#666;
  --light-bg:#eee;
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  --border:.1rem solid rgba(0,0,0,.3);
}

* {
	/*
	font-family: 'Nunito', sans-serif; /*
	font-family: 'Montserrat', sans-serif; */
	font-family: 'Open Sans', sans-serif; /*
	font-family: 'Roboto', sans-serif; /*
  font-family: 'Poppins', sans-serif;
  */
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: var(--yellow);
}

/*==== hide arrows from number input ====*/
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
 -webkit-appearance: none;
}
/*==== hide arrows from number input ====*/
  
/* common style */
.caption{
  font-size:13px;
}
.footer-submenu{
	font-size:13px;
}
.disabled-link {
  pointer-events: none;
}
.pText{
	font-size:16px;
}

/* ---- */
section {
  padding: 5rem 10%;
}

.hidden-section {
  display: none;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--yellow);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.btn:hover {
  background: var(--yellow);
  color: var(--black);
}

@-webkit-keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 100;
  background: var(--white);
}

.header .logo {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.header .logo span {
  color: var(--yellow);
}

.header .navbar a:hover {
  color: var(--yellow);
}

.header .icons div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-left: .3rem;
}

.header .icons div:hover {
  background: var(--black);
  color: var(--white);
}

.header #menu-btn {
  display: none;
}

.header .search-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 1rem;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-animation: fadeIn .2s linear;
          animation: fadeIn .2s linear;
}

.header .search-form.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
}

.header .search-form label {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  margin: 0 1rem;
}

.header .search-form label:hover {
  color: var(--yellow);
}

.header .login-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  -webkit-animation: fadeIn .2s linear;
          animation: fadeIn .2s linear;
  display: none;
}

.header .login-form.active {
  display: block;
}

.header .login-form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.header .login-form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
  margin: .7rem 0;
}

.header .login-form .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.header .login-form .flex label {
  font-size: 1.5rem;
  color: var(--light-color);
  cursor: pointer;
}

.header .login-form .flex a {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-left: auto;
}

.header .login-form .flex a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

.header .login-form .btn {
  width: 100%;
}

.header .login-form p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 1.5rem;
}

.header .login-form p a {
  color: var(--yellow);
}

.header .login-form p a:hover {
  text-decoration: underline;
}

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 35rem;
  background: var(--white);
  height: 100%;
  text-align: center;
  z-index: 110;
  padding: 0 2rem;
  padding-top: 2rem;
  display: none;
}

.contact-info.active {
  -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  display: block;
}

.contact-info #close-contact-info {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 3rem;
  color: var(--black);
}

.contact-info #close-contact-info:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.contact-info .info {
  padding: 1rem 0;
}

.contact-info .info i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-bottom: .5rem;
}

.contact-info .info i:hover {
  background: var(--black);
  color: var(--white);
}

.contact-info .info h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}

.contact-info .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin: 0 .3rem;
}

.contact-info .share a:hover {
  background: var(--black);
  color: var(--white);
}
.menu {
  list-style-type: none;
  padding: 0;
  background: var(--white);
  display: flex;
  /*
  Commented and updated KG_UPD_11032025
  font-size: 1.5rem;
  */
  font-size: 1.8rem;
  color: var(--black);
  text-transform: capitalize;
  margin: 0 1rem;
  /* flex-direction: column; */
}
.menu > li {
  position: relative;
}
li.has-children {
  position: relative;
}
.menu > li > a {
  display: block;
  padding: 15px 20px;
  color: var(--black);
  text-decoration: none;
  background: var(--white);
  transition: background 0.3s ease;
}
.menu > li > a:hover {
  color: var(--yellow);
}
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: var(--white);	  /*background-color: rgba(255, 255, 255, 0.8); */
  white-space: nowrap;
}

.submenu2 {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: var(--white);  /*background-color: rgba(255, 255, 255, 0.8); */
  white-space: nowrap;
} 
.submenu li a{
  padding: 10px 20px;
  color: var(--black);
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.submenu2 li a {
  padding: 10px 20px;
  color: var(--black);
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
} 
.submenu li a:hover {
  color: var(--yellow);
  background: var(--light-bg);
}
.submenu2 li a:hover {
  color: var(--yellow);
} 
.menu li:hover > .submenu {
  display: block;
}

.submenu li:hover > .submenu2 {
  display: block;
} 
.hamburger {
  display: none;
}
.menu.active {
  display: flex;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu {
      display: none;
      flex-direction: column;
  }
  .menu > li {
      display: block;
      position: relative;
  }
  .menu > li > a {
      display: block;
      padding: 15px 20px;
  }
  .submenu, .submenu2 {
      position: static;
      display: none;
  }
  .submenu li a, .submenu2 li a {
      padding: 10px 20px;
  }

  .menu li.has-children > a::after {
      content: '+';
      float: right;
  }
  .menu li.active.has-children > a::after {
      content: '-';
  }
  .hamburger {
      display: block;
      cursor: pointer;
      padding: 15px;
      background: var(--white);
      color: var(--black);
      text-align: center;
  }

 ul.submenu,  ul.submenu2{
  display: none !important;
 }
 /*
 ul.submenu2{
  display: none !important;
 }
*/
ul.submenu.show. ul.submenu2.show {
  display: block !important;
}
/*
ul.submenu2.show {
  display: block !important;
}*/
}
.home {
  padding: 0;
}

.home .slide {
  min-height: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;;   /*AB_01032025*/
}
.home .swiper {    /*AB_01032025*/
  height: 100%;
  width: 100%;
}
.home .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--white)), to(transparent));
  background: linear-gradient(90deg, var(--white), transparent);
}

.home .slide .content {
  width: 50rem;
  position: relative;
}

.home .slide .content h3 {
  font-size: 6rem;
  color: var(--black);
  text-transform: capitalize;
  text-transform: uppercase;
}

.home .slide .content p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.home .swiper-button-next,     /*AB_01032025*/
.home .swiper-button-prev{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}
}
.home .swiper-button-next,
.home .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  background: var(--white);
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: var(--yellow);
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 2rem;
  color: var(--black);
}

.home .swiper-button-prev {
  right: 7rem;
}
@media (max-width: 768px) {
    .home .slide {
        min-height: 30rem; /* Smaller height for mobile */
    }
}

/*  ABOUT START   */
.about-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
/*
.section-title, .subsection-title {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
} */
.section-title, .subsection-title {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}
.section-list {
	font-size:14px;
	padding-left:30px;
}

.section-text, .objectives-list, .profile-list, .organization-list, .manpower-supply-list, .labour-supply-list {
  /* 
  Font Size Increased from 14 to 18 px KG_UPD_10032025
  font-size:14px !important;
  */
  font-size:16px !important;
  color:#555;
  margin-bottom:20px;
  margin-left:30px;
  text-align:justify;
}

.objectives-list ul, .profile-list ul, .organization-list ul, .manpower-supply-list ul, .labour-supply-list ul {
  list-style-type: disc;
  margin-left: 20px;
}

.objectives-list li, .profile-list li, .organization-list li, .manpower-supply-list li, .labour-supply-list li {
  margin-bottom: 10px;
   margin-left: 30px;
}
.objective-grp {
  margin-top:20px; 
  margin-left:330px;
}

.profile-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-right: 20px;
}

.about-image {
  width: 100%;
  height: auto;
  margin: 20px 0;
}

strong {
  font-weight: bold;
  color: #000;
}

/* ABOUT  */
.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}

.about .row .video {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.about .row .video video {
  width: 100%;
}

.about .row .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.about .row .content h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.about .box-container {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
}

.about .box-container .box h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: .5rem;
}

.services {
  background: var(--light-bg);
}

.services .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.services .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border: var(--border);
}

.services .box-container .box:hover img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.services .box-container .box img {
  height: 7rem;
  margin-bottom: .5rem;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.services .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.services .box-container .box p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.projects {
  background: var(--black);
}

.projects .heading {
  color: var(--white);
}

.projects .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.projects .box-container .box {
  cursor: initial;
}

.projects .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.projects .box-container .box .image {
  height: 40rem;
  overflow: hidden;
}

.projects .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.projects .box-container .box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.projects .box-container .box .content .info {
  padding: 1rem 2rem;
}

.projects .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
}

.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.projects .box-container .box .content i {
  width: 7.5rem;
  font-size: 3rem;
  background: var(--yellow);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  line-height: 7.5rem;
}

.reviews .slide p {
  padding: 1.5rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.reviews .slide p::before {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  height: 2rem;
  width: 2rem;
  background: var(--light-bg);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.reviews .slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}

.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
}

.reviews .slide .user h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.reviews .slide .user .stars {
  padding-top: .5rem;
}

.reviews .slide .user .stars i {
  font-size: 1.4rem;
  color: var(--yellow);
}

.pricing {
  background: var(--light-bg);
}

.pricing .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.pricing .box-container .box {
  background: var(--white);
  text-align: center;
  padding: 2rem;
  border: var(--border);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.pricing .box-container .box i {
  font-size: 3rem;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  background: var(--yellow);
  color: var(--black);
}

.pricing .box-container .box h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  font-weight: normal;
}

.pricing .box-container .box .price {
  padding: 1rem 0;
  font-size: 5rem;
  color: var(--black);
  text-transform: capitalize;
}

.pricing .box-container .box .price span {
  font-size: 2rem;
}

.pricing .box-container .box .list {
  padding: 1rem 0;
}

.pricing .box-container .box .list p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.contact {
  background: var(--black);
}

.contact .heading {
  color: var(--white);
}

.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.contact .row .map {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
  width: 100%;
}

.contact .row form {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
  background: var(--white);
  padding: 2rem;
}

.contact .row form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.contact .row form .box {
  margin: .7rem 0;
  width: 100%;
  padding: 1.5rem 0;
  border-bottom: var(--border);
  font-size: 1.6rem;
  color: var(--light-color);
}

.contact .row form .box:focus {
  border-color: var(--yellow);
}

.contact .row form textarea {
  height: 15rem;
  resize: none;
}

.blogs {
  background: var(--light-bg);
}

.blogs .slide {
  text-align: center;
}

.blogs .slide:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blogs .slide .image {
  height: 25rem;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}

.blogs .slide .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.blogs .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  background: var(--white);
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
}

.blogs .slide .content h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.blogs .slide .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.navLogo{
	height:30px;
	width:auto;
}
.logo-container {
  text-align: center;
}

.logo-container img {
  height: 10rem;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.footer {
  text-align: center;
}

.footer .links .btn {
  margin: .5rem;
}

.footer .credit {
  font-size: 1.5rem;
  color: var(--black);
  text-transform: capitalize;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

.footer .credit span {
  color: var(--golden);
}

@media (max-width: 1200px) {
  .header {
    padding: 1.5rem;
  }
  section {
    padding: 3rem 5%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 2rem;
  }
  .header #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: .2s linear;
    transition: .2s linear;
  }
  .header .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@media (max-width: 768px) {
  .header .search-form {
    width: 90%;
  }
  .header .login-form {
    width: 90%;
  }
  .home .slide {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home .slide .content {
    text-align: center;
  }
  .home .slide .content h3 {
    font-size: 3rem;
  }
  .menu-container {
    position: relative;
}

.menu-btn {
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    position: fixed;
    top: 20px;
    right: 20px;
}
.icons{
  z-index: 1;
}

.navbarr {
    position: fixed;
    top: 0;
    right: -250px;
    width: 100%;
    height: 100%;
    color: #fff;
    /* transition: right 0.3s ease; 
    overflow-y: auto;*/
    padding-top: 60px;
}

.navbarr.active {
    right: 0;
}

.navbarr ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbarr li {
    padding: 15px 20px;
    /* border-bottom: 1px solid #444; */
}

.navbarr a {
    color: #fff;
    text-decoration: none;
    display: block;
}

}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .about .row .content h3 {
    font-size: 2.5rem;
  }
  .navLogo{
	height:25px;
	width:auto;
}
  .header .search-form {
    width: 60%;
  }
  .header .login-form {
    width: 60%;
  }
}

/*# sourceMappingURL=style.css.map */
/* AB_new styles */

    .picture-gallery {
        padding: 50px 0;
        text-align: center;
    }
    .picture-gallery h2 {
        font-size: 2.5em;
        margin-bottom: 20px;
    }
    .picture-gallery .gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .picture-gallery .gallery-item {
        flex: 1 1 300px;
        max-width: 300px;
        position: relative;
    }
    .picture-gallery .gallery-item img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    .picture-gallery .gallery-item .caption {
        position: absolute;
        bottom: 10px;
        left: 0;
        width: 100%;
        text-align: center;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        padding: 5px 0;
        border-radius: 0 0 10px 10px;
    }
   
	
	/*
	.type-of-work {
        padding: 50px 0;
        text-align: center;
        background-color: #f9f9f9;
    }
    .type-of-work h2 {
        font-size: 2.5em;
        margin-bottom: 20px;
    } */
    .type-of-work .work-categories {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .type-of-work .category {
        flex: 1 1 300px;
        max-width: 300px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0.1, 0.2);
        overflow: hidden;
        transition: transform 0.3s;
    }
    .type-of-work .category img {
        width: 100%;
        height: auto;
    }
    .type-of-work .category h3 {
        font-size: 1.3em;
        margin: 15px 0;
		padding-left:10px;
    }
    .type-of-work .category p {
        padding: 0 15px 20px;
        color: #666;
    }
    .type-of-work .category:hover {
        transform: translateY(-10px);
    }
	
	
.W-laborPro {
  position: relative;
  width: 100%;
  max-height: 100%;
  margin: 0 auto;
  
}

.W-laborPro img {
  width: auto;
  height: 300px;
  display: block;
  
}
/*
.image-container {
  position: relative;
  width: 100%;
  max-height: 100%;
  margin: 0 auto;
  
}

.image-container img {
  width: auto;
  height: 170px;
  display: block;
  
}*/
.image-container {
    position: relative;
    width: 100%;
    max-height: 100%;
    margin: 0 auto;
    text-align: center;
}
.image-container img {
    width: 100%; 
    max-width: 100%; 
    height: auto; 
    object-fit: cover; 
}
/*
.image-container img {
    width: 100%;
    height: auto;
    max-height: 100px;
    display: block;
}*/
.image-container5 {
  position: relative;
  width: 100%;
  max-height: 100%;
  margin: 0 auto;
  margin-bottom:15px;
}

.image-container5 img {
  width: 130%;
  height: 230px;
  display: block;
}
/*
.text-overlay {
  position: absolute;
  top:3%;
  right: 0;
  bottom: 0;
  width: 70%;
  z-index:1;
}

.text-overlay p {
  margin: 0;
  font-size: 14px;
}*/
.text-overlay {
    position: relative;
    width: 100%;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    text-align: justify;
}

.text-overlay p {
    margin: 0;
    font-size: 12px;
}
.VM-image {
  width: 80%;
  height: auto;
  margin: 20px 0;
}
.imgTextContainer {
	display: flex;
	flex-direction: column;
	width: 100%;
}
/*
.image-section {
	width: 70%;
	background-image: url('your-image-url.jpg'); 
	background-size: cover;
	background-position: center; 
}
.text-section {
	width: 80%;
	padding: 0px; 
}
*/
.image-section {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100px;
    max-width: 100%;
}

.text-section {
 /*   width: 100%; */
    padding: 10px;
    text-align: justify;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .row {
        display: flex;
        flex-wrap: nowrap;
    }
    
    .image-container {
        max-width: 100%;
        height: auto;
    }
    .imgTextContainer {
        flex-direction: row;
    }
    .image-section {
        width: 45%;
        min-height: 150px;
    }
    .text-section {
        width: 45%;
        padding: 15px;
        text-align: justify;
    }
    .heading {
        font-size: 2rem;
    }
    
}

@media (min-width: 1024px) {
    .image-section {
        width: 50%;
        min-height: 200px;
    }
    .text-section {
        width: 50%;
        padding: 20px;
        text-align: justify;
    }
    .heading {
        font-size: 2.5rem;
    }
    .image-container img {
        max-height: 200px;
    }
}
/* Toggle go up-down floating button start */
.toggle-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	transition: opacity 0.3s ease;
	z-index:2;	
}

.toggle-btn:hover {
	background-color: #0056b3;
}

.toggle-btn.hidden {
	opacity: 0;
	visibility: hidden;
}
/* Toggle go up-down floating button end */ 


/* Toggle go up-down floating button start */
.scroll-btnU {
	position: fixed;
	bottom: 82px;
	right: 20px;
	width: 20px;
	height: 40px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 10%;
	text-align: center;
	line-height: 20px;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	transition: opacity 0.3s ease;
	z-index:2;
}
.scroll-btnD {
	position: fixed;
	bottom: 40px;
	right: 20px;
	width: 20px;
	height: 40px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 10%;
	text-align: center;
	line-height: 20px;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	transition: opacity 0.3s ease;
	z-index:2;
}
.scroll-btnU:hover, .scroll-btnD:hover {
	background-color: #c79b02;
}

.scroll-btnU.hidden {
	opacity: 0;
	visibility: hidden;
}
.scroll-btnD.hidden {
	opacity: 0;
	visibility: hidden;
}

/* Toggle go up-down floating button end */ 


/*   Four column image thumbnail  starts  */
.col4-section{
	display:grid;
	grid-template-columns: repeat(4, 1fr);
	gap:15px;
	padding:20px;
}
.col4 img{
	width:100%;
	height:auto;
	border-radius:10px;
}
/*   Four column image thumbnail   */

/* MAIL notification starts  /
.success, .alert{
	width:400px;
	text-align:center;
	position:absolute;
	top:30px;
	left:50%;
	transform:translateX(-50%);
	color:white;
	padding:10px;
}

.alert{ background-color: #ed7700; }
.success{ background-color: #00de3b; }


/*  MAIL notification ends  */

.more-link{
	float:right;
	color:blue;
	text-decoration: none;
}
.more-link:hover{
	color:red;
	font-size:16px;
}