/*------------------------- Fonts ---------------------------*/
@font-face {
    font-family: 'quattrocento_sansregular';
    src: url('../fonts/quattrocentosans-regular-webfont.eot');
    src: url('../fonts/quattrocentosans-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/quattrocentosans-regular-webfont.woff') format('woff'), url('../fonts/quattrocentosans-regular-webfont.ttf') format('truetype'), url('../fonts/quattrocentosans-regular-webfont.svg#quattrocento_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'rokkittbold';
    src: url('../fonts/rokkitt-bold-webfont.eot');
    src: url('../fonts/rokkitt-bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/rokkitt-bold-webfont.woff') format('woff'), url('../fonts/rokkitt-bold-webfont.ttf') format('truetype'), url('../fonts/rokkitt-bold-webfont.svg#rokkittbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'rokkittregular';
    src: url('../fonts/rokkitt-regular-webfont.eot');
    src: url('../fonts/rokkitt-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/rokkitt-regular-webfont.woff') format('woff'), url('../fonts/rokkitt-regular-webfont.ttf') format('truetype'), url('../fonts/rokkitt-regular-webfont.svg#rokkittregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*------------------------- Web Layout Styles ------------------------*/
body {
    background: url(../images/bg-body.jpg);
    margin: 0;
    font-size: 100%;
    font: 15px Arial, sans-serif;
    vertical-align: baseline;
    flex-direction: column;
}

/*------------------------- Header style starts here -------------------------*/
.header {
    padding: 0 0 6px 0;
    height: auto;
    background: black;
    z-index: 3;
    width: 100%;
    border-top: 8px solid rgb(54, 90, 114);
    -moz-box-shadow: inset 10px 10px 50px #fff;
    -webkit-box-shadow: inset 10px 10px 50px #fff;
    box-shadow: inset 10px 10px 50px rgb(54, 90, 114);
}

p a {
    color: rgb(54, 90, 114);
    text-decoration: none;
    outline: none;
}

a img {
    border: 0;
    display: block;
}

.logo img {
    color: white;
    font-size: 16pt;
    text-align: ceter;
    width: 60%;
    padding: 5px;
}


/* General container styling */
#event-categories {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Section headers */
#event-categories h2,
#event-categories h3 {
    color: #333;
    margin-bottom: 20px;
}

/* Event item styling */
.event-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-item h4 {
    color: #0056b3;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.event-item p {
    color: #555;
    font-size: 1em;
    margin-bottom: 10px;
}

.event-item p strong {
    color: #333;
}

/* Action links styling */
.event-item a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.event-item a:hover {
    text-decoration: underline;
}

/* Section dividers */
#event-categories hr {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 20px 0;
}

/* Calendar Container */
#calendar {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

/* Calendar Header */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    padding: 10px;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
}

.calendar-header a {
    text-decoration: none;
    color: #007bff;
    font-size: 20px;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 1px;
}

/* Day Headers */
.day-header {
    background-color: #f5f5f5;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

/* Calendar Days */
.calendar-day {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}

.calendar-day.empty {
    background-color: #f5f5f5;
}

/* Event Title */
.event-title {
    background-color: #007bff;
    color: white;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 12px;
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
}

/* Event Details */
.event-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px 0;
}

.event-item h4 {
    margin: 0 0 10px;
}

.event-item p {
    margin: 0 0 10px;
}

.event-item strong {
    display: inline-block;
    width: 150px;
}


/*  Main  page (resultsp div) content section  */
.resultsp {
    background: #fff url(../images/bg-body.png);
    font-size: 12pt;
    color: #000;
    width: 100%;
    float: left;
    position: relative;
}

.resultsp a {
    text-decoration: none;
    color: rgb(54, 90, 114);
    font-size: 10pt;
}

/* Universal Heading Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin: 0.5em 0;
    padding: 0.25em 0.5em;
    /* Optional subtle universal background */
    /* background-color: rgba(0, 0, 0, 0.03); */
    border-radius: 4px;
    width: fit-content;
    max-width: 100%;
    word-wrap: break-word;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #222;
    /* Optional accent border */
    border-left: 4px solid #25D366;
}

h2 {
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    color: #333;
    border-left: 4px solid orange;
}

h3 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: #444;
    border-left: 4px solid #25D366;
}

