:root{ --main-color: #016467; }
.counter{
    color: var(--main-color);
    background: var(--main-color);
    font-family: 'Bree Serif', serif;
    text-align: center;
    width: 180px;
    height: 100%;
    padding: 40px 10px 55px;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
.counter:before,
.counter:after{
    content:"";
    background: #fff;
    width: 100%;
    height: calc(100% - 20px);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    transform: translateX(-50%);            
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: -1;
}
.counter:after{
    background: var(--main-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: none;
    transform: translateX(0);    
    bottom: -12px;
    left: auto;
    right: -12px;
    z-index: -2;
}
.counter h3{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.counter .counter-value{
    font-size: 35px;
    font-weight: 600;
    line-height: 35px;
    display: block;
}
.counter .counter-icon{
    background: #fff;
    font-size: 30px;
    line-height: 58px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    position: absolute;
    bottom: -10px;
    right: -10px;
}

.marginTop{
 margin-top: 20%;
}

.marginLeft{
    margin-left: 2%;
}

.Director{
    width: 33%;
    margin-top: -20%;
    margin-left: 68%;
}

.planting{
 width: 120%;
 padding-right: 20%;
}

#quote{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* component list css */

/* List */
.list {
    counter-reset: index;  
    padding: 0;
    max-width: 300px;
  }
  
  /* List element */
  .listData {
    counter-increment: index; 
    display: flex;
    align-items: center;
    padding: 12px 0;
    box-sizing: border-box;
  }
  
  
  /* Element counter */
  .listData::before {
    content: counters(index, ".", decimal-leading-zero);
    font-size: 1.5rem;
    text-align: right;
    font-weight: bold;
    min-width: 50px;
    padding-right: 12px;
    font-variant-numeric: tabular-nums;
    align-self: flex-start;
    background-image: linear-gradient(to bottom, aquamarine, orangered);
    background-attachment: fixed;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  
  /* Element separation */
  .istData + .listData {
    border-top: 1px solid rgba(255,255,255,0.2);
  }
  

/* code ends */


/* code for contact session */
.contact-info {
    list-style: none; /* Remove bullets */
    padding: 0; /* Remove default padding */
}

.contact-info li {
    margin-bottom: 10px; /* Add some spacing between items */
}

.contact-info a {
    color: white; /* Change text color to white */
    text-decoration: none; /* Remove default underline */
    display: inline-block; /* Ensure proper alignment */
}

.contact-info a .icon {
    margin-right: 10px; /* Add some spacing between icon and text */
}
/* code ends */

#footer_logo{
    width: 61%;
    padding: 5%;
}


.counter.red{ --main-color: #FE0330; }
.counter.orange{ --main-color: #E75516; }
.counter.green{ --main-color: #639800; }
@media screen and (max-width:990px){
    .counter{ margin-bottom: 40px; }
    .Director{
        width: 86%;
        margin-top: -60%;
        margin-left: 15%;
    }
}  

@media screen and (max-width:400px){

    .project-wrap .text ul li{
        font-size: 13px;
    }
    
}





/* for text animation */
/* .animated-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: .15em solid orange; 
    animation: typing 3s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange; }
} */