@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700|Roboto:300,400,500,700');

/*===== Main Style Tag =====*/
 body {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 110%;
}
center{
    color: white;
}

.dept-h2{
    font-size: 20px;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
	text-decoration: none;
	outline: none;
}

a:focus,
a:hover{
	text-decoration: none;
}

i,
span,
a{
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #1d2025;
	margin: 0px;
}

h1 {
	font-weight: 500;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
ul,ol {
	margin: 0px;
	padding: 0px;
    list-style-type: none;
}
.hp h4{
    display:flex;
    justify-content:center;
}
p {
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	color: #505050;
	margin: 0px;
    text-align: justify;
}
.bg_cover{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
* {
    margin: 0;
    padding: 0;
  }
  body, html {
    overflow-x: hidden;
  }
p.small-text{
     font-size: 14px;  /* Adjust font size as needed */
  line-height: 1.6; 
}
p.tamil-text {
  font-family: "Noto Sans Tamil", "Latha", sans-serif; /* Ensure Tamil font support */
  font-size: 12px;  /* Adjust font size as needed */
  line-height: 1.6; /* Adjust for better readability */

}

/* Additional styling if needed */
p.tamil-text {
  font-weight: 200; /* Font weight */
  letter-spacing: 0.5px;
}




/*===== All Button Style =====*/

.main-btn {
	display: inline-block;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid #ffc600;
	padding: 0 35px;
	font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
	line-height: 50px;
	border-radius: 5px;
    color: #07294d;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 5;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    background-color: #ffc600;
}
.main-btn:hover{
    color: #ffc600;
    border-color: #07294d;
    background-color: #07294d;
}



/*===== All Section Title Style =====*/


.section-title h3{
    color: #07294d;
    position: relative;
    padding-bottom: 12px;
}
.section-title h3::before{
    content: '';
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: #ffc600;
    bottom: 0;
    left: 0;
}
.section-title h2{
    font-size: 48px;
    color: #000;
    padding-top: 10px;
}
 
 #principal center{
     color:black;
 }      
    /*===== Header Section =====*/


.header-top {
    background-color: #ffcc1f;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-main {
    background: linear-gradient(90deg, #003366, #00509e);
    /* Blue gradient */
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    font-size: 16px;
    font-weight:400;
}

.header-main span:hover {
    color: goldenrod;
    cursor: pointer;
    transform: scale(1.1);
}
.slider-an{
    color:white;
}
.slider-an:hover{
    color:#ffc600;
}
/* Calendar Button Styles */
.calendar-btn {
    background: none;
    border: none;
    color: #ffc600;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

.calendar-table {
    display: none;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: black;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 1000;
    width: 280px;
    font-size: 14px;
}

.calendar-table table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

.calendar-table th,
.calendar-table td {
    padding: 5px;
    border: 1px solid #ccc;
}

.calendar-table th {
    background-color: #ffc600;
    color: #fff;
}

/* Style for the current day */
.current-day {
    background-color: #ffc600;
    color: #000;
    font-weight: bold;
    border-radius: 50%;
    text-align: center;
}
/* Navigation Button Styles */
.nav-btn {
    background-color: #ffc600;
    border: none;
    color: white;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: #e6b500;
}

.header-contact ul li {
    display: inline-block;
    margin-right: 45px;
}

.header-contact ul li:last-child {
    margin-right: 0;
}

.header-contact ul li span {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    margin-left: 10px;
}

.header-contact {
    animation: slideInLeft 1.5s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.header-social {
    animation: slideInRight 1.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.info-head {
  width: 100%;
  background-color: #343a40;
  padding: 6px 0;
  overflow: hidden;
  position: relative;
}
.head-content {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 60s linear infinite;
}
.head-content p {
  display: inline-block;
  margin-right: 50px;
  font-size: 1.1rem;
  color: #f8f9fa;
  font-weight: 500;
}
.head-content a{
    color:white;
}
.head-content a:hover{
    color:#ffc600;
}
@keyframes scrollText {
  0% {
    transform: translateX(40%);
  }
  100% {
    transform: translateX(-100%);
  }
}
    
    
/* Mobile view (max-width: 575.98px) */
@media (max-width: 575.98px) {
    .header-main {
        font-size: 12px;
        /* Reduce font size for mobile */
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .header-main span {
        font-size: 12px;
    }

    /* Center everything on small screens */
    .header-main .col-4 {
        text-align: center;
        margin-bottom: 10px;
    }

    .header-main .col-4 span {
        display: block;
        /* Stack elements vertically */
        margin-bottom: 5px;
    }

    /* Calendar icon size adjustment */
    #calendar-button,
    i {
        font-size: 18px;
        /* Adjust size on mobile */
        display: none;
    }
}
/* page banner button*/

.breadcrumb{
     background:none;
     position:relative;
     left:30px;
 }
.page-banner-cont .breadcrumb .breadcrumb-item {
	color: #ffc600;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 2px;
}
.page-banner-cont .breadcrumb .breadcrumb-item a{
    color: #fff;
}
.page-banner-cont .breadcrumb-item + .breadcrumb-item::before {
	color: #fff;
	content: "/";
    font-size: 18px;
}

/* banner-dept home button end*/

/*===== Header Menu =====*/

.navigation.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 999;
    border-bottom: 1px solid #cecece;
    -webkit-box-shadow: 0px 0px 191px 0px rgba(0,0,0,0.06);
    box-shadow: 0px 0px 191px 0px rgba(0,0,0,0.06);
    -webkit-animation: sticky 2s;
    animation: sticky 2s;
}

@-webkit-keyframes sticky {
    0%{
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    100%{
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }
}

@keyframes sticky {
    0%{
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    100%{
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }
}

.navigation .navbar{
    padding: 0;
}

.right-icon ul li{
    display: inline-block;
    margin-right: 17px;
    padding: 22px 0;
}
.right-icon ul li:last-child{
    margin-right: 0;
}

.right-icon ul li a{
    font-size: 18px;
    color: #07294d;
    position: relative;
    padding-right: 7px;
}
.right-icon ul li a span{
    font-size: 12px;
    color: #fff;
    background-color: #ffc600;
    border-radius: 50%;
    padding: 0px 4px;
    position: absolute;
    top: -5px;
    right: 0;
}

/*===== Index-3 =====*/


a.gov-logo img {
    width: 170px;
    padding-left: 79px;
    padding-top: 8px;
    height:90px;
}


/* Index Header */
.header-social ul li{
    display: inline-block;
    margin-left: 10px;
}
.header-social ul li:first-child{
    margin-left: 0;
}

.header-social ul li a{
    font-size: 20px;
    color: #000;
    transition: transform 0.3s ease; /* Smooth scaling effect */
}
.header-social ul li a:hover {
    transform: scale(1.2); /* Slightly enlarge the icon on hover */
}
.fa-facebook-f, .fa-facebook {
    color: #3b5998; /* Facebook blue */
}

.fa.fa-twitter::before{
	content:"𝕏";
	font-size:20px;
    color: #000;
}


.fa-youtube {
    color: #ff0000; /* YouTube red */
}

.fa-linkedin {
    color: #0077b5; /* LinkedIn blue */
}

.fa-instagram {
    color: #e4405f; /* Instagram gradient (solid color for simplicity) */
}

.right-content {
    padding: 10px 0px;
    /*font-size: 13px;*/
    font-weight: 1000
    /*font-family: 'Kavivanar';*/
}

.right-content p {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

/*=====================================================
    3. SLIDER css 
======================================================*/

.single-slider{
    padding-bottom: 300px;
}

.slider-cont{
    position: relative;
    z-index: 5;
}
.slider-cont h1{
    font-size: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    padding-bottom: 25px;
}
.slider-cont p{
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    padding-bottom: 50px;
}
.slider-cont ul li{
    display: inline-block;
    margin-right: 15px;
}
.slider-cont ul li:last-child{
    margin-right: 0;
}

.slider-active .slick-arrow{
    font-size: 50px;
	position: absolute;
	top: 50%;
	left: 0;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.slider-active .next.slick-arrow {
    left: auto;
    right: 0;
}

.slider-active:hover .slick-arrow{
    left: 30px;
    opacity: 1;
    visibility: visible;
}

.slider-active:hover .next.slick-arrow {
    left: auto;
    right: 30px;
}
.slider-2 .slider-cont h1 {
	padding-bottom: 40px;
}
.slider-2.single-slider{
    padding-top: 230px;
    padding-bottom: 250px;
}

/* ABOUT COLLEGE CSS */
.abt-img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Black box shadow */
  padding: 10px; /* Optional: Add padding to give some space around the image */
  border-radius: 10px; /* Optional: Add rounded corners */
}
.about-singel-items span{
    font-size: 60px;
    color: #dbdbdb;
    font-family: 'Monteserrat', sans-serif;
    font-weight: 400;
    line-height: 46px;
    padding-bottom: 22px;
}

.about-singel-items h4{
    color: #000;
    font-size: 24px;
    padding-bottom: 25px;
}

.custom-list {
    list-style-type: disc;    /* Use a disc as the bullet */
    color: #333333;           /* Dark grey color for better readability */
    font-size: 16px;          /* Adjust the font size */
    padding-left: 20px;       /* Add padding to align the bullets */
    line-height: 1.6;         /* Add some space between the lines */
}

.custom-list li {
    margin-bottom: 10px;      /* Add space between each list item */
}
/* physics image ,content align*/
.research, .activities,.Physics-img {
    position: relative;
    bottom: 40px;
}

/*department css*/
 

.dept-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

#page-banner {
    position: relative;
    padding-top: 105px;
    padding-bottom: 110px;
    background-size: cover; /* Ensure the full image fits inside */
    background-position: center;
    background-repeat: no-repeat; /* Prevent repeating the image */
    color: #fff;
}

#page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Adjust opacity and color */
    z-index: 1; /* Ensure overlay is behind content */
}

.page-banner-cont {
    position: relative;
    z-index: 2; /* Ensure content appears above the overlay */
    text-align: center; /* Center align the text */
}

.page-banner-cont h1 {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
    animation: fadeInDown 1.5s ease;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    #page-banner {
        padding-top: 60px;
        padding-bottom: 60px;
        height: 300px; /* Adjust height for mobile view */
    }

    .page-banner-cont h1 {
        font-size: 32px;
    }
}

  /* Styling for the Banner Heading */
.dept-head {
    font-size: 48px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}
/*#about-page {*/
/*    padding: 50px 0;*/
/*}*/

.section-title h2.dept-mainhead {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    font-size:42px;
}

.about-cont {
    margin-bottom: 30px; /* Space below content */
}
 #about-page .about-image {
  /*margin-top: 20px;*/
  display: flex;
  justify-content: center; /* Center the image horizontally */
}

#about-page .about-image img {
   max-width: 100%; /* Ensures the image is responsive */
   height: auto;
   border: 3px solid #092e56;
   padding: 5px;
   border-radius:10px;
   box-shadow:1px 1px 16px -6px rgba(0, 0, 0, 0.5);
}

/*#about-page  img {*/
/*    width: 275px;*/
/*}*/

@media (min-width: 992px) {
  #about-page .col-lg-8 {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Align content vertically */
  }
  
  #about-page .col-lg-4 {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Align the image vertically */
  }
}

/* border for programme officer*/
.custom-border {
    border: 2px solid #07294d; /* Blue border */
    border-radius:10px;
    padding: 5px; /* Space between the image and the border */
}
/* Image centering styles */
/*.col-lg-4 {*/
/*    display: flex;*/
/*    justify-content: center; */
/*    align-items: center;  */
/*}*/

/* Image styling */
.about-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid #092e56;
}
/* Styling for the Subhead */
.dept-subhead {
    font-size: 28px;
    color:#092e56 ;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}
/*bba jpg section*/
.seminarimg-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows the items to wrap if necessary */
    margin: 0 auto;
    padding: 20px;
}
.activities li{
    color:black;
}
.dept-item {
    flex: 1;
    margin: 10px;
}

