@charset "UTF-8";

/* ==================== MAIN MENU ==================== */
#cssmenu {
    background: #000000;
    border-top: 4px solid #cc0000;
    width: 990px;
    margin: 0 auto;
    position: relative;
    font-family: Calibri, Tahoma, Arial, sans-serif;
    z-index: 1000;
}

#cssmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#cssmenu > ul > li {
    position: relative;
}

/* Top Level Links */
#cssmenu > ul > li > a {
    color: #fff;
    padding: 13px 20px;
    display: block;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}

#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
    background: #cc0000;
}

/* ==================== SECOND LEVEL DROPDOWN ==================== */
#cssmenu ul ul {
    background: #b8b2b2;
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    display: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 6px 0;
    border-top: 3px solid #cc0000;
    text-align: left;
}

#cssmenu ul ul li a {
    color: #000;
    padding: 12px 20px;
    display: block;
    font-weight: 600;
    font-size: 14.5px;
    text-align: left;
}

#cssmenu ul ul li a:hover {
    background: #e0dcdc;
    color: #cc0000;
}

/* ==================== THIRD LEVEL DROPDOWN (Fixed) ==================== */
#cssmenu ul ul ul {
    background: #b8b2b2;
    position: absolute;
    top: 0;
    left: 100%;
    width: 260px;
    display: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    padding: 6px 0;
    border-top: 3px solid #cc0000;
    border-left: 3px solid #cc0000;
}

#cssmenu ul ul li {
    position: relative;
}

/* Show Second Level */
#cssmenu > ul > li:hover > ul {
    display: block;
}

/* Show Third Level */
#cssmenu ul ul li:hover > ul {
    display: block;
}

/* ==================== PURE CSS HAMBURGER ==================== */
#cssmenu .hamburger {
    display: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

#cssmenu .hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s;
}

#cssmenu .hamburger span:nth-child(1) { top: 0; }
#cssmenu .hamburger span:nth-child(2) { top: 10px; }
#cssmenu .hamburger span:nth-child(3) { top: 20px; }

#cssmenu .hamburger:hover span {
    background: #ff3333;
}

@media (max-width: 992px) {

    #cssmenu .hamburger {
        display: block !important;
    }

    #main-menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #000000;
        z-index: 1100;
        padding: 10px 0;
    }

    #main-menu.active {
        display: flex !important;
    }

    /* Centre second-level dropdowns */
    #cssmenu ul ul {
        position: absolute;
        top: 100%;
        left: 50% !important;
        transform: translateX(-50%);
        width: 260px;
        text-align: center;
        box-sizing: border-box;
    }	

    #cssmenu ul ul li a {
        text-align: center;
    }

    /* Third-level menus */
    #cssmenu ul ul ul {
        position: static;
        width: 100%;
        transform: none;
        left: auto;
    }

    #cssmenu ul ul ul li a {
        text-align: center;
    }
}

/* ==================== RESPONSIVE SOCIAL ICONS ==================== */
.social-icons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icons img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    transition: all 0.25s ease;
    object-fit: cover;
}

.social-icons img:hover {
    transform: scale(1.18);
    box-shadow: 0 6px 14px rgba(204, 0, 0, 0.5);
}

/* Smaller on mobile */
@media (max-width: 768px) {
    .social-icons img {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .social-icons img {
        width: 36px;
        height: 36px;
    }
    .social-icons {
        gap: 10px;
    }
}

/* ==========================
   Back To Top Button
   ========================== */

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;              /* Hidden until user scrolls */
    z-index: 9999;
    transition: all 0.3s ease;
}

#back-to-top:hover {
    transform: scale(1.15);
}

#top-icon {
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 0.3em;       /* Matches your buttons */
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
}

#back-to-top:hover #top-icon {
    box-shadow: 0 6px 16px rgba(204, 0, 0, 0.5);
}

/* Mobile adjustment */
@media (max-width: 992px) {
    #back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

body,td,th {
	font-size: 10px;
	color: #FFF;
}

body {
	background-image: url(../../webpageimages/burried.png);
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
}
.circle{
    position: relative;
	border: solid 0.25em #999;  
    border-radius: 2em;
    width: 35px;
    height: 35px;    
}

.circle:hover{
	position: relative;
    border: solid 0.25em #FFF;  
    border-radius: 2em;
    width: 35px;
    height: 35px;
}

.circlepc{
    position: relative;
	border: solid 0.10em #0D0D0D;  
    border-radius: 0.7em;
    width: 100px;
    height: 16px;
	font-size: 9px;
		
}

.box1{
	position: relative;
    border: solid 0.25em #880000;  
    border-radius: 2em;
    width: 220px;
    height: 180px;
    background-color: #000000;
}

.box1:hover{
	position: relative;
    border: solid 0.25em #FFF;  
    border-radius: 2em;
    width: 220px;
    height: 180px;
    background-color: #000000;
}

#box3{
    border: solid 0.1em #000;  
    border-radius: 0.7em;
    width: 700px;
    height: 55px;
	background-color: #000000
}

