@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
:root {
  --yellow:#6ab04c;
  --black:#111;
  --white:#fff;
  --light-color: #666;
  --light-bg: #eee;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --border: 0.1rem solid rgba(0, 0, 0, 0.3);
}
* {
  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);
}
section {
  padding: 0rem 2%;
}
.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: 0.2s linear;
  transition: 0.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;
  }
}

/*** HEADING ***/
.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 2%;
  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: 1000;
  background: #c7ecc9;
}
.header .logo {
  font-size: 2.5rem;
  color: var(--black);
}
.header .logo span {
  color: var(--yellow);
}
.header .navbar a {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin: 0 1rem;
}
.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: 0.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 0.2s linear;
          animation: fadeIn 0.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 0.2s linear;
          animation: fadeIn 0.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: 0.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: 0.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: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  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: 4rem;
  color: var(--black);
}
.contact-info #close-contact-info:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.contact-info .info {
  padding: 2rem 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: 0.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 0.3rem;
}
.contact-info .share a:hover {
  background: var(--black);
  color: var(--white);
}

/*** HOME ***/
.home {
  padding: 0;
}
.home .slide {
  min-height: 60rem;
  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;
}
.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,
.home .swiper-button-prev {
  top: 10px;
/*  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;
}



/*** FEATURED ***/
.featured {
  padding: 2.5rem 0 3.0rem 0;
}
.heading-featured {
  font-size: 1.5rem;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #434343;
}
.logos{
  display: flex;
  justify-content: space-around;
}
.logos img{
  height: 2rem;
  filter: brightness(0);
  opacity: 50%;
}

/*** 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 25rem;
          flex: 1 1 25rem;
}
.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: 1.75rem;
  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: 3rem;
  color: var(--black);
  text-transform: capitalize;
}
.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 0.5rem;
}

/*** SERVICE ***/
.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: 5rem;
}
.services .box-container .box {
  text-align: center;
  padding: 2.5rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border: var(--border);
  border: 5px solid green;
}
.services .box-container .box:hover img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}
.services .box-container .box img {
  width: 15rem;
  margin-top: 0.5rem;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.services .box-container .box h3 {
  font-size: 1.75rem;
  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;
}

/*** PROJECT ***/
.projects {
  background: var(----light-color);
}
.projects .heading {
  color: var(--black);
}
.projects .texts h3 {
  font-size: 1.75rem;
  color: var(--black);
  text-transform: capitalize;
}
.projects .texts p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.projects-container {
  display: flex; /* Use flexbox for layout */
  align-items: center; /* Center items vertically */
  justify-content: space-between; /* Space between text and image */
  margin-top: 20px; /* Add some top margin */
}

.texts {
  flex: 1; /* Allow texts to take available space */
  padding-right: 20px; /* Space between text and image */
}

.image {
  flex: 0 0 30%; /* Set image container to 25% width */
}

.image10 img {
  width: 25%; /* Make image fill the container */
  height: auto; /* Maintain aspect ratio */
}
.image10 img {
  width: 380px; /* Set the width */
  height: 380px; /* Maintain height */
  margin-right: 50px; /* Set margin */
}

.image10 img:last-child {
  margin-right: 0; /* Remove margin for the last image */
}
@media (max-width: 480px) {
  .projects-container {
    display: flex;
    flex-direction: column; /* Stack text and image vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
    padding: 10px; /* Add some padding */
  }

  .texts {
    margin-bottom: 15px; /* Space below the text */
  }

  .image10 img {
    width: 100%; /* Make the image full width of the container */
    height: auto; /* Maintain aspect ratio */
  }
}





/*** REVIEWS ***/
.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: flexbox;
  -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: 0.5rem;
}
.reviews .slide .user .stars i {
  font-size: 1.4rem;
  color: var(--yellow);
}


/*** BLOG ***/
.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: 0.2s linear;
  transition: 0.2s linear;
}

.blogs .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  background: #c7ecc9;
  -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;
}
@media (max-width: 768px) {
  .blogs .slide {
    width: 100%; /* Full width on smaller screens */
    margin-bottom: 2rem; /* Space between slides */
  }

  .blogs .slide .image {
    height: 20rem; /* Adjust image height */
  }

  .blogs .slide .content h3 {
    font-size: 1.5rem; /* Smaller heading */
  }

  .blogs .slide .content p {
    font-size: 1.2rem; /* Smaller paragraph text */
  }
}


.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;
}
/*** GALLERY ***/
.galleries {
  background: var(--light-bg);
}