.dept-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Styles for desktop */
@media (min-width: 768px) {
    .seminarimg-section {
        flex-direction: row; /* Aligns items left and right */
    }
}

/* Styles for mobile */
@media (max-width: 767px) {
    .seminarimg-section {
        flex-direction: column; /* Stacks items up and down */
    }
}

/* Additional mobile responsiveness */
@media (max-width: 768px) {
    .col-lg-4 {
        margin-top: 20px; /* Add margin on mobile */
    }
    
    .text-right {
        display: none;
    }
}



/*Roles and responsibility*/

.roles{
    list-style-type: square;
}
.roles {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0; /* Remove default indentation */
}

.roles li {
  position: relative;
  font-size: 16px; /* Adjust the text size */
  margin-bottom: 10px; /* Add space between list items */
  padding-left: 30px; /* Create space for the custom bullet */
  color:black;
}

.roles li::before {
  content: "●"; /* Round bullet symbol */
  color: #07294d; /* Bullet color */
  font-size: 18px; /* Bullet size */
  position: absolute;
  left: 0; /* Adjust the bullet position */
  top: 0;
}
/*<!---========= hostel CSS START HERE==========--> */
/* Style for the warden heading */
.warden-heading {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 20px;
}

/* Style for warden profile container */
.wardens-profile-container {
    display: flex;
    flex-direction: column; /* Stack profiles in a column */
    align-items: center; 
    flex: 1; 
}

/* Style for warden profile */
.wardens-profile {
    display: flex;
    align-items: center; 
    gap: 100px; /* Gap between profiles */
    margin-top: 10px;
}

.warden {
    text-align: center;
}

.warden img {
    width: 100px; /* Fixed width */
    height: 100px; 
    object-fit: cover; 
    border-radius: 50%;
}

