/* Primary and secondary colors */
:root {
    --primary-color: #0062A8;
    --secondary-color: #EBA32A;
}

body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.header_section{
    margin: 0;
    padding: 0;
}
.navbar{
    border-bottom: 6px solid #EBA32A;
    box-shadow: #63636333 0px 2px 8px 0px;
    scroll-behavior: smooth;
    margin: 0;
}
.navbar-toggler-icon{
    background-image: url('/images/chevron-circle-down-solid.svg');
}
.nav-link{
    font-family: 'Poppins';
    font-size: 16px;
    color: #0062A8;
}
.nav-link:hover{
    color: #EBA32A;
    transition: .2s ease-in;
}
.dropdown .dropdown-menu{
    background-color: #0062A8;
}
.dropdown-menu .dropdown-item{
    color: #fff;
    font-family: 'Poppins';
    letter-spacing: .2px;
    line-height: 1.5em;
}
.dropdown-item:hover{
    color: #EBA32A;
    transition: .2s ease-in;
}

/* Hero section */
.hero_section{
    background-image: url('/images/iild-banners.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}
.hero_heading{
    font-family: 'Poppins';
    color: #fff;
}
.hero_subheading{
    color: #EBA32A;
    font-size: 22px;
}
/* Services section */

/* .services-section .service-box {
    border: 1px solid #eee;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} */

.service{
   
    line-height: 1.5em;
}
.image-placeholder {
    width: 100%;
    height: 150px;
    background-color: #f0f0f0;
    border-radius: 8px;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.05) 0,
        rgba(0, 0, 0, 0.05) 1px,
        transparent 2px,
        transparent 50%
    );
}

.service-img{
    width: 90%;
    height: 100%;
    /* margin: 1%; */
}
/* Leaders section */
.leaders-section,.services-section{
    background-image: url("../images/IILDBANNER5.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
}
.leaders-section .leader-box {
    border: 1px solid #eee;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.leader-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #f0f0f0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.05) 0,
        rgba(0, 0, 0, 0.05) 1px,
        transparent 2px,
        transparent 50%
    );
    border: 2px solid var(--secondary-color);
}

.leaders-section .leader-box div{
    text-align: left;
    margin-left: 5%;
}
/* CTA SECTION */
.cta_section{
    background-color: #EBA32A;
}
.cta_heading,.cta_link{
    font-family: 'Poppins';
    color: #fff;
    font-size: 24px;
    letter-spacing: .2px;
}
.cta_link:hover{
    color: #0062A8;
    transition: .2s ease-in;
}

h2,h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Poppins';
    font-weight: bold;
}

h4, h5 {
    color: var(--secondary-color);
    margin: 1.5%;
    font-family: 'Poppins';
    
}

p {
    color: black;
    font-size: 16px;
    letter-spacing: 0.2px;
    font-family: 'Poppins';
}
a{
    text-decoration: none;
    color: var(--secondary-color);
}

.footer_section{
    background-color: #0062A8;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}
.iild_desc{
    font-family: 'Poppins';
    font-size: 13px;
    color: #fff;
}
.quick_links,.working_hours_heading,.social_heading{
    font-family: 'Poppins';
    font-size: 18px;
    color: #fff;
    line-height: 33px;
}
.quick_link_links,.working_hours_links{
    font-family: 'Poppins';
    color: #fff;
    line-height: 23px;
    letter-spacing: .2px;
    font-size: 13px;
}
.quick_link_links:hover,.working_hours_links:hover{
    color: #EBA32A;
    transition: .2s ease-in;
}
.fa-home,.fa-phone,.fa-envelope{
    color: #fff;
    font-size: 18px;
    font-family: 'Poppins';
}
.address,.phone,.mail{
    font-family: 'Poppins';
    font-size: 13px;
    color: #fff;
}
.fa-facebook-square,.fa-twitter-square,.fa-instagram-square,.fa-linkedin,.fa-whatsapp-square{
    color: #fff;
    font-size: 24px;
}
.fa-facebook-square:hover,.fa-instagram-square:hover,.fa-twitter-square:hover,.fa-linkedin:hover,.fa-whatsapp-square:hover{
color: #EBA32A;
transition: .2s ease-in;
}
.copyright,.important_links{
    font-family: 'Poppins';
    color: #fff;
    font-size: 13px;
}
.important_links:hover{
    color: #EBA32A;
    transition: .2s ease-in;
}