h4 {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    color: #555;
}

h5 {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: #666;
}

h6 {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #777;
    font-weight: 500;
}

/* Small screens adjustment */
@media (max-width: 768px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        padding: 0.2em 0.4em;
        margin: 0.4em 0;
    }
}

.resultsp div i {
    color: rgb(54, 90, 114);
    margin-right: 0.8%;
    font-size: 100%;
}

.resultsp ol {
    color: #000;
}

.resultsp a:hover {
    color: rgb(54, 90, 114);
}


/* Style for sidebar notification settings */
.links {
    background: #fff url(../images/bg-body.png);
    font-size: 12pt;
    color: #000;
    width: 100%;
    float: left;
    position: relative;
    padding: 3px;
}

.links a {
    width: 100%;
    color: rgb(54, 90, 114);
    text-align: left;
    padding: 5px;
    display: inline-block;
    font-size: 8pt;
    font-family: arial;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.links h1 {
    text-align: center;
    background: rgb(106, 105, 105);
    border-radius: 1px;
    border: 1px solid rgb(54, 90, 114);
    ;
    color: rgb(6, 6, 6);
    padding: 5px;
    font-size: 14pt;
    font-variant: small-caps;
}

.links h3 {
    background: rgba(91, 89, 89, 0.599);
    border-radius: 1px;
    border: 1px solid rgb(54, 90, 114);
    color: rgb(8, 7, 7);
    padding: 5px;
    font-size: 14pt;
    font-variant: small-caps;
}

.links h2 {
    background: white;
    border-radius: 1px;
    border: 1px solid rgb(54, 90, 114);
    color: rgb(54, 90, 114);
    padding: 5px;
    font-size: 15pt;
    font-variant: small-caps;
}

.links textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid rgb(54, 90, 114);
    width: 100%;
    outline: none;
    overflow: auto;
    border-radius: 2px;
    max-width: 100%;
}

.links li {
    display: inline-block;
    padding: 0;
    line-height: 0;
    width: 100%;
}

.links a {
    color: rgb(54, 90, 114);
    text-align: left;
    padding-left: 20px;
    display: inline-block;
    font-size: 12pt;
    font-family: tahoma;
}

.links a:hover {
    color: orange;
}

/*---------------------------index page setting---------------------------------*/
/* Sidebar Page Settings */
.sidebar,
.edit {
    background: url(../images/brushed.png);
    width: 21%;
    float: left;
    color: #000;
    font-weight: bold;
    position: relative;
    text-align: left;
    padding: 10px;
}

/* Used for news image display */
.sidebars,
.edits {
    background: url(../images/brushed.png);
    width: 21%;
    float: left;
    color: #000;
    font-weight: bold;
    position: relative;
    text-align: left;
    padding: 10px;
}

/*- sidebar hover settings -*/
.sidebar a:hover {
    color: orange;
}

/* Contents Page Settings */
.contents {
    float: left;
    width: 79%;
    text-align: justify;
    background: #fff;
    position: relative;
    padding: 12px;
}

.sidebar p {
    background: rgba(54, 90, 114, 0.7);
    padding: 3px;
    color: #fff;
}

.sidebar ul li {
    color: white
}

body a:hover {
    color: rgb(54, 90, 114);
}

/* Image Gallery for Courses front Page and Program Pages */
div.gallery {
    margin: 5px;
    border: 1px solid rgb(54, 90, 114);
    float: left;
    width: 31.6%;
    text-align: center;
    background: #fff;
    font-family: arial bold;
    color: rgb(54, 90, 114);
}

div.gallery .trancate {
    font-weight: bold;
    font-size: 12pt;
    font-family: arial bold;
    border-radius: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 16px;
    color: #fff;
}



/*- Div gallery hover settings for button and h4 -*/
.gallery:hover,
.button:hover {
    border: 1px solidrgb(42, 4, 85);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-transition: background-color .25s, color .15s, box-shadow .25s, opacity 0.25s, filter 0.25s, border 0.15s;
    transition: background-color .25s, color .15s, box-shadow .88s, opacity .25s, filter .25s, border .15s;
}

.trancate a:hover {
    background: rgb(54, 90, 114);
}

div.gallery img {
    width: 100%;
    height: 135px;
}

