:root{
    --textColor: #444;
    --headingColor: #000;
    --hoverColor: #ffc000;
    --headerBgColor: #fff;
    --headerTextColor: #444;
    --footerBgColor: #000;
    --footerTextColor: #c0c0c0;
}

html{
    overflow-x: hidden;
    margin: 0;
}

body {
    font-family: "Ubuntu", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    background-color: #fff;
    min-height: 100%;
    width: 100%;
    position: relative;
    margin: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--textColor);
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 180%;
    word-break: break-word;
}

h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    line-height: 1.4 !important;
    color: var(--headingColor);
}

.tam-lan{
     font-family: "Noto Serif Tamil", serif;
     font-weight: 400;
}

.tam-lan .h1, .tam-lan .h2, .tam-lan .h3, .tam-lan .h4, .tam-lan .h5, .tam-lan .h6, 
.tam-lan h1, .tam-lan h2, .tam-lan h3, .tam-lan h4, .tam-lan h5, .tam-lan h6{
    font-family: "Noto Serif Tamil", serif;
     font-weight: 600;
}

.langSwitch label{
    font-family: "Ubuntu", sans-serif !important;
}

a:focus{
    outline: 0;
}

.tam-show,.eng-show{
    display: none;
}

.tam-lan .tam-show{
    display: block;
}

.eng-lan .eng-show{
    display: block;
}

.text-gradient{
    background-image: linear-gradient(#FFEB3B, #f59e0b);
    color: transparent;
    background-clip: text;
}

.page-banner {
    background: #8c5a30;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .55)), url('../images/header/banner.jpg') center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center
}
.btn{
    background: #fff;
    color: #000;
    box-shadow: 0 4px 14px rgba(242, 201, 76, .35);
    transition: all ease 0.3s;
    padding: 14px 18px;
    border-radius: 30px;
    border: 1px solid #f2c94c;
    outline: 0;
    cursor: pointer;
    font-size: inherit;
    font-weight: 600;
}
.btn-primary, .btn:hover{
    background: linear-gradient(135deg, #f2c94c, #f59e0b);
    color: #fff;
    box-shadow: 0 4px 14px rgba(242, 201, 76, .35);
    transition: all ease 0.3s;
    padding: 14px 18px;
    border-radius: 30px;
    border: 1px solid transparent;
    outline: 0;
    cursor: pointer;
    font-size: inherit;
    font-weight: 600;
}
.btn-primary:hover{
    background: linear-gradient(135deg, #f59e0b, #f2c94c);
    color: #fff;
}
.CTAformInfoWrapper{
    background-color: #ffffff40;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.CTAformField{
    position: relative;
    margin-bottom: 2.5rem;
}
.CTAformField .form-label {
    margin-bottom: 0;
    font-size: 12px;
    background: #fff;
    padding: 0 8px;
    position: absolute;
    top: -12px;
    left: 15px;
}

.form-control, .form-select{
    padding: 1rem .75rem .75rem;
    border-color: #f4a617;
    font-size: 14px;
    box-shadow: none !important;
    outline: 0 !important;
}

.form-control::placeholder, .form-select::placeholder{
    font-size: 12px;
    color: #d0cece;
}

.usr-role{
    font-size: 12px;
    color: #959595;
}

.grid-cols-1{
    grid-template-columns: repeat(1,1fr);
}

/* Our service section design starts here */


.service-card {
    padding: 24px;
    overflow: hidden;
    outline: 0;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(242, 201, 76, .35);
}

.stats-card,
.service-card {
    border-radius: 18px;
    transition: .3s
}

.stats-card:hover,
.service-card:hover {
    transform: translateY(-8px)
}
.servicesIcon{
    margin: 0 auto;
    width: 55px;
    height: 55px;
    overflow: hidden;
}
.servicesHeading{
    color: var(--headingColor);
    font-weight: 500;
    padding-bottom: 10px;
    font-size: 20px;
}

.servicesContent{
    color: var(--textColor);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}
.serviceActionBtn{
    padding-top: 12px;
}
.serviceActionBtn a{
    border: 0;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 22px;
    text-align: center;
    line-height: 1;
    background: linear-gradient(135deg, #f2c94c, #f59e0b);
    color: #fff;
    box-shadow: 0 4px 14px rgba(242, 201, 76, .35);
    transition: all ease 0.3s;
}

.serviceActionBtn a:hover{
    text-decoration: none;
    background: linear-gradient(135deg, #f59e0b, #f2c94c);
    color: #fff;
}


.CTASection{
    display: flex;
    flex-direction: column;
    position: relative;
}


.CTABgWrapper{
    padding: 60px 0 250px 0;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .55)), url('../images/cta.jpg') center/cover;
    z-index: 1;
}
.CTAFormWrapper{
    z-index: 2;
}

.CTAFormMain{
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 4px 14px rgba(242, 201, 76, .35);
    border-radius: 40px;
    padding: 30px;
    position: relative;
    margin-top: -200px;
    z-index: 2;
    width: 100%;
    background: #fff;
}

/* Contact us page design */

.contact-card{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 35px;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-icon{
    width: 40px;
    font-size: 40px;
    flex: 0 0 40px;
    text-align: center;
    color: #FF9800;
}

.contact-info{
    display: block;
}

/* Events page design starts here */

.events-card{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.events-card img{
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.videoEvents .events-card{
    aspect-ratio: 16/9;
    position: relative;
    width: 100%;
}

.videoEvents .events-card iframe{
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Leaders column design */

.leadersColGrid{
    display: flex;
    grid-gap: 40px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.leadersCol{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 300px;
    max-width: calc(100vw - 30px);
    min-width: 0;
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    flex: 0 0 300px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.leadersColThumb{
    width: 150px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.leadersColThumb img{
    width: 100%;
    object-fit: cover;
    height: 100%;
    aspect-ratio: 1;
    object-position: top center;
    border-radius: 4px;
}

.leadersColinfo{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.leadersColName{
    color: var(--headingColor);
    font-weight: 600;
    line-height: 1.2;
}

.leadersColYear{
    color: #333;
    line-height: 1;
    font-size: 12px;
    padding-bottom: 2px;
}

.leadersColRole{
    color: #333;
    line-height: 1.2;
    font-size: 14px;
}

.leadersColDesc{
    line-height: 1.4;
    font-size: 10px;
    color: #636363;
    font-style: italic;
}

/* responsive */

@media(min-width: 768px){
    .grid-cols-md-2{
        grid-template-columns: repeat(2,1fr);
    }
}

@media (min-width: 992px){
    .CTAFormMain{
        padding: 60px;
    }

    .grid-cols-lg-3{
        grid-template-columns: repeat(3,1fr);
    }

    .grid-cols-lg-4{
        grid-template-columns: repeat(4,1fr);
    }
}