@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');

/********** Template CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
    font-family: 'Libre Baskerville';
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 700 !important;
    font-family: 'Josefin Sans';
    
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
    font-family:'Josefin Sans' ;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
/*.navbar {
    height: 80px;
    padding: 10px 0;
    border-block: 1px solid #0F4229;
}
.navbar.sticky-top {
    top: 0px;
    transition: .5s;
}


.navbar a.btn {
    height: 100px
}

.navbar .navbar-brand {
    height: 80px;
    display: flex;
    align-items: center;
    padding:10px 0;
}

.logo-img {
    height: 100px;
    width: auto;
    margin-left:2in;
    margin-top:20px;
}*/

/*.navbar .navbar-brand .logo-img{
    width:150px !important;
    height:120px !important;
    margin-left:2in;
    margin-top:30px;
    object-fit: contain;
}*/

/*.navbar .navbar-nav{
    padding:50px 0;
}
.navbar .navbar-nav .nav-link {
    padding: 35px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
    margin-right: 60px;
    line-height: 80px; 
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}*/

/*.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}*/

 .topbar {
            background: #0d6efd;
            color: #fff;
            font-size: 14px;
            padding: 5px 0;
        }

/***** Navbar *****/
.navbar {
    height: 90px;
    transition: 0.4s;
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand h1{
    font-family: 'Josefin Sans';
    font-weight: 600;
    padding: 25px 5px;
    font-size:25px;
}

.logo-img {
    height: 80px;
    width: auto;
    margin-left:2in;
}

.navbar-nav .nav-link {
    padding: 0 15px;
    line-height: 90px;
    font-weight: 500;
    color: #000;
    margin-right:30px;
}

.navbar-nav .nav-link:hover {
    color: #348E38;
}

/***** Sticky Effect *****/
.sticky-top {
     box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel{
    position:relative;
    top:0px;
    height:500px;
}
.carousel-item{
    height:500px !important;
}
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, .6);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 350px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .logo-img {
        margin-left:-15px;
        height: 40px;
        width: auto;
    }
    .navbar-nav .nav-item{
        line-height:1.25rem;
        border-bottom: 1px dotted #B7BDA9;
    }
    .product1-image-wrap img {
        width: 100%;
        height: 250px;
    }

}




.page-header {
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/p-8.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}

.page-subheader {
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/sub2.jpg) center center no-repeat;
    background-size: cover;
    height:150px;
}

/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 66, 41, .6);
}

.facts {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://tag.rightklicknews.com/bijapur/assets/img/ban4.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 400px;
}

/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
    font-family: 'Poppins';
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: .3s;
    padding:20px;
    height:400px;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
    
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.portfolio-inner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*** Team ***/
.team-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 10px;
    transition: 0.3s;
    height: 100%;
}


.team-item img {
    width: 100%;
    height: 290px;
  
}

.team-item .team-text {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: #fff;
    opacity: 1;
    text-align: center;
}

.team-item .team-text h4 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-item .team-text p {
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    color: var(--primary);
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #072A19;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: var(--primary);
}

.bg-dark{background-color:#0F4229 !important;}

.text-primary{color:#065839;}

.bg-light{background-color:#edf2ef !important;}

.ach{text-decoration:none;color:#fff}

.text-primary {
    color: #348E38 !important;
}

.display-1 {
    font-size: calc(.75rem + 1vw);
    font-weight: 300;
    line-height: 1.5rem;
}

.display-3 {
    font-size: calc(1rem + 1.25vw);
    font-weight: 300;
    line-height: 1.2;
}

.display-4 {
    font-size: calc(.5rem + 1vw);
    font-weight: 300;
    line-height: 1.2;
}

.display-5 {
    font-size: calc(.5rem + 1vw);
    font-weight: 300;
    line-height: 1.2;
}

.subhead{
    font-size: 19px;
    font-weight: 500;
    color:#CC0000;
    font-family: 'Josefin Sans';
    padding:10px 0;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: justify;
    font-size:17px;
    line-height:1.95rem;
}

ol,ul{padding-left:2rem;}
ol,ul,dl{margin-top:0;margin-bottom:1rem}
ol ol,ul ul,ol ul,ul ol{margin-bottom:0}
dt{font-weight:700}
dd{margin-bottom:.5rem;margin-left:0}

ol li,ul li{text-align:justify;line-height:1.75rem}

.circle-list {
    list-style: none;
    padding-left: 0;
}

.circle-list li {
    position: relative;
    padding-left: 30px;
}

.circle-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #CC0000; /* Bootstrap primary */
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.fancy-list {
    list-style: none;
    padding-left: 0;
}

.fancy-list li {
    position: relative;
    padding-left: 25px;
}

.fancy-list li::before {
    content: "✔"; /* You can use emoji, symbol, or text */
    position: absolute;
    left: 0;
    color: green;
    font-weight: bold;
}

.multi-bullets {
    list-style: none;
    padding-left: 0;
}

.multi-bullets li {
    position: relative;
    padding-left: 30px;
}

.multi-bullets li:nth-child(3)::before {
    content: "➤";
    color: #CC0000;
}

.multi-bullets li::before {
    position: absolute;
    left: 0;
    font-weight: bold;
}

.table th, .table td{padding-left:15px;}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    transition: transform 0.4s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/*.gallery-item:hover img {
    transform: scale(1.1);
}*/

.gallery-img {
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
.gallery-img:hover {
    transform: scale(1.05);
}

#modalImage {
    width: 100%;
    max-height: 80vh;      /* large view */
    object-fit: contain;   /* full image visible */
}

.contact-section {
    padding: 60px 0;
}
.contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.contact-info i {
    color: #0d6efd;
    margin-right: 10px;
}
.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
}
.btn-custom {
    background: #0d6efd;
    color: #fff;
}
.btn-custom:hover {
    background: #084298;
}

.custom-img {
  border: 3px solid #edf2ef;
  border-radius: 15px;
  padding: 5px;
  transition: all 0.3s ease;
}

.custom-img:hover {
  border-color: #28a745;
  transform: scale(1.05);
}

.custom-bullets-3 {
    list-style: none;
    padding-left: 0;
}

.custom-bullets-3 li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #fff;
}

.custom-bullets-3 li::before {
    content: "➤";
    color: #BACC81;
    position: absolute;
    left: 0;
}

.custom-bullets-2 {
    list-style: none;
    padding-left: 0;
}

.custom-bullets-2 li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    
}

.custom-bullets-2 li::before {
    content: "➤";
    color: #CC0000;
    position: absolute;
    left: 0;
}

.icon-list {
  list-style: none;
  padding-left: 0;
}

.icon-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color:#fff;
}