.gallery h4 {
    width: 100%;
    font-size: 14pt;
    background: lightgrey;
    color: black;
    padding-top: 7px;
    padding-bottom: 7px;
    font-family: Tahoma;
    margin-top: -6px;
}

div.desc {
    padding: 15px;
    text-align: justify;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Style the button that is used to open and close the collapsible content */
.collapsibles {
    background: white;
    color: #000;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: solid rgb(54, 90, 114);
    text-align: left;
    outline: none;
    font-size: 15px;
    border-radius: 5px;
}

/* Add a background color to the collapsible button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.collapsibles:hover {
    background: silver;
    color: black
}

/* Style the collapsible content. Note: it is hidden by default */
.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background: white;
}

.collapsibles:after {
    content: '+';
    /* symbol or character for "plus" sign (+) */
    font-size: 13px;
    color: black;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "x";
    /* symbol or character for "times" sign (x) */
}

.containers {
    display: grid;
    grid-template-columns: repeat(auto-fit, 335px);
    grid-row-gap: 1px;
    grid-column-gap: 0;
    justify-content: center;
    width: 96%;
    list-style: none;
    background-color: rgba(128, 0, 128, 0.1);
    padding: 0;
}

.containers.item {
    padding: 12px;
    background-color: grey;
}

/*-------- make the web style of all screen sizes responsive here--------*/
/* start of big laptop styles */
@media only screen and (max-width:1024px) {
    .sidebar {
        width: 21%;
    }

    .contents {
        width: 73%;
    }
}

/* start of small laptop styles */
@media only screen and (max-width:900px) {
    .contents {
        width: 100%;
    }

    .sidebar,
    .logo,
    .footers {
        background: white;
        Display: none;
    }

    .forms input {
        width: 100%;
    }
}

/*start of large tablet screens*/
@media only screen and (max-width: 768px) {
    .menu-wrapper a {
        z-index: 3;
        color: rgb(54, 90, 114);
        font-variant: small-caps;
    }

    div.gallery {
        margin: 2px;
        width: 100%;
    }

    .contents {
        width: 100%;
    }

    .sidebar,
    .logo,
    .footers {
        background: white;
        Display: none;
    }

}

.forms input {
    width: 100%;
}
}

/* Web styles for screen 600px and lower*/
@media screen and (max-width: 640px) {

    .contents {
        width: 100%;
    }

    .sidebar,
    .logo,
    .footers {
        background: white;
        Display: none;
    }

    div.gallery {
        margin: 2px;
        width: 100%;
    }

    .forms input {
        width: 100%;
    }
}

/* Web styles for screen 515px and lower*/
@media only screen and (max-width : 515px) {
    #aims {
        width: 100%;
    }

    .contents {
        width: 100%;
    }

    .sidebar,
    .logo,
    .footers {
        background: white;
        Display: none;
    }

    div.gallery {
        margin: 2px;
        width: 100%;
    }

    .footer {
        width: 100%;
        padding: 0;
        text-align: center;
        background: white;
    }

    .forms input {
        width: 100%;
    }
}

/*Web Styles for Smartphone*/
@media only screen and (max-width : 320px) {
    .contents {
        width: 100%;
    }

    .sidebar,
    .logo,
    .footers {
        background: white;
        Display: none;
    }

    div.gallery {
        margin: 2px;
        width: 100%;
    }

    .sidebar {
        background: white;
        Display: none;
    }

    .forms input {
        width: 100%;
    }
}

.alert {
    padding: 20px;
    background-color: #f44336;
    color: white;
    opacity: 1;
    transition: opacity 0.6s;
    margin-bottom: 15px;
}

.alert.success {
    background-color: #4CAF50;
}

.alert.info {
    background-color: #2196F3;
}

