
*{
    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;
  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;
}
}


/***** 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;
  color: #fff;
}
.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;
}





/* Admin Login */
 .admin-form {
    height: 100vh;
    display: flex;
    align-items: center;
}
.form-wrapper {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: auto;
    width: 100%;
}
.form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.login-form h2{
    font-weight:bold;
    text-align:center;
    font-size:25px;
    color:#5a6949;
    margin-bottom:20px;
}
.form-field {
    margin-bottom: 20px;
}
.form-field input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.form-field-btn input {
    width: 100%;
    padding: 10px;
    background: #1d7227;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}
.form-field-btn input:hover {
    background: #155c1e;
}
.form-image {
    height: 100%;
}
.logo-img{
    text-align:center;
}
.logo-img img{
    background-color:#3A4330;
    padding:10px;
    width:80%;
    margin-bottom:20px;
}
    
    
/* Dashboard */
 .dashboard {
  height: 100vh;
  display: flex;
  padding-top:80px;
}
.sidebar {
  width: 320px;
  background-color: #1d7227;
  color: white;
  padding: 30px 20px;
}
.sidebar h4 {
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
  font-style: italic;
  font-weight: bold;
  font-family: serif;
  font-size: 30px;
}
.sidebar a {
  display: block;
  color: white;
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 30px;
  border-bottom:1px solid #fff;
  font-size:18px;
}
.sidebar a.active,
.sidebar a:hover {
  background-color: #14541d;
}
.content {
  flex-grow: 1;
  padding: 40px 50px 40px 50px;
  background-color: #f4f4f4;
  overflow-y: auto;
}
.form-section {
  display: none;
}
.form-section h3{
   font-size:18px;
   font-weight:bold;
   margin-bottom:20px;
}
.form-section.active {
    display: block;
}
/*.form-section input, .form-section textarea, .form-section select{*/
/*    width:80%;*/
/*}*/
.menu-link.active {
    font-weight: bold;
}
.form-label {
    margin-bottom: 10px;
}
.gallery_table{
  margin-top:30px;
}
    
    
@media screen and (max-width: 768px) {
  .dashboard {
    flex-direction: column;
    padding-top: 70px !important;
  }
  .sidebar {
    width: 100% !important;
  }
  .content {
    width: 100% !important;
    padding: 15px !important;
  }
  .form-image{
    display:none !important;
    }
}


/***** Blogs *****/
.blog-banner{
  margin-top: 50px;
  height:30vh;
  background-color:#58884c;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; 
}
.blog-sec h2{
  color:#fff;
  font-size:35px;
  font-weight: bold;
}
.blog-content{
  margin-top:50px;
  height:100%;
  margin-bottom:30px;
}
.blog-card h3, h2{
  color:#5a6949;
  font-size:25px;
  font-weight:bold;
}
.blog-card p{
  color:#7a7f75;
  font-size:17px;
  margin-bottom:10px;
}
.blog-card a{
  color:#5a6949;
  font-size:18px;
}
.blog-card1 div{
  margin-bottom:30px;
}
.blog-card1 a{
  background-color:#5a6949;
  padding:10px;
  border-radius:10px;
  color:#fff;
  text-decoration: none;
}
.blog-card1 h2{
  font-size:20px;
  font-weight:bold;
  color:#5a6949;
}
.blog-card1 h1, h3, h4, h5, h6{
  font-size:18px;
  font-weight:bold;
  color:#5a6949;
}
.blog-cnt-content p{
  font-size:16px;
  color:#212529c7;
  margin-bottom:5px;
  text-align:justify;
}
.blog-detail {
   padding-top:130px !important;
   padding-bottom:50px !important;
}
.blog-cnt-image img{
  width:100%;
}


/***** 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;
}


@media screen and (max-width: 767px) {
 .footer .col {
    flex: 1 0 30% !important;
    margin-bottom: 15px;
}


}

@media only screen and (min-width: 768px) and (max-width: 991px)  {
.footer .col {
    flex: 1 0 30% !important;
    margin-bottom: 15px;
}
}


.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.glightbox-button svg { display: none !important; }

.glightbox-button-prev::after,
.glightbox-button-next::after {
    font-size: 32px;
    font-weight: bold;
    color: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: Arial, sans-serif;
}

.glightbox-button-prev::after {
    content: "<";
    left: 10px;
}

.glightbox-button-next::after {
    content: ">";
    right: 10px;
}