.gallery-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.gallery{
  width: 950px;
  display: flex;
  overflow-x: scroll;
}
.gallery div{
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 20px;
  padding: 10px;
  flex: none;
}
.gallery div img{
  width: 100%;
}
.gallery div img:hover{
  cursor: pointer;
  transform: scale(1.1);
}
.gallery::-webkit-scrollbar{
  display: none;
}

/*** FOOTER ***/
.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #22422a;
    padding: 50px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.foo-col{
  color: #fff;
  
  position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:132px;
	bottom: -10px;
	background-color: var(--yellow);
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}
.footer-bottom {
  text-align: center; /* Center the text */
  padding: 1rem 0; /* Padding for spacing */

  color: #fff; /* Text color */
  font-size: 1.2rem; /* Font size */
}
.footer-bottom a {
  color: #fff; /* Change link color to red */
  text-decoration: none; /* Remove underline */
}

.footer-bottom a:hover {
  text-decoration: underline; /* Underline on hover */
}
@media (max-width: 480px) {
  .footer .container {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
  }

  .footer-logo, .footer-col {
    width: 100%; /* Full width for all footer elements */
    text-align: center; /* Center text */
    margin-bottom: 15px; /* Space between sections */
  }

  .footer-bottom {
    font-size: 12px; /* Smaller font size for copyright */
  }

  .social-links a {
    margin: 0 5px; /* Less space between social icons */
  }

  iframe {
    width: 100%; /* Responsive map */
    height: 150px; /* Set a specific height */
  }
}



.end-text{
    text-align: center;
    padding-top: 50px;
    color: white;
}

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

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 0rem 2rem;
  }
  .header #menu-btn {
    display: inline-block;
  }
  @media (max-width: 991px) {
    .header {
        position: relative; /* Ensure parent is positioned */
    }
  }

    .navbar {
        position: absolute;
        top: 100%; /* Adjust to bring it fully into view */
        left: 222px; /* Adjust as needed */
        right: 0; /* Adjust as needed */
        background: #c7ecc9;
        border-top: var(--border);
        border-bottom: var(--border);
        clip-path: none; /* Remove or adjust clip path */
        -webkit-transition: 0.2s linear;
        transition: 0.2s linear;
        z-index: 1; /* Bring it to the front */
    }
    .navbar {
      display:inherit; /* Initially hidden */
  }
  
  /* .navbar.active {
      display: block; /* Show when active */
  } */

  .icons {
    cursor: pointer; /* Change cursor to pointer for menu button */
}
  


  .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%);
  }
  .header .navbar a {
    display: block;
    margin: 2rem;
  }

@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;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .about .row .content h3 {
    font-size: 2.5rem;
  }
}

.navbar {
  display: flex;
  background-color:#c7ecc9;
}

.navbar a {
  padding: 3px 15px;
  color: white;
  text-decoration: none;
  text-align: center;
}

.navbar a:hover {
  background-color: #575757;
}

.dropdown {
  position: relative;
  display: inline-block; /* Ensure it's inline */
}

.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: black;
  padding: 12px 12px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color:#575757;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align items to the left */
  }

  .navbar a {
    width: 100%; /* Make links full width */
    text-align: left; /* Align text to the left */
    padding: 10px 15px; /* Adjust padding for a better look */
  }

  .dropdown-content {
    position: static; /* Change position for dropdown */
    width: 100%; /* Make dropdown content full width */
  }

  .dropdown-content a {
    text-align: left; /* Align dropdown links to the left */
  }
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
  .blogs .heading {
    font-size: 2rem; /* Smaller heading for mobile */
  }

  .blogs .swiper-wrapper {
    width: 100%; /* Make the swiper wrapper full width */
  }

  .blogs .swiper-slide {
    width: 297%; /* Full width for each slide */
    margin-bottom: 2rem; /* Space between slides */
  }

  .blogs .content h3 {
    font-size: 1.5rem; /* Smaller heading size */
  }

  .blogs .content p {
    font-size: 1rem; /* Smaller paragraph size */
  }

  .blogs .image {
    height: 20rem; /* Adjust image height */
  }
}

/* Media Query for Extra Small Screens */
@media (max-width: 480px) {
  .blogs .content h3 {
    font-size: 1.2rem; /* Even smaller heading size */
  }

  .blogs .content p {
    font-size: 0.9rem; /* Smaller paragraph size */
  }

  .blogs .image {
    height: 15rem; /* Further reduce image height */
  }
}