.alert.warning {
    background-color: #ff9800;
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

.containers {
    padding: 16px;
    background: #fefefe;
}

span.psw {
    float: right;
    padding-top: 16px;
}



/* Style the tab */
.user {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap;
    /* IE10 */
    flex-wrap: wrap;
    margin: 0 -16px;
}

.col-25 {
    -ms-flex: 25%;
    /* IE10 */
    flex: 25%;
}

.col-50 {
    -ms-flex: 50%;
    /* IE10 */
    flex: 50%;
}

.col-75 {
    -ms-flex: 75%;
    /* IE10 */
    flex: 75%;
}

.col-25,
.col-50,
.col-75 {
    padding: 0 16px;
}

.container {
    background-color: #f2f2f2;
    padding: 5px 20px 15px 20px;
    border: 1px solid lightgrey;
    border-radius: 3px;
}


label {
    margin-bottom: 10px;
    display: block;
}

.icon-container {
    margin-bottom: 20px;
    padding: 7px 0;
    font-size: 24px;
}

span.price {
    float: right;
    color: grey;
}

/* Responsive layout - when the screen is less than 900px wide, make the two columns stack on top of each other instead of next to each other (and change the direction - make the "cart" column go on top) */
@media (max-width: 900px) {
    .row {
        flex-direction: column-reverse;
    }

    .col-25 {
        margin-bottom: 20px;
    }

    .card {
        flex-direction: column-reverse;
    }
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid rgb(54, 90, 114);
    background: white;
}

.tabcontent input {
    border: 1px solid rgb(54, 90, 114);
    padding: 2px;
    font-size: 9pt;
}

/* Style the buttons that are used to open the course tab contents */
.tab button {
    background: inherit;
    float: left;
    border: 1px solid #fff;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    color: white;
    border-radius: 12px;
}

/* Change background color of course tab buttons on hover */
.tab button:hover {
    background: orange;
}

/* Create an active/current course tablink class */
.tab button.active {
    background-color: orange;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid rgb(54, 90, 114);
    border-top: none;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}


/* Basic Styles for Navigation Menu */
.topnav {
    background: rgba(236, 233, 233, 0.9);
    overflow: visible;
    /* Ensure overflow is visible */
    border-bottom: 7px solid rgb(54, 90, 114);
    border-top: 7px solid orange;
    width: 100%;
    /* Ensure navigation bar spans full width */
    box-sizing: border-box;
    /* Include padding and border in width calculation */
    position: relative;
    /* Ensure position is relative for z-index to work */
    display: flex;
    /* Use flexbox for easier alignment */
    justify-content: space-between;
    /* Align items with space between them */
    align-items: center;
    /* Center items vertically */
    padding: 10px 20px;
    /* Adjust padding for better spacing */
}

.topnav a {
    color: orange;
    text-align: center;
    text-decoration: none;
    font-size: 11pt;
    font-weight: bold;
    font-variant: small-caps;
    border: none;
    padding: 14px 16px;
    display: block;
}

.topnav a:hover {
    background: orange;
    color: rgb(54, 90, 114);
}

.topnav .icon {
    display: none;
}

.dropdown {
    position: relative;
    /* Ensure relative positioning */
}

.dropdown .dropbtn {
    outline: none;
    color: rgb(54, 90, 114);
    padding: 14px 16px;
    background: inherit;
    font-family: inherit;
    margin: 0;
    font-size: 11pt;
    font-weight: bold;
    font-variant: small-caps;
    border: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(214, 216, 214, 0.9);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
    /* Ensure dropdown content appears above other elements */
    left: 0;
    width: 100%;
    /* Ensure dropdown content spans full width initially */
}

.dropdown-content a {
    color: rgb(54, 90, 114);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 11pt;
    font-weight: bold;
    font-variant: small-caps;
}

.dropdown-content a:hover {
    background: rgba(0, 128, 0, 0.1);
    color: white;
    font-size: 10pt;
}

.dropdown:hover .dropdown-content {
    display: block;
    width: 100%;
    /* Ensure dropdown content spans full width when shown */
}

@media screen and (max-width: 600px) {
    .topnav {
        flex-direction: column;
        /* Stack items vertically on small screens */
        align-items: flex-start;
        /* Align items to the start */
        padding: 10px;
        /* Adjust padding for better spacing */
    }

    .topnav a:not(:first-child),
    .dropdown .dropbtn {
        display: none;
    }

    .topnav a.icon {
        display: block;
        /* Display the menu icon */
        position: absolute;
        right: 10px;
        /* Adjust position as needed */
        top: 10px;
        /* Adjust position as needed */
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
        width: 100%;
        /* Full width for responsive menu items */
        padding: 10px;
        /* Adjust padding for better spacing */
    }

    .topnav.responsive .dropdown {
        position: relative;
        /* Reset position for responsive dropdown */
    }

    .topnav.responsive .dropdown-content {
        position: relative;
        left: auto;
        /* Reset left position for dropdown content */
        width: 100%;
        /* Full width for responsive dropdown */
    }

    .topnav.responsive .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: left;
    }
}


