:root {
    --primary: #34AD54;
    --secondary: #FF9933;
    --light: #F6FFF2;
    --dark: #263A4F;
}

.btn {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
    padding: 30px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    background: var(--secondary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.bg-hero {
    background: url(../img/carousel-1.jpg) top right no-repeat;
    background-size: cover;
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.bg-vegetable {
    background: linear-gradient(rgba(52, 173, 84, .2), rgba(52, 173, 84, .2)), url(../img/bg-leaf.png) bottom right no-repeat;
    background-size: contain;
}

.bg-fruit {
    background: linear-gradient(rgba(255, 153, 51, .2), rgba(255, 153, 51, .2)), url(../img/fruit.png) bottom right no-repeat;
    background-size: contain;
}

.service-item {
    box-shadow: 0 0 45px #EDEDED;
    transition: .5s;
}

.about i,
.service-item i {
    background-image: linear-gradient(var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: .5s;
}

.service-item:hover {
    color: var(--light);
    background: var(--primary) !important;
}

.service-item:hover i {
    background-image: linear-gradient(var(--light), var(--secondary));
}

.service-item:hover h4 {
    transition: .5s;
}

.service-item:hover h4 {
    color: var(--light);
}

.product-item {
    padding: 0 30px 30px 30px;
}

.product-item .btn-action {
    position: absolute;
    width: 100%;
    bottom: -40px;
    left: 0;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .btn-action {
    bottom: 0;
    opacity: 1;
}

.product-item h5 {
    transition: .5s;
}

.product-item:hover h5 {
    opacity: 0;
}

.product-carousel::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 55%;
    bottom: 0;
    left: 0;
    background: url(../img/bg-product-1.png) left bottom no-repeat, url(../img/bg-product-2.png) right bottom no-repeat;
    background-size: contain;
    background-color: var(--primary);
    z-index: -1;
}

.product-carousel .owl-nav {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next{
    position: relative;
    width: 55px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    color: var(--secondary);
}
.bg-testimonial {
    background: url(../img/pexels-pradeep-weragoda-1347908084-26576014.jpg) top center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(52, 173, 84, 0.7);
    padding: 2rem;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.testimonial-item {
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
}

.testimonial-img {
    width: 120px;
    height: 120px;
    border: 5px solid #6c757d;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-hr {
    width: 25%;
    margin: 1rem auto;
    border-top: 2px solid #fff;
}

.testimonial-name {
    font-size: 1.25rem;
    margin: 0;
}

/* Owl Carousel Nav Fix */
.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    background: #fff;
    color: #34ad54;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.3s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #ffc107;
}



.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.2);
}

.blog-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(52, 173, 84, 0), rgba(52, 173, 84, 1));
    z-index: 1;
}

.bg-footer {
    background: linear-gradient(rgba(52, 173, 84, .7), rgba(52, 173, 84, .7)), url(../img/footer.png) center bottom no-repeat;
    background-size: contain;
}

@media (min-width: 991.98px) {
    .bg-footer {
        margin-top: 90px !important;
    }
}

.gradient-icon {
    background: linear-gradient(45deg, #FF8C00, #32CD32); /* Orange to Green Gradient */
    -webkit-background-clip: text;
    color: transparent;
    font-size: 40px; /* Adjusted icon size */
  }
  

 /* Text color */

 .white-text {
    color: white;
    text-decoration: none; /* Removes underline */
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}







/* Glow */

/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,100,900&display=swap');

@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
} */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* 
body {
  font-family: 'Poppins', sans-serif;
  color: #f9f6ef;
} */

.container-num1 {
    font-size: clamp(2rem, 5vw + 1rem, 2.5rem);
    padding: 60px 0; /* Add some padding instead of full height */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f9f6ef;
  }
  

.card-num2 {
  width: 450px;
  height: 129px;
  /* padding: 8px; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: .7rem;
  position: relative;
  background: #1f2020;
}

.card-num2 span {
  font-size: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-family:  Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  justify-content: center;
  background-image: linear-gradient(
        var(--rotate),
        #ffffff, 
        #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: spin 2.5s linear infinite;
}

.card-num2:after {
  content: '';
  position: absolute;
  border-radius: 1rem;
  inset: -4px;
  background: linear-gradient(
        var(--rotate),
        #fe9c0f, 
        #3e8102);
  z-index: -1;
  animation: spin 2.5s linear infinite;
}

.card-num2:before {
  content: '';
  position: absolute;
  border-radius: 1rem;
  left: 0;
  top: 10%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
        var(--rotate),
        #f3f2ef, 
        #A5282c);
  z-index: -2;
  filter: blur(5rem) opacity(.6);
  transform: scale(0.8);
  animation: spin 5s linear infinite;
}

@keyframes spin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}


.display_kamatha{
    width: 200px;
    font-size: 80px;
}

.download {
  text-align: center;
  padding: 50px 20px;
  font-family: 'Arial', sans-serif;
}

.download-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #263A4F;
  position: relative;
}

.download-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  margin: 10px auto 0;
  border-radius: 5px;
  background: #3e8102;
  animation: glow 2s infinite alternate;
}

.download-options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Base option */
.download-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  width: 150px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Platform colors and glow */
.download-option.android {
  background: linear-gradient(45deg, #A8E063, #56AB2F);
  box-shadow: 0 0 20px rgba(86, 171, 47, 0.7);
}

.download-option.ios {
  background: linear-gradient(45deg, #FF5F6D, #FFC371);
  box-shadow: 0 0 20px rgba(255, 99, 71, 0.7);
}

.download-option.github {
  background: linear-gradient(45deg, #434343, #000000);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

/* Hover animations */
.download-option:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 40px rgba(255,255,255,0.6);
}

.download-option::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  top: -50%;
  left: -50%;
  transform: rotate(0deg);
  transition: transform 0.5s;
  pointer-events: none;
  border-radius: 50%;
}

.download-option:hover::before {
  transform: rotate(180deg);
}

.download-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
}

.download-text {
  font-size: 18px;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-8px); }
}

@keyframes glow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}