/* Style for warden name */
.warden-name {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Style for the hostel section */
.hostel-section {
    display: flex;
    align-items: flex-start; /* Align items at the start of the container */
    gap: 20px; /* Space between the image and the profiles */
    padding: 20px; /* Optional padding around the section */
}

/* Ensure hostel image and wardens-profile are in separate columns */
.hostel-image {
    flex: 1; /* Allow the image container to take up available space */
}

.hostel-image img {
    width: 100%;
    max-width: 300px; /* Adjust max-width as needed */
}

@media (max-width: 768px) {
    #ruler{
        display:flex;
        justify-content:end;
    }
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .hostel-section {
        flex-direction: column;
        align-items: center;
        text-align: center; /* Center-align text in mobile view */
    }

    .hostel-image {
        margin-bottom: 20px; /* Add space between the image and wardens */
    }

    .wardens-profile {
      
        gap: 40px; /* Reduce gap on mobile if needed */
    }

    .warden {
        display: flex;
        flex-direction: column; /* Ensure warden image and name stack vertically */
        align-items: center;
        margin-bottom: 20px; /* Add space between each warden profile */
    }

    .warden img {
        width: 80px; /* Adjust image size for mobile */
        height: 80px; /* Maintain aspect ratio */
    }

    .warden-name {
        font-size: 1rem;
        margin-top: 10px; /* Ensure name is below the image */
    }
}

/* ANNOUNCEMENT VERTICAL BAR  START HERE*/
 
/*<!---========= ANNOUNCEMENT CSS START HERE==========--> */
.vertical-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}
.vertical-bar.hidden {
    display: none;
}

.vertical-bar button {
    background-color: #ffc600;
    border: none;
    height: 30%;
    padding: 20px;
    width: 60px;
    writing-mode: vertical-rl;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin: 10px 0;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
    box-shadow: 0 0 25px #ffc800;
}

.vertical-bar button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
}

.announcement-panel {
    position: fixed;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #212529e0;
    color: white;
    padding: 20px;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.4);
    z-index: 1001;
    transition: right 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    max-width: 350px;
    max-height: 80vh;
    overflow-y: auto;
    box-sizing: border-box;
    border-radius: 8px;
}

.announcement-panel.active {
    right: 0;
}

.announcement-panel .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.announcement-panel .close-btn:hover {
    color: #dc3545;
}

.announcement-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: calc(80vh - 60px);
    overflow-y: auto;
}

.announcement {
    /* background: linear-gradient(45deg, #2c3e50, #fd746c);   */
    /* background: linear-gradient(45deg, #fcb045, #333399); */
    /* background: linear-gradient(45deg, #00f260, #0575e6);  */
    /* background: linear-gradient(135deg, #4b6cb7, #182848);perfect */
    /* background: linear-gradient(135deg, #2b2b2b, #4b79a1); medium */
    /* background: linear-gradient(135deg, #3a1c71, #d76d77, #ffaf7b); */
    /* background: linear-gradient(135deg, #07294d, #1e3a8a); blue  */
    /* background: linear-gradient(135deg, #07294d, #4a90e2); oceanblue  */
    background: linear-gradient(135deg, #07294d, #1e3a8a, #4a90e2);
    /* background: linear-gradient(135deg, #003a70, #00b4d8, #004b49); */
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
}


.announcement-header {
    cursor: pointer;
    font-weight: bold;
    color: #f8f9fa;
    transition: color 0.3s;

}

.collapse.show {
    padding-top: 15px;
}

.announcement-content {
    font-size: 0.9rem;
    color: #e9ecef;
}

.view-btn {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.view-btn:hover {
    background-color: #0056b3;
}

.announcement-panel::-webkit-scrollbar {
    width: 8px;
}

.announcement-panel::-webkit-scrollbar-track {
    background: #343a40;
}

.announcement-panel::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}

.announcement-panel::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

.announcement-panel {
    scrollbar-width: thin;
    scrollbar-color: #007bff #343a40;

}
@media(max-width: 768px) {
    .vertical-bar button{
        height:20%;
        width:40px;
        padding:10px;
    }

     }

/* <!---========= ANNOUNCEMENT CSS END HERE==========--> */
/* ANNOUNCEMENT VERTICAL BAR  END HERE*/



/* MENU FEATURES */

/* Custom Styles */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center;
    padding: 1rem;
    border-radius: 25px;
    border: 1px solid #07294d;
    background-color: #f8f9fa;
    width: 300px; /* Adjusted width */
    height: 300px; /* Adjusted height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Black box shadow */
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6); /* Enhanced black box shadow on hover */
}

.feature-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-top: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.6s ease;
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    justify-content: center;
}

.subheading-container {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 0.3rem;
    /*background-color:#07294d;*/
    background: linear-gradient(135deg, #003a70, #00b4d8, #004b49);
    border-radius: 25px;
    gap: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Black box shadow */
    box-sizing: border-box; /* Ensures padding and border are included in width/height */
   
}

.subheading-container .subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    width: 90%; /* Full width of the container */
    text-align: left;
    color: #333;
    border: 1px solid transparent;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    transform: translateX(100%);
    transition: transform 0.6s ease;
    margin: 0.25rem 0; /* Margin for spacing between subheadings */
    overflow: hidden; /* Hide overflowing text */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
    white-space: nowrap; /* Prevent text from wrapping */
    line-height:1rem;
}

.subheading-container .subheading i {
    margin-right: 0.75rem;
    font-size: 1rem;
}

.subheading-container .subheading a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    /*width: 100%;*/
}

.subheading-container .subheading a:hover {
    color: #007bff;
}

