:root {

  /* background color */
  --bg-primary-color: #E91E63;
  --bg-secondary-color: #e8e4f2;
  --bg-tertiory: #F3A51E;



  /* font color */
  --text-primary-color: black;
  --text-secondary-color: #E91E63;
  --text-tertiory-color: #e8e4f2;


  /* font fammily */
  --font-familly-primary: "Arya", sans-serif;
  --font-familly-secondary: "Poppins", sans-serif;


}
@media (max-width:997px) {
   
       .about-section {
    padding-top: 100px !important; /* for mobile */
    padding-bottom: 20px !important;
  }
}


.about-section {
    background-color: var(--bg-primary-color);
    /* height: 250px; */
}

.about-heading h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 100px; */
    color:var(--text-tertiory-color);
    font-weight: 700;
    font-size: 45px;
    font-family: var(--font-familly-primary);
}

.hero-heading h2 {
    color: var(--text-secondary-color);
    font-weight: 500;
    font-size: 60px;
    font-family: var(--font-familly-primary);
}


.para {
    font-size: 18px;
    line-height: 35px;
    font-family: var(--font-familly-secondary);
    text-align: justify;
}

.about-img img {
    height: auto;
    border-radius: 5px;
}

@media (max-width:997px) {
    .hero-heading h2 {
        font-size: 35px;
    }

    .para {
        font-size: 16px;

    }

}


/*------Mission Section---------*/

.about-mission {
    background-color: var(--bg-primary-color);
    height: auto;
    padding-bottom: 20px;
}

.mission-icon {
    background-color: var(--text-tertiory-color);
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.mission-icon i {
    font-size: 20px;
    color: var(--text-secondary-color);
}

.mission-para {
    color: var(--text-tertiory-color);
    line-height: 33px;
    font-size: 20px;
    font-family: var(--font-familly-secondary);
}

.mission-heading h2 {
    font-size: 40px;
    font-family: var(--font-familly-primary);
}

/*.heading-icon i{
    font-size: 30px;
    color: white;
}*/

@media (max-width:997px) {

    .mission-para {
        font-size: 18px !important;
    }

    .mission-heading h2 {
        font-size: 35px;
    }


}

/*-------Cards Section Starts------*/

.card {
    height: 180px !important;
    transition: transform 0.3s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.card:hover {
    transform: scale(1.05);
}

.card-body i {
    color: var(--text-secondary-color);
    font-size: 40px;
}

.card-title {
    font-family: var(--font-familly-secondary);

}

.card-text {
    font-family: var(--font-familly-secondary);

}

.card-main-heading {
    font-size: 50px;
    color: var(--text-secondary-color);
    font-weight: 600;
    font-family: var(--font-familly-primary);
}

@media (max-width:997px) {
    .card-main-heading {
        font-size: 35px;

    }

}


/*---banner Section-------*/
.banner-section {
    background-color: var(--bg-primary-color);
    height: auto;
    padding-bottom: 20px;
}

.banner-title {
    padding-top: 50px;
    text-align: center;
    color: white;
    font-size: 45px;
    font-family: var(--font-familly-primary);
}

.banner-text {
    color: var(--text-tertiory-color);
    font-weight: 500;
    line-height: 35px;
    text-align: justify;
    font-size: 20px;
    font-family: var(--font-familly-secondary);
}

@media (max-width:997px) {
    .banner-title {
        font-size: 35px;
    }

    .banner-text {
    font-size: 18px;
   
}

}

/*----Contact Section----*/
.contact-icon i {
    font-size: 28px;
    color: var(--text-secondary-color);
}

.contact-content {
    font-size: 22px;
    font-family: var(--font-familly-secondary);
    margin-top: 5px;
}

.contact-heading {
    color: var(--text-secondary-color);
    font-weight: 600;
    font-family: var(--font-familly-primary);
}

.contact-para {
    font-size: 18px;
}

.contact-footer {
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.contact-footer-content {
    font-size: 25px;
    font-family: var(--font-familly-primary);
    text-align: center;
    color: var(--text-secondary-color);
}


@media (max-width:997px) {
    .contact-heading {
        font-size: 35px !important;
    }

    .contact-footer-content {
        font-size: 22px !important;
    }

    .contact-icon i {
        font-size: 20px !important;

    }

    .contact-content {
        font-size: 18px !important;
    }
}

/*-----Footer------- 
.footer {
    background-color: var(--bg-primary-color);
}

.social-icon-div{
    background-color: var(--bg-secondary-color);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons-div:hover {
    background-color: transparent;
    border: 2px solid white;
    transition: 2s;

}

.social-icon-div i{
    color: var(--text-secondary-color);
    font-size: 20px;
}


.social-icons{
  display: flex;
  justify-content: center;
}



.hr-section {
    height: 1px; 
    background-color: white;
    opacity: 1;
    border: none;
}-----*/
