@font-face {
	font-family: "bt";
	src: url("../fonts/Aspekta-400.ttf"); /* IE9 Compat Modes */  
	font-weight: normal;
	font-style: normal;
  }
.pro{
	border-radius: 10px;
    position: relative;
    /* border: 2px solid #eeeded; */
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0px 0px 9px 0px #ccc;
}
.button {
  background-color: white;
  border: none;
  color: black;
  padding:0px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
	font-family: "bt";
}

.button1 {
	border: 2px solid #04AA6D;
	border-radius: 5px;
	
}

.button1:hover {
  background-color: #04AA6D;
  color: white;
}
/*products*/
.probox{
	padding: 15px;
    border-radius: 15px;
    box-shadow: 0px 0 2px 2px #ededed;
    width: 100%;
    margin: auto;
    margin-top: 22px;
}
.cr img{
	text-align: center;
	
	margin: auto;
}
.tbm{
	margin-top: 45px;
	padding-bottom: 15px;
}
.boxa {
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    height: auto;
    margin: auto;
    box-shadow: -1px -1px 9px 2px #ccc;
	margin-bottom: 15px;
}
.hdtext {
    text-align: center;
    color: #195800;
    margin-bottom: 15px;
    margin-top: 15px;
    font-weight: 700;
    font-size: 16px;
}
/*enb*/

/*new section*/
.headbg{

  width: 100%;
  height: auto;
  top: 0;
}
.house{
background-image: url(../img/home/house.png);
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
    width: 100%;
    height: auto;
    margin: auto;
    background-position: center;
    top: -12px;
    line-height: 30px;
    /* padding-bottom: 35px; */
    margin-bottom: 35px;
}
.bannerbg{
 background-image: url(../img/home/sliderbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  padding: 15px;
}

/*end*/
/*slider*/

        /* Responsive Slider Container */
     .slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 331px;
    margin: 11px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #000;
}

        .slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Keeps image proportions intact */
            display: block;
        }

        /* Text Overlay */
        .slide-content {
            position: absolute;
            bottom: 40px;
            left: 40px;
            right: 40px;
            max-width: 500px;
            color: #ffffff;
            background: rgba(0, 0, 0, 0.65);
            padding: 20px;
            border-radius: 6px;
            backdrop-filter: blur(4px);
        }

        .slide-content h2 {
            margin-bottom: 8px;
            font-size: 24px;
        }

        .slide-content p {
            font-size: 15px;
            line-height: 1.4;
            opacity: 0.9;
        }

        /* Navigation Dots */
        .dots-container {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .dot {
            width: 10px;
            height: 10px;
            background-color: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background-color: #ffffff;
            width: 24px;
            border-radius: 5px;
        }

        /* RESPONSIVE BREAKPOINT FOR MOBILE */
        @media (max-width: 768px) {
            .slider-container {
                height: auto; /* Allow layout to expand naturally */
                display: flex;
                flex-direction: column;
                border-radius: 0; /* Full width looks better on mobile */
            }

            .slides {
                height: 250px; /* Fixed height just for the image area on mobile */
            }

            /* Move text box BELOW the image on mobile so it doesn't block the visual */
            .slide-content {
                position: relative;
                bottom: 0;
                left: 0;
                right: 0;
                max-width: 100%;
                color: #333333;
                background: #ffffff;
                padding: 20px;
                backdrop-filter: none;
            }

            .slide-content h2 {
                font-size: 20px;
            }

            /* Move dots into the image frame area */
            .dots-container {
                top: 225px; 
                bottom: auto;
            }
        }

/*end*/
   @media (max-width: 600px) {
.bannerbg {
    background-image: url(../img/home/sliderbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 15px;
    margin-top: 14px;
}
}
.footerbg{
    background-image: url(../img/home/footerbg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding: 150px 0px 150px 0px;
}

        /* --- SERVICES SECTION (Scroll-triggered Animation Placeholder) --- */
         /* --- DESIGN SYSTEM (Two-Color Palette) --- */
        :root {
            --primary: #4A6B53;       /* Sage Green */
            --secondary: #FAF6F0;     /* Warm Cream */
            --text-dark: #2C3E31;     /* Dark Green-Gray for readability */
            --white: #FFFFFF;
        }

        /* --- RESETS & BASE STYLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #fff;
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* --- ANIMATIONS --- */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes imageReveal {
            from {
                opacity: 0;
                transform: scale(1.05);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

       
       

        /* --- HERO BANNER SECTION --- */
        

        /* --- SERVICES SECTION (Scroll-triggered Animation Placeholder) --- */
      
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card {
     background: #ffffff;
    padding: 8px 0px 0px 0px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    font-size: 16px;
    width: 100%;
    margin: auto;
    font-weight: 600;
    line-height: 34px;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }

      
        /* --- RESPONSIVE DESIGN --- */
        .contus{
            font-family: 'Courier New', Courier, monospace;
            font-size: 15px;
            padding-bottom: 25px;
            text-align: center;
        }
        .subcon{
            text-align: center;
            font-size: 12px;
        }
        .subcon h3{
            text-align: center;
            font-size: 12px;
        }
         @media (max-width: 600px) {
.footerbg{
    background-image: url(../img/home/footerbg.jpg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom;
    padding: 50px 0px 50px 0px;
    background-position: right;
  
    position: relative;
}

         }
         .welcom{
    text-align: center;
    padding-top: 25px;
    font-size: 17px;
    color: #bb3c01;
}
.welcomhtext{
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}
.imgcr{
    text-align: center;
    margin: auto;
    width: 100%;
}
/*button*/
.custom-btn {
  /* Layout & Sizing */
  display: inline-block;
    padding: 8px 8px;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    color: #ffffff;
    background-color: #2ab17f;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin: 10px 0px 10px 0px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: auto;
    margin-top: 5px;
    margin-bottom: 25px;
    width: 100%;

}

/* Hover State */
.custom-btn:hover {
  background-color: #067049; /* Darker Blue */
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Active/Click State */
.custom-btn:active {
  transform: translateY(0); /* Pushes back down on click */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Focus State (For Accessibility) */
.custom-btn:focus {
  outline: 3px solid rgba(0, 123, 255, 0.5);
  outline-offset: 2px;
}

/*end*/