.show-subheadings .subheading-container {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.show-subheadings .card-body,
.show-subheadings .feature-icon {
    transform: translateY(-50px);
    opacity: 0;
}

.show-subheadings .subheading-container .subheading {
    transform: translateX(0);
}

.subheading-container .subheading:nth-child(1) {
    transition-delay: 0.1s;
}

.subheading-container .subheading:nth-child(2) {
    transition-delay: 0.2s;
}

.subheading-container .subheading:nth-child(3) {
    transition-delay: 0.3s;
}

.subheading-container .subheading:nth-child(4) {
    transition-delay: 0.4s;
}

.subheading-container .subheading:nth-child(5) {
    transition-delay: 0.5s;
}

.subheading-container .subheading:nth-child(6) {
    transition-delay: 0.6s;
}

@media (min-width: 768px) {
    .custom-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    .subheading-container .subheading{
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .feature-card {
        width: 270px;
        height: 270px;
        padding: 0.5rem;
        border-radius:25px;
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }
    .feature-icon i {
        font-size: 70%;
    }

    .subheading-container {
        padding: 0.5rem;
        border-radius: 15px;
        background: linear-gradient(135deg, #003a70, #00b4d8, #004b49);
    }

    .subheading-container .subheading {
        padding: 0.25rem;
        font-size: 0.9rem;
        background-color: #f8f9fa;
        line-height:0.8rem;
    }

    .custom-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

.features-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.features-section h2 {
    margin-bottom: 2rem;
}

/* DEPARTMENT CSS */

.desktop-list h1::before{
    content: '';
    position: absolute;
    width: 45px;
    height: 2px;
    background-color: #ffc600;
     top:20px; 
    bottom: -180px;
    left: 90px;
}
.department-card {
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center;
    height: 350px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 4px 2px 4px 4px #81848f ;
     /*opacity: 0; Initially hidden for animation */
    transform: translateY(30px); /*Start position for animation*/
} 
.card-title .btn-primary:hover{
    border-radius: 10px;
    box-shadow: 2px 2px 2px 2px #81848f;
}
.department-card:hover {
    transform: scale(1.05); /* Slightly enlarge the card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for hover effect */
    background-color: #f8f9fa; /* Optionally change background color*/ 
}

 /*Icon color change on card hover */
.department-card:hover .department-icon i {
    color: #07294d; /* Change icon color to blue */
}

 /*Ensure icon color is initially set correctly */
.department-icon i {
    color: #000; /* Default color of icons */
    font-size: 2rem;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

.desktop-list h1 {
    display:block;
}

.card-text{
    color: #3d3e42;
    font-size: 15px;
    font-family: none;
    font-weight: 400;
}
.dpt_btn{
    position:relative;
    top:15%;
}

.card-body{
    padding: 5px;

}

 /*Style for the button hover effect */
.btn-primary {
    background-color: #ffc600;
    border-color: #ffc600;
    color: black;
    transition: all 0.3s ease; /* Adds smooth transition */
  }

  .btn-primary:hover, 
  .btn-primary:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds box shadow on hover */
    transform: scale(1.05); /* Slightly enlarges the button on hover */
    outline: none; /* Removes default outline */
  }

  .btn-primary:active {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Adds a smaller box shadow when clicked */
    transform: scale(0.98); /* Slightly shrinks the button on click */
  }

 /*Mobile Only Button Box */
.mobile-button-box {
    display: none; /* Hidden by default */
    width: 100%;
    background-color: #07294d;
    color: white;
    padding: 10px;
    border: none;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 10px;
    position: relative;
}

.mobile-button-box:hover {
    background-color: #ffc600;
}

.mobile-button-box .fa {
    position: absolute;
    left: 60px; /* Adjusted for better alignment*/ 
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem; /* Adjust icon size */
    color: white;
}

 /*Mobile list styles */
.mobile-list {
    display: none; /* Hide by default */
    width: 100%;
    background-color: #f8f9fa;
    padding: 10px;
    border: 1px solid #dee2e6;
}

.mobile-list.show {
    display: block; /* Show when toggled */
}

 /*Responsive Utilities */
@media (max-width: 767.98px) {
    .mobile-button-box {
        display: block; /* Show button on mobile */
    }
    .desktop-list {
        display: none; /* Hide desktop content on mobile */
    }
  
}

@media (min-width: 768px) {
    .mobile-list {
        display: none; /* Hide mobile list on desktop */
    }
    .desktop-list {
        display: block; /* Show desktop content */
    }
    .mobile-button-box .fa {
        position: absolute;
        left: 20px; /* Adjusted for better alignment */
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem; /* Adjust icon size*/ 
        color: white;
    }
}

/*=====================================================
    COMMITEE AND RULES & REGULATION css 
======================================================*/
.center.row {
    display: flex;
    justify-content:center;
    position: relative;
    left:50px;
    padding: 30px 0px 30px 0px;
   }

.sticknote-big-shadow {
    max-width: 350px;
    position: relative;
}
.title{
    padding-top:30px;
    
}
.stick-btn{
    margin-top: 30px;
}

.sticknote[data-radius="none"] {
    border-radius: 0px;
}

.sticknote {
    border-radius: 8px;
    box-shadow: 0 2px 2px rgba(204, 197, 185, 0.5);
    background-color: #ffffff;
    color: #252422;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.sticknote[data-background="image"] .title,
.sticknote[data-background="image"] .stats,
.sticknote[data-background="image"] .category,
.sticknote[data-background="image"] .description,
.sticknote[data-background="image"] .content,
.sticknote[data-background="image"] .card-footer,
.sticknote[data-background="image"] small,
.sticknote[data-background="image"] .content a,
.sticknote[data-background="color"] .title,
.sticknote[data-background="color"] .stats,
.sticknote[data-background="color"] .category,
.sticknote[data-background="color"] .description,
.sticknote[data-background="color"] .content,
.sticknote[data-background="color"] .card-footer,
.sticknote[data-background="color"] small,
.sticknote[data-background="color"] .content a {
    font-weight:800;
    color: #ffffff;
}

.sticknote.sticknote-just-text .content {
    padding: 70px 25px 45px 25px;
    text-align: center;
}

.sticknote .content {
    padding: 2rem;
}

.sticknote[data-color="navy"] .category {
    color: #7a9e9f;
}

.sticknote .category,
.sticknote .label {
    font-size: 14px;
    margin-bottom: 0px;
}

.sticknote-big-shadow:before {
    background-image: url("http://static.tumblr.com/i21wc39/coTmrkw40/shadow.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: -12%;
    content: "";
    display: block;
    left: -12%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}
.sticknote .description {
    font-size: 16px;
    color: #66615b;
}

.content-card {
    margin-top: 30px;
}

a:hover,
a:focus {
    text-decoration: none;
}

/*======== COLORS ===========*/

.sticknote[data-color="navy"] {
    background: #07294d; /* Navy color */
}

.sticknote[data-color="navy"] .description {
    color: #ccd1d9;
}

.sticknote[data-color="navy"] .category {
    color: #7a9e9f;
}

.sticknote[data-color="golden"] {
    background: #ffd700; /* Golden color */
}

.sticknote[data-color="golden"] .description {
    color: #b25825;
}

.sticknote[data-color="golden"] .category {
    color: #d88715;
}

@media(min-width: 400px) and (max-width: 768px) {
    /* Styles for devices with a width between 400px and 768px */
    .sticknote-big-shadow{
		right:75px;
        transform: translate(25px);
       
	}
    .content-card{
        position: relative;
        left:5%;
      
    }
    .title{
        padding-top: 20%;
    }

} 
@media(min-width: 300px) and (max-width: 400px){
    .sticknote-big-shadow{
		right:75px;
        transform: translate(25px);
	}
    .title{
        padding-top: 20%;
    }
    
}


 .quotes { 
    color:#181257;
   
}

/*=====================================================
               COMMITEES PAGE
======================================================*/

.sidebar {
    background-color: #343a40;
    min-height: 100vh;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    animation: slideInLeft 2s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.sidebar .nav-link {
    color: #fff;
    padding: 10px;
    border-bottom: 1px solid #495057;
    transition: background-color 0.3s ease;
}

.sidebar .nav-link.active {
    background-color: #495057;
    font-weight: bold;
}

.sidebar .nav-link:hover {
    background-color: #495057;
}

.committee-section {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    animation: slideInRight 2s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.committee-section.active {
    display: block;
}

h1.committee.heading {
    padding-top: 40px;
    padding-bottom: 20px;
    font-size: 44px;
    animation: slideInTop 2s ease-out;
}

@keyframes slideInTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.committee-section h2 {
    border-left: 5px solid #495057;
    padding-left: 15px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #495057;
}

.committee-points {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.committee-points li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    color: #000;
    text-align:justify;
}

.committee-points li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #495057;
    font-weight: bold;
}

.members-table {
    margin-top: 20px;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.members-table th,
.members-table td {
    padding: 15px;
    text-align: left;
}

.members-table th {
    background-color: #495057;
    color: #fff;
    border-bottom: 3px solid #343a40;
}

.members-table tr {
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.3s ease;
}

.members-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.members-table tr:hover {
    background-color: #e9ecef;
}

.members-table td {
    background-color: #ffffff;
}

.members-table tr:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .committee-section {
        padding: 20px;
    }

    .committee-section h2 {
        font-size: 1.5rem;
    }

    .members-table th,
    .members-table td {
        padding: 10px;
        font-size: 0.875rem;
    }
}



/*=====================================================
     COUNTER css 
======================================================*/

.singel-counter{
    position: relative;
    z-index: 5;
}
.singel-counter span{
    font-size: 36px;
    color: #ffc600;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.singel-counter p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 15px;
    display: flex;
    justify-content: center;
}
.counter p{
    margin-left: 20px;
}

/*=====================================================
     Physics css 
======================================================*/
.Physics-img {
  width: 100%; /* Makes the image take the full width of its container */
  height: auto; /* Adjusts the height automatically based on the width */
  max-width: 100%; /* Ensures the image doesn't exceed the container's width */
}

/*=====================================================
     Faculty css 
======================================================*/
.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 1200px;
  width: 100%;
  margin: 60px auto 0;
  justify-content: center;
}

.col {
  flex: 1 1 48%;
  min-width: 550px;
  box-sizing: border-box;
}

.cards {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px;
  background-color: #fff;
  display: flex;
  column-gap: 40px;
  box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.5);
  align-items: center;
  width: 100%;
  max-width: 300px; /* Increased width to fit better on small screens */
  transition: transform 0.3s, box-shadow 0.3s;
}

.cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faculty-img {
  padding-top: 10px;
}

.img-placeholder {
  width: 150px; /* Adjusted width for smaller screens */
  height: 150px; /* Adjusted height for smaller screens */
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 2px 4px 16px -6px rgba(0, 0, 0, 0.75);
}

.cards img {
  width: 90%;
  height: 90%;
  /*object-fit: cover;*/
  border-radius: 10px;
  /*margin-bottom: 10px;*/
}

.faculty-data i {
  color: #003366;
  margin-right: 10px;
}
 .faculty-data{
     width:300px;
 }
.faculty-data h3 {
  font-weight: 400;
  margin-bottom: 10px;
}

.faculty-data p {
  font-weight: 300;
  margin: 5px 0;
  display: flex;
  align-items: center;
  padding: 2px;
  color: #000;
}

.faculty-data a {
  color: #888;
  text-decoration: none;
}

.faculty-data a:hover {
  color: inherit;
}

/* Name link hover effect */
.name-link {
  color: black;
  text-decoration: none;
  transition: color 0.3s;
}

.name-link:hover {
  color: grey;
}

@media (max-width: 768px) {
  .flex-container {
    gap: 10px;
    padding: 10px;
  }

  .img-placeholder {
    width: 150px; /* Adjusted width for medium screens */
    height: 150px; /* Adjusted height for medium screens */
    margin-bottom:20px;
  }

  .cards {
    padding: 15px;
    flex-direction: column; /* Stack image and content vertically */
    align-items: center; /* Center align items in medium screens */
    max-width: 100%; /* Full width for medium screens */
  }

  .col  {
    flex: 1 1 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .flex-container {
    gap: 30px;
    padding: 10px;
    margin: 0;
  }

  .img-placeholder {
    width: 100%; /* Full width for mobile view */
    height: auto; /* Auto height to maintain aspect ratio */
  }

  .cards {
    flex-direction: column; /* Stack image and content vertically */
    align-items: center; /* Center align items in mobile view */
    padding: 10px;
    max-width: 100%;
  }

  .col {
    flex: 1 1 100%;
    min-width: 0;
  }

  .faculty-data {
    padding-top: 10px;
    text-align: center; /* Center text in mobile view */
    width:300px;
  }
}
@media (min-width: 300px) and (max-width: 500px) {
  .flex-container {
    gap: 10px; /* Reduce gap for smaller screens */
    padding: 5px; /* Add padding */
    margin: 0; /* Remove margin */
  }

  .col {
    flex: 1 1 100%; /* Full width for each column */
    min-width: 0; /* Reset min-width to avoid overflow */
  }

  .cards {
    padding: 10px; /* Reduce padding */
    max-width: 100%; /* Ensure cards are full width */
    flex-direction: column; /* Stack image and content vertically */
    align-items: center; /* Center align items */
  }

  .img-placeholder {
    width: 100%; /* Full width for image placeholder */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Margin between image and content */
  }

  .faculty-data {
    text-align: center; /* Center text */
    width: auto; /* Reset width for better alignment */
  }

  .faculty-data h3 {
    font-size: 1.2em; /* Adjust font size */
  }

  .faculty-data p {
    font-size: 0.9em; /* Adjust font size */
    padding: 2px;
  }
}

/*=====================================================
    6. course offered css 
======================================================*/
   /* Courses Offered Section */
   .courses-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 1px 1px 16px -6px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 2000px;
    margin: 30px auto;
    padding: 30px;
    box-sizing: border-box;
}

.courses-container h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.course-card {
    background-color: #003366; /* Default color */
    color: #ffffff; /* Text color for default state */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #002244; /* Slightly darker on hover */
}

.course-card:hover .course-overview-link {
    background-color: #ffb300; /* Slightly darker yellow on hover */
}

.course-card h3 {
    margin: 0;
    font-size: 20px;
    color: #ffffff; /* Text color for headings */
    margin-bottom: 10px;
}

.course-details {
    display: none;
}

.course-card:hover .course-details {
    display: block;
    padding-top: 10px;
    font-size: 14px;
    color: #ffffff; /* Details color on hover */
}

.course-overview-link {
    text-decoration: none;
    background-color: #ffc600; /* Default button color */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.course-overview-link.disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
}

/* Responsive Design */
@media (max-width: 768px) {
    .course-card {
        padding: 15px;
        margin: 10px 0;
    }

    .courses-container h2 {
        font-size: 24px;
    }

    .course-overview-link {
        padding: 8px 16px;
    }
}


/*=====================================================
    4. SYLLABUS css 
======================================================*/
.syllabuscontainer {
    width: 90%;
    margin: 0 auto;
    padding: 10px;
}
.syllabus-section {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow:1px 1px 16px -6px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.syllabus-section h2 {
    margin-top: 0;
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}
.syllabus-links {
    list-style: none;
    padding: 0;
    width: 100%;
    display: flex;
    gap: 15px;
    margin-top:30px;
}
.syllabus-links li {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.syllabus-links a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    padding: 10px 15px;
    border: 2px solid #07294d;
    border-radius: 5px;
    background-color: #07294d;
    transition: background-color 0.3s, color 0.3s;
    flex: 1;
    text-align: center;
}
.syllabus-links a:hover {
    background-color: #004080;
    color: #fff;
}
.syllabus-links a i {
    margin-right: 8px;
    color: #ffc600; /* Icon color */
}

/*=====================================================
     STUDY MATERIALS css 
======================================================*/
.syllabus-container {
    background-color: #003366;
    padding: 20px;
    border-radius: 8px;
    color: #ffffff;
}

.category-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-size: 18px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    gap: 10px;
}

.category-button span {
    flex: 1;
    text-align: center;
}

.category-button i {
    margin-left: 10px;
    transition: transform 0.3s;
    text-align: right;
}

.materials-list {
    background-color: #003366;
    border-radius: 5px;
    padding: 10px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.materials-list.show {
    max-height: 1000px;
}

.materials-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.materials-list ul li {
    background-color: #004080;
    margin: 5px 0;
    padding: 12px;
    border: 1px solid #003366;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.materials-list ul li div,
.category-header span {
    flex: 1;
    text-align: center;
}
.subject-info i{
    margin-right:10px;
    
}
.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.button-container a {
    font-size: 14px;
    background-color: #1e90ff;
    color: white;
    border: 2px solid #1e90ff;
    border-radius: 20px;
    cursor: pointer;
    transition: color 0.3s, background-color 0.3s;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
}

.button-container a:hover {
    background-color: #87cefa;
    color: #003366;
    border-color: #87cefa;
}

 .subject-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .subject-info i {
        margin-bottom: 5px; /* Adjust space between icon and text */
    }
}
      

@media (max-width: 768px) {
    .category-button,
    .materials-list ul li {
        font-size: 14px;
    }

    .button-container a {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .category-button,
    .materials-list ul li {
        font-size: 12px;
    }

    .button-container a {
        padding: 5px 10px;
        font-size: 10px;
    }
}

   /* 
    COLLEGE COUNCIL 
   */
  

  .council-members {
    padding: 50px 0;
    background-color: #f4f4f4;
}

.council-members h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.members-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.member-info {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 8px 4px 15px rgba(0, 0, 0, 0.1);
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.member-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.member-info i {
    font-size: 1rem;
    color: #007BFF;
}

.member-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.member-info p {
    font-size: 1rem;
    color: #555;
}





/*=====================================================
    13. FOOTER css 
======================================================*/

.footer-top{
    background-color: #07294d;
}

.footer-about {
	padding-right: 50px;
}
.footer-about p{
    color: #fff;
    padding-top: 15px;
}
.footer-about ul li{
    display: inline-block;
    margin-right: 15px;
}
.footer-about ul li:last-child{
    margin-right: 0;
}

.footer-about ul li a{
    width: 35px;
    line-height: 35px;
    font-size: 20px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    background-color: #ffcc1fd6 ;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    
}
.footer-about ul li a:hover{
    background-color: #ffc600;
    color: #021d3a;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    
}


.footer-title h6{
    font-size: 28px;
    color: #fff;
}

.footer-link{
    overflow: hidden;
}
.footer-link ul{
    width: 50%;
    float: left;
    overflow: hidden;
}
.footer-link ul li{
    line-height: 35px;
}
.footer-link ul li a{
    color: #fff;
    font-size: 15px;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.footer-link ul li a i{
    margin-right: 8px;
    color: #ffc600;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.footer-link ul li a:hover {
    color: #ffc600;
}
.footer-link ul li a:hover i{
    margin-right: 15px;
}

.support ul{
    float: none;
    width: 100%;
}

.footer-address ul li{
    position: relative;
    margin-bottom: 10px;
}
.footer-address ul li:last-child{
    margin-bottom: 0;
}

.footer-address ul li .icon i{
    font-size: 18px;
    color: #ffc600;
    position: absolute;
    left: 0;
    top: 5px;
}
.footer-address ul li .cont{
    padding-left: 35px;
}
.footer-address ul li .cont p{
    color: #fff;
}

.footer-copyright{
    background-color: #021d3a;
}
.footer-copyright .copyright p{
    color: #fff;
}
.footer-copyright .copyright p span{
    font-weight: 600;
}
.location{
    color:white;
}

@media (max-width: 768px) 
{
    .map-container iframe {
    width: 250px;
    height: 250px;
    border: 0;
}   
}
.copyright center {
    color:center;
}
.back-to-top{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 35px;
    background-color: #ffc600;
    color: #fff;
    font-size: 28px;
    border-radius: 5px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    display: none;
}
.back-to-top:hover{
    color: #fff;
    background-color: #021d3a;
}
.logo {
    /* display: flex; */
    align-items: center; /* Align items vertically in the center */
}

.logo h5 {
    margin-top: 5px;
    margin: 0;
    color:#ffc600;
    /*text-align:center;*/
}

.footer-travel {
    color: #fff;
}

.footer-travel .footer-title h6 {
    font-size: 24px;
    color: #ffc600;
}
.travel-info p {
    color: aliceblue;
    text-align: center;
}

.travel-icons {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    /*gap: 20px;*/
}

.icon-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
}

.icon-item i {
    font-size: 40px;
    color: #ffc600;
    background-color: #021d3a;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.icon-item:hover i {
    background-color: #ffc600;
    color: #021d3a;
}

.icon-item h6 {
    font-size: 18px;
    margin: 5px 0;
    color: #fff;
}

.icon-item p {
    font-size: 16px;
}

@media (max-width: 768px) {
    .travel-icons {
        flex-direction: column;
        align-items: center;
    }

    .icon-item {
        margin-bottom: 20px;
    }
}
/*nearest attraction*/
.attraction-icons {
        display: flex;
        /*gap: 20px;*/
}
.icon-item {
    text-align: center;
}
.rounded-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.attraction-info h6 {
    margin-top:18px;
    margin-bottom: 5px;
  
   
    font-weight: 600;
}
.attraction-info p {
    margin: 0;
    font-size: 16px;
    color: white;
    align-items:center;
}
/*======== ADMISSION ===========*/

.containerhead {
    width: 90%; 
    max-width: 1200px;
    max-height: 40%;
}
.admissioncontainer h1{
    margin-top: 50px;
    text-align: center;
    margin-bottom: 50px;
}
.toggle-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 180px;
    margin-bottom: 10%;
}
.toggle-buttons {
    flex: 1;
    min-width: 100px; /* Minimum width for responsiveness */
}
.rankcontainer .btn-primary {
    background-color: #0056b3; /* Custom background color */
    background-image: linear-gradient(to right, #007bff, #0056b3); /* Gradient background */
    color: white; /* Text color */
    border-radius: 30px; /* Rounded corners */
    border: none; /* Remove border */
    padding: 10px 20px; /* Increase padding */
    font-size: 16px; /* Increase font size */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.rankcontainer .btn-primary:hover {
    background-color: #004085; /* Darker shade on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}
.section-heading{
    color:#ffc600;
}
.toggle-button {
    padding: 10px 20px;
    border: 1px solid #ccc;
    width: 60%;
    border-radius: 5px;
    cursor: pointer;
    background-color: #ffc600;
    transition: background-color 0.3s;
}
.toggle-button.active {
    background-color: #007bff;
    color: white;
}
.list-group{
    list-style-type: square;
}
.list-group {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0; /* Remove default indentation */
}

.list-group li {
  position: relative;
  font-size: 16px; /* Adjust the text size */
  margin-bottom: 10px; /* Add space between list items */
  padding-left: 30px; /* Create space for the custom bullet */
  width: 50%;
  left: 25%;
}

.list-group li::before {
   content: "●"; /* Round bullet symbol */
  color: #07294d; /* Bullet color */
  font-size: 18px; /* Bullet size */
  position: absolute;
  left:0;
  margin-left:10px;
 
}
.container contactcontainer{
    color:white;
}
#ranklists h2{
    color:#ffc600 ;
}
#eligibility h2,#contact h4{
    color: white;
}
#eligibility, h4{
    color: #ffc600 ;
}
#eligibility i{
    margin-right: 10px;
}
#courses h4{
    color: #004085;
}
#contact h2{
    color: #ffc600 ;
}
#contact i{
    margin-right: 10px;
}
.webteam{
    font-weight:900;
    font-size:40px;
}
.normscontainer p,li{
    color: white;
}
.adminorms{
    list-style-type: square;
}
.adminorms {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0; /* Remove default indentation */
}

.adminorms li {
  position: relative;
  font-size: 16px; /* Adjust the text size */
  margin-bottom: 10px; /* Add space between list items */
  padding-left: 30px; /* Create space for the custom bullet */
}
.adminorms li::before {
  content: "●"; /* Round bullet symbol */
  color: white;
  font-size: 18px; /* Bullet size */
  position: absolute;
  left:0;
  margin-left:10px;
}
.offercontainer li{
    color: black;
}
.contactcontainer p{
    color: wheat;
}
.options {
    display: none;
    margin-top: 5px;
    width: 60%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    background-color: #f9f9f9;
}
.options.active {
    display: block;
}
.options ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.options a{
    text-decoration: none;
    color: black;
}
.options ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}
.options ul li:last-child {
    border-bottom: none;
}
/*.ad_cont p{*/
/*   margin-left:50px;*/
    
/*}*/

/* Media query for mobile screens */
@media (max-width: 768px) {
    .toggle-container {
        flex-direction: column;
        align-items: stretch;
    }
   
}
.heading-box {
    background-color: #092e56; /* Blue color */
    color: white;
    padding: 10px;
    border-radius: 0.25rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.normscontainer li,p{
    /* color: white; */
}
#norms h2{
    color: #ffc600 ;
}
.heading-box i {
    font-size: 1rem; /* Adjust icon size */
}
.options {
    
    width: 60%;
}
.btn-spacing {
    margin-bottom: 15px; /* Adjust the spacing between buttons */
}
.button-container {
    display: flex;
    flex-wrap: wrap; /* Ensure wrapping on small screens */
    gap: 10px;
}
.button-container .btn-primary{
    width: 30%;
}
.btn {
    text-align: left; /* Align text to the left inside the button */
}
.rankcontainer .col-md-6 .btn-primary {
    width: 80%;
}
.btn-secondary {
    background-color: #828488;
    width: 400px;
    margin-top: 5px;
}
.btn-secondary i {
    margin-right: 10px;
}
.btn-primary i {
    margin-right: 20px;
}
.rankcontainer .mb-4 .btn-primary{
    width: 20%;
}
#fees .btn-primary{
    width: 20%;
}
/* Base button styles */
.fee-btn {
    flex: 1; /* Allow buttons to grow and fill available space */
    margin: 10px; /* Space between buttons */
    max-width: 20%; /* Maximum width for desktop view */
}

/* Stack buttons one after another on mobile */
@media (max-width: 767.98px) {
    .fee-btn {
        max-width: 80%; /* Maximum width for mobile view */
        margin: 5px auto; /* Centering and spacing on mobile */
    }
}

@media (max-width: 768px) {
    .btn-primary i {
        font-size: 0.9rem; /* Smaller icons on smaller screens */
    }
    #fees .btn-primary{
        width: 50%;
        justify-content: center; /* Center buttons horizontally on small screens */
        text-align: center; /* Center text inside buttons */
    }
    .button-container {
        /* Adjust padding and margin if needed */
        margin: 0 auto; /* Center the container */
    }
    /* Mobile view - stack buttons vertically */
@media (max-width: 767.98px) {
    .d-flex {
        flex-direction: column;
        align-items: flex-start; /* Align buttons to the start */
    }

    .fee-btn {
        width: 100%; /* Make buttons full width */
    }

    .mb-3 {
        margin-bottom: 1rem; /* Add margin between buttons */
    }
}

/* Desktop view - align buttons horizontally */
@media (min-width: 768px) {
    .d-flex {
        flex-direction: row;
        align-items: center; /* Align buttons centrally */
    }

    .fee-btn {
        width: auto; /* Set default width on larger screens */
    }
}

    .container{
        width: 100%;
    }
    .toggle-buttons {
       flex: 1;
       min-width: 100px; /* Minimum width for responsiveness */
    }
    .button-container .btn-primary{
       width: 30%;
    }
    .options {
    width: 80%;
   }
   .btn-secondary {
    background-color: #828488;
    width: 300px;
    margin-top: 5px;
   }
    .toggle-button {
    padding: 10px 20px;
    border: 1px solid #ccc;
    width: 80%;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
   }
   .toggle-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 80px;
    margin-bottom: 10%;
  }
    /* .col-md-6 {
        margin-left: 8%;
    } */
} 
.table-responsive {
    overflow-x: auto; /* Allows horizontal scroll on smaller screens */
}

