/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Almendra+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mina:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@font-face {
    font-family: tamilfont;
    src: url('../assets/fonts/Sundaram-07.ttf');

}

@font-face {
    font-family: chemozhi;
    src: url('../assets/fonts/chemozhi.ttf');

}


@font-face {
    font-family: pothigai;
    src: url('../assets/fonts/TAU-pothigai.ttf');
}

@font-face {
    font-family: titletamil;
    src: url('../assets/fonts/Tamil008.ttf');
}

@font-face {
    font-family: bodytamil;
    src: url('../assets/fonts/Tamil020.ttf');
}

@font-face {
    font-family: buttontamil;
    src: url('../assets/fonts/Tamil013.ttf');
}

@font-face {
    font-family: eventtamil;
    src: url('../assets/fonts/Tamil012.ttf');
}

.chemozhi {
    font-family: 'chemozhi', sans-serif;

}

.tamilfont {
    font-family: 'tamilfont', sans-serif;
}

.bodytamil {
    font-family: 'bodytamil', sans-serif;
}

.eventtamil {
    font-family: 'eventtamil', sans-serif;
}

.f18 {
    font-size: 18px;
}

.f20 {
    font-size: 20px;
}

.f22 {
    font-size: 22px;
}

.f23 {
    font-size: 23px
}

.f24 {
    font-size: 24px
}

.f25 {
    font-size: 25px
}

.f26 {
    font-size: 26px
}

.f28 {
    font-size: 28px
}

.f30 {
    font-size: 30px
}

.f32 {
    font-size: 32px
}

.f34 {
    font-size: 34px
}


body {
    font-family: Arial, sans-serif;
}

.custom-navbar {
    height: 80px;
    /* Adjust the height as needed */
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    /* Higher z-index than the carousel */
    background-color: #e4e4e4;
    border-bottom: 1px solid rgb(211, 205, 205);
    /* Light background for desktop */
}

.navbar-nav {
    margin: 0 auto;
    /* Center the navbar items */
}

.nav-link {
    font-size: 28px;
    /* Adjust the font size as needed */
    margin: 0 20px;
    /* font-weight: bold; */
    color: #000;

    /* Spacing between menu items */
}

.nav-link:hover {
    background-color: #f0f0f000;
    /* Light grey background on hover */
    color: #db1c7b;
    /* Pink text color on hover */
    transition: background-color 0.3s, color 0.3s;
    /* Smooth transition */
}


.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: rgb(255, 0, 0) !important;
}

.dropdown-menu {
    background-color: #ffffff;
    /* White background color */
    border: none;
    /* Remove border */
    min-width: 200px;

    /* Minimum width for dropdown menu */
    width: auto;
    /* Automatically adjust width to fit content */
}

.dropdown-item {
    padding: 18px 20px;
    font-family: 'pothigai', sans-serif !important;
    font-size: 24px;

    /* Padding for dropdown items */
    color: #000;
    /* font-weight: bold; */

    /* Text color */
    transition: background-color 0.3s, color 0.3s;
    /* Smooth transition */
}


.dropdown-item:hover {
    /* background-color: #f505c1; */
    background-color: #582016;
    /* Light grey background on hover */
    color: #ffffff;
    /* Pink text color on hover */
}

.carousel-inner img {
    width: 100%;
    height: auto;
    /* Ensures the images scale correctly */
}

.carousel-item {
    height: 500px;
    /* Adjust the height to fit your design */
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    /* Lower z-index than the navbar */
}

.header-section {
    padding: 20px 0;
    /* background-image: linear-gradient(to right, #ff0078, #8e0068, #ff05c7); */
    /* background-image: linear-gradient(to right, #5d6c8e, #421f39, #251159); */
    /* background-color: #26475a !important; */
    background-color: #411122 !important;
}

.header-section p {
    margin-bottom: 5px;
    /* Adjust spacing between paragraphs */
}