.icon-list li::before {
  content: "\f058"; /* check-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #EBF094;
}

.multi-bullets-2,
.multi-bullets-2 ul {
    list-style: none;
    padding-left: 25px;
}

.multi-bullets-2 li {
    position: relative;
    margin-bottom: 8px;
}

/* Level 1 - Check */
.multi-bullets-2 > li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: -25px;
}

/* Level 2 - Arrow */
.multi-bullets-2 ul > li::before {
    content: "➤";
    color: #478C5C;
    position: absolute;
    left: -20px;
}

/* Level 3 - Small Dot */
.multi-bullets-2 ul ul > li::before {
    content: "•";
    color: #6c757d;
    position: absolute;
    left: -18px;
}

.service1-item  {
    background: #FFFFFF;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: .3s;
    padding:20px;
    border:2px solid #0F4229;
}

.circle-img {
  width: 100%;
  
  padding:10px;
  border-radius: 50%;
  /*object-fit: cover;   /* prevents stretching */
  border: 2px solid #28a745; /* optional border */
}

.img-stack {
  position: relative;
  width: 100%;
}

.img-stack .img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.img-top {
  position: relative;
  z-index: 2;
  transform: rotate(-5deg);
}

.img-bottom {
  position: absolute;
  top: 200px;
  left: 50px;
  transform: rotate(15deg);
}

.vertical-stack img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.fancy-img {
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.fancy-img:hover {
  transform: scale(1.05);
}

.social-float{
    position: fixed;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 999;
}

.social-float a{
    display: block;
    width: 45px;
    height: 45px;
    margin: 8px 0;
    text-align: center;
    line-height: 45px;
    color: #fff;
    /*border-radius: 50%;*/
    font-size: 18px;
    transition: 0.3s;
}

/* Colors */
.social-float .whatsapp{ background: #25D366; }
.social-float .facebook{ background: #3b5998; }
.social-float .instagram{ background: #E4405F; }
.social-float .youtube{ background: #D13704; }

/* Hover effect */
.social-float a:hover{
    transform: scale(1.1);
}

.border-bullets {
  list-style: none;
  padding-left: 0;
}

.border-bullets li {
  padding-left: 15px;
  border-left: 4px solid #28a745;
  margin-bottom: 10px;
  background: #f8f9fa;
  padding: 8px 10px;
  border-radius: 5px;
}

.navbar-toggler {
    padding: 2px 5px;
    margin-top:0px;
}

.navbar-toggler-icon {
    width: 15px;
    height: 15px;
}

.navbar-light .navbar-collapse {
    background-color: #fff;
}

.portfolio1-inner {
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: .3s;
    border-radius: 10px;
    
    height: auto !important;
}

/* image area */
.product-image-wrap {
    height: auto;
      min-height: 260px;         /* optional */
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f8f9fa;
      padding: 12px;
}

.portfolio1-inner img,
.product-image-wrap img{
  width: 100%;
  height: auto !important;   /* key for full image */
  max-height: 100%;
  object-fit: contain !important;
  display: block;
}

/* product name always visible */
.product-info {
    text-align: center;
    background: #fff;
}

.product-info h5 {
    font-weight: 600;
    color: #1f1f1f;
    margin: 0;
}

/* hover overlay */
.portfolio1-inner::before,
.portfolio1-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 56px); /* exclude product name strip */
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
    z-index: 1;
}

.portfolio1-inner::after {
    left: auto;
    right: 0;
}

.portfolio1-inner:hover::before,
.portfolio1-inner:hover::after {
    width: 50%;
}

.portfolio1-inner .portfolio-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 56px);  /* overlay only image area */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transition: .5s;
}

.portfolio1-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio1-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio1-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.product1-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
    width:95%;
}

.product1-card:hover {
    transform: translateY(-5px);
}

.product1-image-wrap img {
    width: 100%;
    height: 450px;
    
}

.product1-info {
    padding: 15px;
}

.product1-info h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product1-info .btn {
    padding: 8px 20px;
    border-radius: 30px;
}