#box4{
    border: solid 0.1em #666;  
    border-radius: 0.7em;
    width: 185px;
    height: 230px;
	background-color: #000000
}

#box5{
    border: solid 0.1em #666;  
    border-radius: 0.7em;
    width: 185px;
    height: 46px;
	background-color: #000000
}

a:link {
	color: #FFF;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #FFF;
}
a:hover {
	text-decoration: none;
	color: #FFF;
}
a:active {
	text-decoration: none;
	font-size: 10px;
}

.style1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #000;
	font-weight: bold;
}

.style2 {
	font-size: 10px;
	font-weight: normal;
	text-align: left;
	color: #FFF;
}

.style3 {
	font-size: 10px;
	font-weight: normal;
	text-align: left;
	color: #FFF;
}

.style4 {
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	color: #FFF;
}
.style5 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #000;
	font-weight: bold;
}
.style6 {
	font-family: Verdana, Geneva, sans-serif;
	color: #FFF;
	font-size: 16px;
	font-weight: normal;
}
.style7 {
	font-family: Verdana, Geneva, sans-serif;
	color: #FFF;
	font-size: 12px;
	
}

.style8 {
	color: #000000;
	font-weight: bold;
	font-size: 12px;
}
.chart div {
  font: 12px Verdana;
  font-weight: 550;
  background-color:  #325d81;
  border-radius: 0.20em;
  text-align: right;
  padding: 3px;
  margin: 1px;
  color: white;
  width: 13px;
  height: 13px;
}
.boxmenu1{
	position: relative;
    width: 176px;
    height: 30px;
    background-color: #b8b2b2;
}
.boxmenu1:hover{
	position: relative;
    width: 176px;
    height: 30px;
    background-color: #F5F5F5;
}
.default-link{
	/* all rules required to make the whole div clickable */ 
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 1px;
	z-index: 1;
}

.mainlisting{
	width: 178px;
	height: 27px;
	border-radius: 0.5em;
	background-color: #242424;
	font-size: 10px;
	font-weight: lighter;
	padding-top: 11px;
}
.mainlisting:hover{
	width: 178px;
	height: 27px;
	border-radius: 0.5em;
	background-color: #cc0000;
	font-size: 10px;
	font-color: white;	
	padding-top: 11px;
}
    
    .engineers-intro {
        width: 860px;
        margin: 22px auto 18px;
        padding: 24px 40px 28px;
        box-sizing: border-box;
        background: #111111;
        border-left: 5px solid #cc0000;
        color: #dddddd;
        text-align: left;
        line-height: 1.6
    }

    .engineer-grid {
        width: 860px;
        margin: 0 auto 28px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .engineer-card {
        min-height: 118px;
        box-sizing: border-box;
        padding: 18px 16px;
        background: #1a1a1a;
        border: 1px solid #444444;
        border-top: 4px solid #cc0000;
        text-align: left;
    }

    .engineer-card h2 {
        margin: 0 0 8px;
        color: #ffffff;
        font-size: 18px;
        line-height: 1.2;
    }

    .engineer-card h2 a {
        color: #ffffff;
        text-decoration: none;
    }

    .engineer-card h2 a:hover,
    .engineer-card h2 a:focus {
        color: #cc0000;
        text-decoration: underline;
    }

    .engineer-alias {
        min-height: 20px;
        margin: 0 0 8px;
        color: #cccccc;
        font-size: 14px;
        font-style: italic;
    }

    .engineer-role {
        margin: 0;
        color: #999999;
        font-size: 13px;
    }

    .engineers-updated {
        width: 860px;
        margin: 0 auto 24px;
        color: #999999;
        font-size: 12px;
        text-align: right;
    }    
	
	.engineer-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.engineer-card-link .engineer-card {
    cursor: pointer;
}

.engineer-card-link:hover .engineer-card,
.engineer-card-link:focus .engineer-card {
    border-color: #cc0000;
    background-color: #242424;
}

.engineer-card-link:focus-visible {
    outline: 2px solid #cc0000;
    outline-offset: 3px;
}