.table {
    width: 100%; /* Ensure table takes full width */
    margin-bottom: 1rem;
   
    
}

.table th, .table td {
    padding: 12px;
    vertical-align: middle;
    /*text-align: center;*/
    /*background-color:white;*/
    /*color:black;*/
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .table th, .table td {
        font-size: 14px; /* Slightly reduce font size on smaller screens */
        padding: 8px;    /* Adjust padding to fit smaller screens */
    }
}


/*=====================================================
    31. CONTACT PAGE css 
======================================================*/

.contact-from {
    background-color: #fff;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Adds shadow for better visibility */
}

.contact-from .main-form {
    display: flex;
    flex-direction: column;
}

.contact-from .main-form .form-group {
    margin-bottom: 1rem;
}

.contact-from .main-form .form-control {
    width: 100%; /* Ensure full width */
    padding: 0.75rem 1.25rem; /* Adjust padding for better spacing */
    border: 1px solid #a1a1a1;
    border-radius: 5px;
    line-height:1;
    color: #8a8a8a;
    font-size: 15px;
}
.current{
    white-space:break-spaces;
}

.form-group select {
    max-width: 100%; /* Ensure the select element fits within its container */
    overflow-x: auto; /* Adds horizontal scrollbar if needed */
}

.dropdown-menu {
    max-width: 100%; /* Prevents dropdown menu from exceeding parent width */
    overflow-x: auto; /* Adds horizontal scrollbar if needed */
}