/*------------------------- Profile card (layout) styles starts here ------------------------*/
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 100%;
    margin: auto;
    text-align: center;
    padding: 12px;
}

.title {
    color: grey;
    font-size: 18px;
}

a {
    text-decoration: none;
    font-size: 22px;
    color: rgb(54, 90, 114);
}

button:hover,
a:hover {
    opacity: 0.7;
}

/*--- end of header here ----*/

/* set a style for all buttons */
button,
.button {
    background: #fff;
    padding: 10px 15px;
    margin: 8px 0;
    border: 1px solid rgb(54, 90, 114);
    color: rgb(54, 90, 114);
    cursor: pointer;
    max-width: 100%;
    text-align: center;
    font-variant: small-caps;
    border-radius: 5px;
}

button:hover {
    opacity: 0.8;
}


.btn {
    background: rgba(54, 90, 114, 0.9);
    border: none;
    /* Remove borders */
    color: white;
    /* Add a text color */
    padding: 8px 14px;
    /* Add some padding */
    cursor: pointer;
    /* Add a pointer cursor on mouse-over */
    font-size: 10pt;
}

.success {
    background-color: #4CAF50;
}

/* Green */
.success:hover {
    background-color: #46a049;
}

.info {
    background-color: #2196F3;
}

/* Blue */
.info:hover {
    background: #0b7dda;
}

.warning {
    background-color: #ff9800;
}

/* Orange */
.warning:hover {
    background: #e68a00;
}

.danger {
    background-color: #f44336;
}

/* Red */
.danger:hover {
    background: #da190b;
}

.default {
    background-color: #e7e7e7;
    color: black;
}

/* Gray */
.default:hover {
    background: #ddd;
}

a {
    text-decoration: none;
    color: rgb(54, 90, 114);
}

/*-----------------------animated hover and common --------------------*/
#marquees {
    border-radius: 12px;
    background: grey;
    color: white;
    padding: 6px 0 4px 0;
    font-family: Tahoma;
    font-weight: bold;
    margin-left: 10.0%;
    margin-right: 10.0%;
    margin-bottom: 0px;
}

.row {
    background: syblue;
    color: white;
    padding: 6px 0 4px 0;
    font-family: sans-serif;
    margin-left: 0.0%;
    margin-bottom: 3px;
    margin-top: 3px;
    width: 1007px;
}

/* The index page slideshow css code starts here */
.form {
    background: rgb(54, 90, 114);
    width: auto;
    padding: 20px;
    border-radius: 5px;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    backdrop-filter: blur(5px);
}

/* The index page slideshow css code starts here */
.section {
    background: url(../images/bg-image.jpg) rgb(54, 90, 114);
    width: auto;
    padding: 20px;
    border-radius: 1px;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    backdrop-filter: blur(5px);
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    height: 200px;
    /* Ensure the container has enough height */
}

.mySlides {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    /* Ensure the slide fills the container */
    border-radius: 5px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*This ensures that the entire image is visible within the container and maintains its aspect ratio.*/
    object-position: center;
}


.cont,
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    background-color: rgba(231, 134, 8, 0.9);
    /* powderblue background color with transparency for content */
    z-index: 3;
    /* Ensure elements are above the content */
}

.cont {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    background-color: rgba(255, 253, 208, 0.5);
    /* blue background color with transparency */
    color: white;
    /* Text color */
    padding: 20px;
    box-sizing: border-box;
    /* Ensure padding doesn't increase element size */
    border-radius: 12px;
}

.cont p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* Number of lines to show */
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    /* Assuming 1.5em per line for line height */
}

.cont h1,
.cont p,
.cont .buttons {
    margin: 0;
    /* Remove default margins */
}

.buttons {
    margin-top: 10px;
}

.buttons button {
    padding: 10px 20px;
    background-color: #FFA500;
    /* Orange background color */
    color: white;
    border: none;
    cursor: pointer;
}