.nav-item {
    font-family: 'pothigai', sans-serif !important;


}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #e0e0e0;
        /* Grey background for the navbar on mobile */
        position: absolute;
        top: 100%;
        /* Positioned below the navbar */
        width: 100%;
        z-index: 11;
        /* Ensure it's above the carousel */
    }

    .navbar-toggler {
        margin-left: 10px;
        /* Adjust this value for more fine-tuned positioning */
    }

    .navbar-nav {
        display: flex;
        justify-content: space-between;
        /* Space evenly between items */
        /* align-items: center; */
        width: 100%;
        /* font-family: 'tamilfont', sans-serif !important; */

        /* Full width */
    }

    .nav-item {
        width: auto;
        /* Automatically adjusts width */
        /* text-align: center; */
        margin: 0;

        /* No margin between menu items */
    }

    .nav-link {
        padding: 10px 20px;
        /* Padding for menu items */
    }

    .header-section .col-lg-4 {
        text-align: center;
        /* Center align columns */
    }
}

@media (max-width: 767px) {
    .carousel-item {
        height: auto;
        /* Adjust height for smaller screens */
    }

    .header-section .col-lg-4 {
        margin-bottom: 20px;
        /* Add margin between columns on mobile */
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}
@media screen and (min-width:601px) and (max-width: 1024px) {
    .header-section-mobile{
    font-family: "Catamaran", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    }
   .header-section-content .title1 {
        font-size: 38px !important;
        font-family: "Catamaran", sans-serif !important;
        
      }
    .header-section-content .address1{
        font-size: 18px !important;
        font-family: "Catamaran", sans-serif !important;
     }
    .header-section-content .affiliation1{
        font-size: 18px !important;
        color:yellow;
        font-family: "Catamaran", sans-serif !important;
    }
    }
    @media screen and (min-width:991px) and (max-width: 1400px) {
        .carousel-height {
            height: auto !important;
    }
}
@media screen and (min-width:768px) and (max-width: 888px) {
 
.carousel-item {
    height: auto !important;
    /* Adjust height for smaller screens */
}
.carousel-inner img{
    height: 500px !important; 
}
}
    @media (max-width: 600px) {
        .header-section-mobile{
        font-family: "Catamaran", sans-serif !important;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        }
       .header-section-content .title1 {
            font-size: 23px !important;
            font-family: "Catamaran", sans-serif !important;
          }
        .header-section-content .address1{
            font-size: 13px !important;
            font-family: "Catamaran", sans-serif !important;
         }
        .header-section-content .affiliation1{
            font-size: 12px !important;
            color:yellow;
            font-family: "Catamaran", sans-serif !important;
        }
        }
.moto {
    font-size: 18px;
    color: #f0f0f0;
    font-weight: bold;
    filter: drop-shadow(2px 2px black);
    /* font-family: 'tamilfont', sans-serif; */
    /* Use the font family */
}

.title {
    font-size: 40px;
    color: #f0f0f0;
    font-family: 'titletamil', sans-serif;

    /* font-family: 'tamilfont', sans-serif; */
    filter: drop-shadow(2px 2px black);


}

.affiliation {
    font-size: 24px;
    color: antiquewhite;
    font-weight: bold;
    filter: drop-shadow(2px 2px black);



}

.address {
    font-size: 20px;
    color: #f0f0f0;
    filter: drop-shadow(2px 2px black);


}


.catamaran-100 {
    font-family: "Catamaran", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

.catamaran-200 {
    font-family: "Catamaran", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.catamaran-300 {
    font-family: "Catamaran", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.catamaran-400 {
    font-family: "Catamaran", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.catamaran-500 {
    font-family: "Catamaran", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.catamaran-600 {
    font-family: "Catamaran", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.history {
    font-size: 24px;
    text-align: justify;
    text-indent: 50px;
    font-family: 'tamilfont', sans-serif;

}
.sangam {
    font-size: 24px;
    text-align: justify;
    /* text-indent: 50px; */
    font-family: 'tamilfont', sans-serif;

}
.formlist {
    font-family: 'tamilfont', sans-serif;
    font-size: 23px;
    font-weight: 300;

}


.pagetitle {
    font-family: 'bodytamil', sans-serif;
    font-size: 40px;

}

.formtitle {
    /* font-family: 'tamilfont', sans-serif; */
    font-family: 'buttontamil', sans-serif;

    font-size: 28px;
    font-weight: 500;
    color: antiquewhite;
    filter: drop-shadow(2px 2px black)
}

.footer-brand {
    font-size: 18px;
}



/* footer css */
/* Footer Styles */
.footer {
    /* background-color: #db1c7b; */
    /* background-color: #26475a !important; */
    background-color: #411122 !important;
    color: #ffffff;
    /* Light text color */
    padding: 20px 0;
    /* Padding for top and bottom */
}

.footer a {
    color: #ffc107;
    /* Link color */
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffffff;
    /* Link hover color */
}

.footer h5 {
    margin-bottom: 1rem;
    /* Space below the heading */
    font-size: 1.25rem;
    /* Adjust font size */
}

.footer .list-unstyled {
    padding-left: 0;
    /* Remove padding */
    list-style: none;
    /* Remove list bullets */
}

.footer address {
    font-style: normal;
    /* Address font style */
}

.footer .me-3 {
    margin-right: 1rem;
    /* Margin for social icons */
}

.footer .fab {
    margin-right: 0.5rem;
    /* Margin between icon and text */
}

.great-vibes-regular {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
}

.almendra-sc-regular {
    font-family: "Almendra SC", serif;
    font-weight: 400;
    font-style: normal;
}

.mina-regular {
    font-family: "Mina", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.mina-bold {
    font-family: "Mina", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.footer .footer-brand a {
    color: antiquewhite;
    font-weight: bold;
    /* Link color */
    text-decoration: none;
    transition: color 0.3s;
}

.historybtn {
    background-color: #db1c7b;
    color: #e0e0e0;
}

.historybtn a {
    color: #ffffff;
    font-family: 'buttontamil', sans-serif;
    font-size: 24px;
}

/* horizontal ruler */

/* css/style.css */
.news-events {
    padding: 50px 0;
    /* background-color: #f9f9f9; */
    background-color: #decfbe87;
    /* Light background color */
}

.section-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
}

.section-title ::before {
    content: "--";
    top: "50px"
}

.section-title ::after {
    content: "--";
    top: "50px"
}

.eventtitle {
    font-family: 'eventtamil', sans-serif;
    font-size: 32px;

}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {

    display: flex;
    /* align-items: center; */
    padding: 10px;
    background-color: #ffffff00;
    border: 1px solid #f6e2e2;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    /* Adjust the width as needed */
    font-size: 1.2em;
    font-weight: bold;
    color: #ff6347;
    /* Tomato color for the date */
    margin-right: 20px;
    /* Space between date and title */
}

.event-day {
    font-size: 1.5em;
}

.event-month {
    text-transform: uppercase;
    font-size: 1.0em;
}

.event-title {
    font-size: 1.2em;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .event-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .event-date {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
        align-items: flex-start;
    }

    .event-title {
        font-size: 1em;
    }
}

.baskervville {
    font-family: "Rowdies", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.baskervville-bold {
    font-family: "Rowdies", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.facility,
.infra {
    font-size: 24px;
    text-align: justify;
    text-indent: 10px;
    font-family: 'tamilfont', sans-serif;

}

.eventname {
    font-size: 24px;
    text-align: justify;
    font-family: 'tamilfont', sans-serif;

}

.mycard {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.facility,
.infra li {
    line-height: 50px;

}

.facility li::marker {
    content: "💡";
}

.person {
    font-weight: bold;
}

.carousel-height {
    height: 800px;
}


.accordion {
    max-width: 100%;
    text-align: left;
}

.accordion article {
    border: 1px solid #e9c3c3;
    padding: 1em;
    margin: 1em auto;
}

.accordion input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: fixed;
    top: -100vh;
    left: -100vh;
}

.accordion input[type=radio]~div {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}

.accordion input[type=radio]:checked~div {
    max-height: 200px;
}

.responsive {
    width: 100%;
    height: auto;
}



/* our team */

.demo {
    background-color: #fff8ef00
}

.our-team {
    text-align: center;
}

.our-team .team_img {
    position: relative;
    overflow: hidden;
}

.our-team .team_img:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
    bottom: -100%;
    left: 0;
    transition: all 0.3s ease 0s;
}

.our-team:hover .team_img:after {
    bottom: 0;
}

.our-team img {
    width: 100%;
    height: auto;
}

.our-team .social {
    padding: 0 0 18px 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: -100%;
    right: 10px;
    background: #f76c5e;
    border-radius: 0 0 20px 20px;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

.our-team:hover .social {
    top: 0;
}

.our-team .social li a {
    display: block;
    padding: 15px;
    font-size: 15px;
    color: #fff;
}

.our-team:hover .social li a:hover {
    color: #2a4284;
}

.our-team .team-content {
    padding: 20px 0;
    background: #fff;
}

.our-team .titlee {
    font-size: 24px;
    color: #000000;
    font-weight: 400;
    margin: 0 0 20px;
    position: relative;
    font-family: tamilfont;

}

.our-team .titlee:before {
    content: "";
    width: 25px;
    height: 1px;
    background: #27ae61;
    position: absolute;
    bottom: -10px;
    right: 50%;
    margin-right: 9px;
    transition-duration: 0.25s;
}

.our-team .titlee:after {
    content: "";
    width: 25px;
    height: 1px;
    background: #27ae61;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: 9px;
    transition-duration: 0.25s;
}

.our-team:hover .titlee:before,
.our-team:hover .titlee:after {
    width: 50px;
}

.our-team .post {
    display: inline-block;
    font-size: 15px;
    color: #cb2b1c;
    font-weight: bold;

    text-transform: capitalize;
}

.our-team .post:before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #27ae61;
    margin: 0 auto;
    position: relative;
    top: -13px;
}

@media only screen and (max-width: 990px) {
    .our-team {
        margin-bottom: 30px;
    }


}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel-height {
        height: 500px;
    }
}

@media only screen and (min-width: 560px) and (max-width: 768px) {
    .carousel-height {
        height: 300px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 560px) {

    .carousel-height {
        height: 200px;
    }
}

@media only screen and (min-width: 200px) and(max-width: 300px) {

    .carousel-height {
        height: 200px;
    }

    .formtitle {
        font-size: 20px;
    }

    .historybtn a {
        font-size: 16px;
    }
}

@media only screen and (max-width: 300px) {

    .carousel-height {
        height: 150px;
    }

    .formtitle {
        font-size: 16px;
    }

    .historybtn a {
        font-size: 14px;
    }

    .footer-brand span {
        font-size: 12px;
    }

    .title {
        font-size: 20px
    }

    .affiliation {
        font-size: 16px;
    }

    .address {
        font-size: 14px;

    }
}

.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.tabstructure .nav-tabs .nav-link.active {
    background-color: #ffd0c7 !important;
    color: #6d0505 !important;
}

.dropdown-menu.show {
    background-color: #dcd9d6 !important;
}

.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid rgb(218 191 191);

}

.dropdown-item:focus {
    background-color: #dcd9d6 !important;

}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
}

.google-maps {

    position: relative;

    padding-bottom: 75%;

    height: 0;

    overflow: hidden;

}

.google-maps iframe {

    position: absolute;

    top: 0;

    left: 0;

    width: 100% !important;

    height: 100% !important;

}

.pdfobject-container {
    height: 90rem;
    width: 750px;
    border: 1rem solid rgba(0, 0, 0, .1);
    margin-left: 50px
}

/* 
   .indexpdf{
	margin-left:0px !important;
	height: 350px !important;

   } */
@media (max-width: 1920px) {
    .pdfobject-container {
        width: 850px;
        margin-left: 0px;
        height: 350px !important;
    }
}

@media (max-width: 1336px) {
    .pdfobject-container {
        width: 700px;
        margin-left: 0px;
        height: 350px !important;
    }
}

@media (max-width: 991px) {
    .pdfobject-container {
        width: 550px;
        margin-left: 20px;
        height: 350px !important;
    }
}

@media (max-width: 767px) {
    .pdfobject-container {
        width: 425px;
        margin-left: 10px;
    }
}


@media (max-width: 530px) {
    .pdfobject-container {
        width: 400px;
        margin-left: 0px;
    }

    @media (max-width: 500px) {
        .pdfobject-container {
            width: 350px;
            margin-left: 0px;
        }
    }
}
    @media screen and (min-width:765px) and (max-width: 950px){
    .facility, .infra li {
        line-height: 35px;
    }
    
    .facility, .infra {
        font-size: 23px;
        text-align: justify;
        /* text-indent: 10px; */
        font-family: 'tamilfont', sans-serif;
    }


}

.text-center{
    text-align: center !important;
}

.table-striped  > thead > tr {
    background-color: red !important;
 }