@media (max-width: 576px) { /* Mobile view adjustments */
    .contact-from {
        padding: 20px; /* Reduce padding on smaller screens */
    }

    .contact-from .main-form .form-control {
        padding: 0.5rem; /* Adjust padding for smaller screens */
        font-size: 13px; /* Adjust font size for smaller screens */
    }

    .form-group select {
        max-width: 100%;
        font-size: 14px; /* Adjust font size for smaller screens */
    }
}

.contact-address{
    background-color: #fff;
    padding: 20px 50px 50px;
    border-radius: 5px;
}

.cont p{
    color: #000;
}

.contact-address ul li{
    padding-top: 30px;
}
.contact-address ul li .singel-address{
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-address ul li .singel-address .icon i{
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    border: 1px solid #07294d;
    color: #07294d;
    font-size: 24px;
    text-align: center;
}
.contact-address ul li .singel-address .cont{
    padding-left: 20px;
}
.contact-address ul li .singel-address .cont p{}

.map{}
.map #contact-map{
    width: 100%;
    height: 225px;
}

.map.map-big #contact-map{
    width: 100%;
    height: 415px;
}
.contact-address .contact-heading{
	padding-top: 35px;
}

.contact-address .contact-heading h5{
	padding-bottom: 15px;
}


#used-tools {
    background-color: #f9f9f9;
}