/* Media Query for Small Screens */
@media (max-width: 768px) {
  .reviews .heading {
    font-size: 2rem; /* Smaller heading for mobile */
  }

  .reviews .swiper-slide {
    padding: 1.5rem; /* Less padding on mobile */
  }

  .reviews .swiper-slide p {
    font-size: 1.2rem; /* Smaller review text */
  }

  .reviews .user img {
    width: 40px; /* Smaller profile picture */
    height: 40px;
  }

  .reviews .info h3 {
    font-size: 1rem; /* Smaller user name size */
  }
  .reviews .swiper-slide {
    width: 297%; /* Full width for each slide */
    margin-bottom: 2rem; /* Space between slides */
  }

}


/* contact form */


/* 
nav bar */

.header .navbar {
  display: flex; /* Default display for larger screens */
}

@media (max-width: 768px) {
  .header .navbar {
      display: none; /* Hide navbar on mobile by default */
      flex-direction: column; /* Stack items vertically */
      position: absolute; /* Position it absolutely to cover the screen */
      top: 100px; /* Adjust based on header height */
      left: 0;
      background:#c7ecc9; /* Background for the dropdown */
      width: 100%;
      z-index: 1000; /* Ensure it's above other content */
  }

  .header .navbar.active {
      display: flex; /* Show navbar when active */
  }

  .header .icons {
      display: flex;
      align-items: center;
  }
}


/* gallery */
.row-column {
  display: -ms-flexbox; /* IE 10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE 10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create two equal columns that sits next to each other */
.column {
  -ms-flex: 23%; /* IE 10 */
  flex: 23%;
  padding: 0 4px;
}
@media (max-width:767px){
    .column {
  -ms-flex: 100%; /* IE 10 */
  flex: 100%;
  padding: 0 4px;
}
}

@media (min-width:767px) and (max-width:967px){
    .column {
  -ms-flex: 48%; /* IE 10 */
  flex: 48%;
  padding: 0 4px;
}
}
.column img {
  margin-top: 8px;
  vertical-align: middle;
}
.contentcolor{
 background:var(--light-bg);
 color:var(--light-color);
 
 box-shadow: -6px -5px 0rem 0px rgba(0, 0, 0, 0.2)
}

.contentcolor h2{
  font-size: 16px;
  color: black;
}
@media (max-width: 768px) {
  #p1{
    height: 300px;
  }}
       /*img{
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        height: auto;
    }*/
    .pdf-section {
      text-align: center;
      margin: 30px 0;
  }
  /*.pdf-heading {
      font-size: 1.75rem;
      color: #6ab04c;
      margin-bottom: 15px;
  }
  .pdf-container {
      border: 2px solid #ccc;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }*/
  .list-group-item, table{
    font-size: 16px;
   font-weight: bold;
  }
  span{
color: green;
  }
  table td.td{
    color: green;
  }
  h1{
    color: green;
    padding: 10px;
  }
  @media (min-width:1025px) { .footer-col{width: 25%;} }
@media (min-width:1281px) {.footer-col{width: 25%;} }
@media (max-width: 480px) {

#abt1,#abt2,#abt3,#abt4,#abt5,#abt6{
  margin-left: -186px;

}
}
     /*img{
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        height: auto;
    }*/
    .pdf-section {
      text-align: center;
      margin: 30px 0;
  }
  
  .list-group-item, table{
    font-size: 16px;
   font-weight: bold;
  }
  span{
color: green;
  }
  table td.td{
    color: green;
  }
  h1{
    color: green;
    padding: 10px;
  }

  @media (max-width: 480px) {
.table{
  font-size: 12px;


}

#abt1,#abt2,#abt3,#abt4,#abt5,#abt6{
  margin-left: -186px;

}
}
@media (min-width:1025px) { .footer-col{width: 25%;} }
@media (min-width:1281px) {.footer-col{width: 25%;} }







.about-text{
  margin-top: 30px;

}



/* Hide menu by default on mobile */
#toggleElement {
  display: none;
}

/* Show when active */
#toggleElement.active {
  display: block;
}

/* Optional: style the menu for mobile */
@media (max-width: 768px) {
  .head-main.navs {
    flex-direction: column;
  }

  #toggleElement ul {
    flex-direction: column;
    padding: 0;
    margin: 10px;
  }

  #toggleElement ul li {
    list-style: none;
    margin: 10px 0;
  }

  .menubar {
    display: block;
    cursor: pointer;
  }

  .menubar span {
    display: block;
    width: 25px;
    height: 3px;
    /* background-color: white; */
    margin: 4px 0;
  }
}

/* Optional: show full menu on desktop */
@media (min-width: 769px) {
  #toggleElement {
    display: block !important;
  }

  .menubar {
    display: none;
  }
}
