@charset "utf-8";
/* CSS Document */

body {
            font-family: 'Poppins', sans-serif;
            background-color: #fcfbf9;
            color: #333;
        }
        /* Custom Colors */
        .bg-brand-dark { background-color: #0b3b24; }
        .text-brand-dark { color: #0b3b24; }
        .bg-brand-gold { background-color: #cfa144; color: #fff; }
        .text-brand-gold { color: #cfa144; }
        .btn-brand-dark { background-color: #0b3b24; color: #fff; border: 1px solid #0b3b24; }
        .btn-brand-dark:hover { background-color: #082919; color: #fff; }
        
        /* Top Bar */
        .top-bar { font-size: 0.85rem; padding: 5px 0; }
        .top-bar a { color: white; text-decoration: none; /*margin-right: 15px;*/ height: 35px; }
        .social-icons a { font-size: 1.1rem; margin-left: 10px; }
        
        /* Navbar */
        .navbar-brand img { height: 50px; }
        .nav-link { font-weight: 600;
  color: #333 !important;
  margin: 0 10px;
  font-size: 16px;
   }
        .nav-link.active { border-bottom: 2px solid #0b3b24; color: #0b3b24; }
        .banner-slider{
		  background-size: cover;
          border-radius: 15px;
		}
        /* Hero Section */
        .hero-section {
            /*background: linear-gradient(to right, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0.2)), url(../images/b1.jpeg) */
			background:url(../images/banner1.jpg) no-repeat;
            background-size: cover;
            border-radius: 15px;
            padding: 160px 30px;
            position: relative;
        }
@media (max-width:992px) {
.hero-section {
            /*background: linear-gradient(to right, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0.2)), url(../images/b1.jpeg) */
			background:url(../images/banner1.jpg) no-repeat;
            background-size: cover;
            border-radius: 15px;
            padding: 55px 30px;
            position: relative;
        }
}		
        .hero-title { font-size: 3rem; font-weight: 700; color: #0b3b24; line-height: 1.2; }
        .hero-subtitle { color: #cfa144; font-size: 2.5rem; font-weight: 700; }
        .feature-list i { color: #0b3b24; font-size: 1.5rem; }
        
        /* Achievers Section */
        .achiever-card { text-align: center; border: none; background: #fff; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); padding: 20px; }
        .achiever-img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; border: 3px solid #cfa144; margin-bottom: 10px; }
		.achiever-icon { 
		height:60px !important;
		width:60px !important;
		float: left;
		margin-right:8px;
		
		}
        .medal-icon { width: 40px; margin-bottom: 10px; }
        
        /* Products Sidebar */
        .product-sidebar { background-color: #f9f8f4; border-left: 1px solid #eaeaea; padding: 20px; }
        .product-card { border: none; border-radius: 10px; text-align: center; font-size: 0.85rem; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
        .product-card img { max-height: 225px; margin: 15px auto; }
        .product-card .card-title { font-weight: 600; color: #0b3b24; font-size: 1rem; }
        
        /* Footer */
        .footer { padding: 50px 0 20px; font-size: 0.9rem; }
        .footer h5 { color: white; font-weight: 600; margin-bottom: 20px; }
        .footer ul li a { color: #ccc; text-decoration: none; transition: 0.3s; }
        .footer ul li a:hover { color: #cfa144; }
        .footer .social-icons-footer a { color: white; margin-right: 15px; font-size: 1.2rem; }
		
		.d-flex {
  display: flex !important;
}

@media (max-width:992px) {
.d-flex {
  display: block !important;
}
}


    .page-banner {
    background: linear-gradient(rgba(11, 86, 33, 0.99), rgb(2, 39, 11)), url('images/banner.jpg'); /* apna image daalo */
    background-size: cover;
    background-position: center;
    padding: 60px 30px;
    color: #fff;
}
@media (max-width:992px) {
.page-banner {
padding: 20px 10px;
}
}
.page-title {
    font-size: 36px;
    font-weight: 600;
}

.breadcrumb-custom {
    font-size: 16px;
}

.breadcrumb-custom a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-custom span {
    color: #ddd;
}

.bg-green {
  --bs-bg-opacity: 1;
  background: linear-gradient(to top, #3f7818 , #104003);
}

.green-border {
  border-bottom: 4px solid #096516;
}
.orange-border {
  border-bottom: 4px solid #efab0c;
}
.blue-border {
  border-bottom: 4px solid #0874d1;
}
.purple-border {
  border-bottom: 4px solid #793cb6;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.product-card img {
    height: 220px;
   /* width: 100%;*/
    object-fit: cover;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card h5 {
    font-size: 18px;
}

.gallery-card {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-card:hover img {
    transform: scale(1.1);
}