.tool-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
}

.tool-item .icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 15px;
}

.tool-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.tool-item p {
    color: #777;
}

.tool-item:hover {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

/*=====================================================
     placement  css 
======================================================*/
  .placement_container {
            width: 100%;
            margin-top: 30px;
            position: relative;
        }

        .placement {
            font-size: 32px;
            font-weight: 700;
            font-family: 'Roboto', sans-serif;
            color: #008080; /* Teal */
            text-align: center;
            margin-bottom: 30px;
            letter-spacing: 1.5px;
        }

        /* Profile Card Styling */
        .card_plc {
            width: 320px;
            height: 420px;
            margin: 0 10px;
            padding: 20px;
            transition: all 0.4s ease;
            background-image: linear-gradient(to bottom, #003366, #66a3ff);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            margin-top: 10px;
        }

        .card_plc:hover {
            transform: translateY(-10px);
        }

        .img {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

      .card_plc h3, h4 {
            margin: 0;
            text-align: center;
            /* color: #f8f9fa; */
        }

       .card_plc h3 {
            font-size: 20px;
            font-weight: 900;
            margin-bottom: 10px;
            color: #f8f9fa;
        }

       .card_plc h4 {
            font-size: 16px;
            font-weight: 900;
            color: #07294d; /* Teal */
        }
        .card_plc h5{
            color: #ffffff;
            font-weight: 900;
        }

        .card_plc span {
            font-size: 14px;
            color: #ffffff; /* Light Gray for less important text */
            font-weight: 800;
        }

        /* Swiper Carousel */
        .swiper-container {
            margin-bottom: 30px;
            
        }
        .swiper-wrapper{
            margin-bottom: 10px;
        }
        .swiper-slide {
            width: auto;
            display: flex;
            justify-content: center;
        }

        .swiper-button-prev, .swiper-button-next {
            color:#07294d ; /* Teal */
            font-size: 22px;
            display: block;
        }

        @media (max-width: 768px) {
            .card_plc {
                width: 85vw;
            }

            .swiper-button-prev, .swiper-button-next {
                display: none;
            }
        }
/*=====================================================
    13. slider css 
======================================================*/
/* .content {
    padding: 7rem 0; } */
.media-29101 img{
    border:2px  #4974a1 solid;
    height: 250px;
    width: 330px;
    margin-top:50px;
    margin-bottom:10px;
    border-radius: 10px;
}
.media-29101 video{
    height: 250px;
    width: 330px;
     margin-top:50px;
    margin-bottom:10px;
    
}
 /*.owl-2-style .media-29101:hover img {
            transform: scale(1.05);  Slight zoom effect */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);  Shadow effect
        transition: transform 0.5s ease;
        }  */
  .gal_btn{
      position:relative;
      bottom:30px;
  }
.owl-2-style .owl-nav {
  display:none;}

.owl-2-style .owl-dots {
  text-align: center;
  position: relative;
  left: 40px;
  bottom: -75px; 
}
.owl-2-style .owl-dots .owl-dot {
  display: none;
}
.owl-2-style .owl-dots .owl-dot span {
  display: inline-block;
  width: 15px;
  height: 3px;
  border-radius: 0px;
  background: #cccccc;
  -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  margin: 3px; 
}
.owl-2-style .owl-dots .owl-dot.active span {
  background: #0f1f40;
}
.owl-2-style .owl-dots .owl-dot:active, .owl-2-style .owl-dots .owl-dot:focus {
  outline: none; 
}
.gal{
  position:relative;
  left:50%;
  top:30px;
}
@media (max-width: 767px) {
    .owl-carousel img {
        transform: scale(1); /* No scale on mobile */
    }
}
/*.media-29101 img:hover{*/
/*    transform:scale(0.5);*/
/*}*/
/*@media screen and (max-width: 600px) {*/
/*    .media-29101 img {*/
/*        height: 250px;*/
/*    }*/
/*}*/
@media (min-width: 768px) { /* Adjust the width as needed for desktop */
    .owl-2-style .media-29101:hover img {
        transform: scale(1.05); /* Slight zoom effect */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Shadow effect */
        transition: transform 0.5s ease;
    }
}

@media (max-width: 767px) { /* For mobile, disabling the effect */
    .owl-2-style .media-29101:hover img {
        transform: none;
        box-shadow: none;
    }
}

 @media(max-width:768px){
       .gal{
        position:relative;
        left:45%;
        /*bottom:35px;*/
    }
     .media-29101 img {
       height: 250px;
    }
    .owl-2-style .owl-dots .owl-dot span{
        display: inline-block;
        width: 10px;
        height: 3px;
        position: relative;
        right:30px;
        bottom: 20px;
    }
}
/*=====================================================
    Achievement css 
======================================================*/

.singel-event-list{
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height:200px;
    box-shadow:2px 2px 4px #cecbca ;
}

.singel-event-list .event-thum {
	width: 38%;
}
.singel-event-list .event-thum img{
    width: 100%;
    border-radius: 5px;
}
.singel-event-list .event-cont {
	width: 62%;
    padding-left: 30px;
}

.singel-event-list .event-cont span {
	font-size: 14px;
	color: #8a8a8a;
	margin-right: 20px;
}
.singel-event-list .event-cont span i {
	color: #ffc600;
	margin-right: 3px;
}
.singel-event-list .event-cont a {
	display: block;
}
.singel-event-list .event-cont a h4 {
	padding-top: 5px;
	padding-bottom: 10px;
	color: #000;
	font-size: 20px;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.singel-event-list .event-cont a:hover h4 {
    color: #ffc600;
}
/*=====================================================
    Coming soon css 
======================================================*/
.soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.soon-icon {
    width: 50px; /* Adjust size as needed */
    height: auto;
    margin-left: 10px; /* Space between the text and icon */
}

h1 {
    font-size: 1.5em;
}