@charset "utf-8";
/* CSS Document */
/* Color Codes: 
   #179bd7, #55ABDA (light blue)
   #03274B (dark blue)
   #003300 (dark green)
   #f6783a (orange highlight)
   #f44336 (dark red)
   #993399 (purple)
   #006DB0 (light blue)
   #002060 (dark blue)
*/

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Georgia, "Times New Roman", Times, serif;
}

/* Top Header */
.topheader {
    width: 100%;
    display: flex;
    padding-top: 5px;
    background-color: #006DB0;
}

/* Logo and Header Styling */
.wrap {
    width: 100%;
    height: 110px; /* Adjusted for header height */
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/* Menu Styling */
.menu {
    margin-right: 10px;
    padding: 25px;
}

.menu li {
    position: relative;
    display: inline-block;
    margin-right: 20px;
    padding: 0;
    background: #179bd7;
}

.menu li a {
    color: #000;
    transition: 0.5s;
    background-color: #179bd7;
    display: inline-block;
}

.menu li a:hover {
    color: #FFF;
    border-bottom: solid #003300;
}

/* Column Layouts */
.column {
    float: left;
    width: 25%;
    padding: 5px;
}

.column3 {
    float: left;
    width: 31%;
    padding: 10px;
}

.colcenter, .coldept {
    background: #fcfcfc;
    align-content: center;
    padding: 10px;
    box-sizing: border-box;
    line-height: 1.8;
}

.colcenter {
    width: 60%;
    float: left;
}

.coldept {
    width: 65%;
    float: right;
}

.indcol1, .indcolnews {
    float: left;
    width: 25%;
    padding: 10px;
    line-height: 1.8;
}

.indcolnews {
    background: #E9E9E9;
    border: solid #006DB0;
    animation: mymove 4s infinite;
}

.indcolprincipal {
    width: 65%; /* Desktop view */
    float: left;
    background: #f5f5f5;
    align-content: center;
    padding: 10px;
    box-sizing: border-box;
    line-height: 1.8;
}

/* Full width for mobile view */
@media screen and (max-width: 768px) {
    .indcolprincipal {
        width: 100%; /* Full width on mobile */
        float: none; /* Remove floating to center it */
    }
}

/* Gradient Text */
.multicolortext {
    background-image: linear-gradient(to left, #006DB0, #002060);
    -webkit-background-clip: text;
    color: transparent;
}

/* Keyframes Animation */
@keyframes mymove {
    50% { border: 5px dashed #002060; }
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
    /* Full-width logo */
    .wrap img {
        width: 100%;
    }
    
    /* Column stacking */
    .column, .colcenter, .coldept, .column3, .column4, .colnews, .colslide {
        width: 100%;
    }

    /* Menu Button on Mobile */
    .menu-btn {
        display: block;
        background-color: #ffc000;
        color: white;
        padding: 10px;
        border: none;
        cursor: pointer;
        text-align: center;
        width: 100%;
    }

    .menu {
        display: none; /* Hidden on mobile, toggled with JavaScript */
    }
}

/* Hover Effects */
.image-hover-zoom {
    display: block;
    overflow: hidden;
}

.image-hover-zoom img {
    transition: all 0.20s linear;
}

.image-hover-zoom:hover img {
    transform: scale(1.1);
}



/* Scroll-to-Top Button */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    font-size: 18px;
    background-color: red;
    color: white;
    padding: 15px;
    border-radius: 4px;
    cursor: pointer;
}

#myBtn:hover {
    background-color: #555;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}