.buttons button:hover {
    background-color: #FF8C00;
    /* Darker orange for hover */
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
    background-color: rgba(255, 253, 208, 1);

}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
    background-color: rgba(255, 253, 208, 1);
}

.prev:hover,
.next:hover {
    background-color: #333;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active,
.dot:hover {
    background-color: #717171;
}

/* Style inputs, select elements and textareas */
input[type=text],
input[type=email],
input[type=file],
input[type=password],
input[type=password],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
}

/*------------------------- profile picture upload style (layout) styles starts here ------------------------*/
.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile+label {
    font-size: 1.25em;
    font-weight: 700;
    color: white;
    background: rgb(54, 90, 114);
    display: inline-block;
    font-size: 8pt;
    border-radius: 6px;
    text-transform: uppercase;
    padding: 6px;
}

.inputfile:focus+label,
.inputfile+label:hover {
    background-color: rgb(54, 90, 114);
}

.inputfile+label {
    cursor: pointer;
    /* "hand" cursor */
}

.inputfile:focus+label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

/* Style the label to display next to the inputs */
label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

.inputfile+label * {
    pointer-events: none;
}

/* Style the submit button */
input[type=submit] {
    background-color: rgb(54, 90, 114);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

/* Style the container */
.forms {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    width: 100%;
}

/* Floating column for labels: 25% width */
.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.rows:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

    .col-25,
    .col-75,
    input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}

/*------------------------------table style---------------------------*/
.table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    max-width: 100%;
    border: 1px solid #ddd;
    font-size: 12pt;
}

table a {
    font-size: 12pt;
}

th,
td {
    text-align: left;
    padding: 3px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

/*------------------------- semester registration and balance payment  form (layout) styles starts here ------------------------*/
.register input,
.textarea,
select {
    width: 49%;
    font-size: 10pt;
    text-align: left;
    padding: 10px;
    margin: 2.50px;
    border: 1px solid rgb(54, 90, 114);
    letter-spacing: 1px;
    display: inline-block;
}

/* Footer Div CSS code starts here!*/
.footer {
    background: rgb(54, 90, 114);
    color: #fff;
    padding: 10px 0 10px 0;
    width: 100%;
    font-variant: small-caps;
    clear: both;
}

/* -- Footer end up here and Footer Link Settings beggins Here -- */

.footer a {
    color: rgb(54, 90, 114);
    text-align: center;
    letter-spacing: 2px;
    font-variant: small-caps;
}

.footer a:hover {
    color: rgb(54, 90, 114);
}

.footer h1 {
    color: orange;
    font-size: 16pt;
    padding: 8px;
    text-align: left;
}

.sharer {
    background: grey;
    color: #fff;
    font-weight: bold;
    padding: 10px 0 10px 0;
    width: 98%;
    border-radius: 2px;
    clear: both;
}

.sharer a {
    color: orange;
    text-align: center;
    letter-spacing: 2px;
}

.sharer a:hover {
    color: rgb(54, 90, 114);
}

/*Footer Settings */
.footers {
    text-align: left;
    color: white;
    padding: 10px;
    width: 23%;
    float: left;
    height: 245px;
    font-variant: small-caps;
}

.footers li {
    display: inline-block;
    padding: 0;
    line-height: 0;
}

.footers a {
    color: white;
    text-align: left;
    padding: 7px;
    display: inline-block;
    font-size: 8pt;
    font-family: tahoma;
    font-variant: small-caps;
}

.footers a:hover {
    color: orange;
}

.footers h1 {
    font-variant: small-caps;
}

/*Social Icons */
.faico {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faico a {
    display: block;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
    text-align: center;
}

.faico a:hover {
    color: rgb(54, 90, 114);
    background: silver;
}

.faico li {
    display: inline-block;
    margin: 0 1.5px 0 0;
    padding: 0;
    line-height: normal;
}

.faico li:last-child {
    margin-right: 0;
}

.fa-twitter:hover {
    color: #00ACEE;
}

.fa-facebook:hover {
    color: blue;
}

.fa-whatsapp:hover {
    color: limegreen;
}

.fa-youtube:hover {
    color: red;
}

.fa-instagram:hover {
    color: #0E76A8;
}

.fa-paypal:hover {
    color: #0E76A8;
}

#icons {
    font-size: 18pt;
}