/* _style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
:root{
  --bg:#0B4D74;;       /* deep blue background around page */
  --nav:#163a4a;      /* darker bar behind menu */
  --panel:#ffffff;    /* content panel */
  --accent:#2b6a95;   /* footer accent bar */
  --muted:#cccccc;
  --max-width:1000px;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Arial, Helvetica, sans-serif;background:var(--bg);color:#222}
.wrapper{
  max-width:var(--max-width);
  margin:24px auto;
  background:linear-gradient(#0b2a3a, #0B4D74;) padding-box;
  padding:0;
  border:6px solid rgba(0,0,0,0.25);
  box-shadow:0 2px 0 rgba(255,255,255,0.02) inset;
}

/* header image */
.site-header{
  width:100%;
  display:block;
  background:#000;
  font-size: 24px;
  color: white;
  padding: 10px;
}
.site-header img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  max-height:140px;
}

/* navigation */
.navbar{
  background:var(--nav);
  color:#fff;
  display:flex;
  align-items:center;
  padding:8px 12px;
  position:relative;
  gap:12px;
  flex-wrap:wrap;
}
.nav-left{flex:1}
.nav-right{display:flex;align-items:center;gap:8px}
.menu{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}
.menu a{
  color:#fff;
  text-decoration:none;
  padding:8px 12px;
  display:inline-flex;
  gap:8px;
  align-items:center;
  border-radius:3px;
}
.menu a:hover{background:rgba(255,255,255,0.05)}
.menu .dropdown{position:relative}
.menu .dropdown-toggle{cursor:pointer}
.menu .dropdown-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  color:#222;
  min-width:180px;
  border-radius:3px;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
  z-index:20;
  overflow:hidden;
}
.menu .dropdown-menu a{
  color:#163a4a;
  padding:8px 12px;
  display:block;
  border-bottom:1px solid #eee;
}
.menu .dropdown-menu a:last-child{border-bottom:0}
.menu .dropdown:hover .dropdown-menu{display:block}

/* content panel */
.content{
  background:var(--panel);
  padding:18px 22px;
  min-height:260px;
}


.content h1{margin-top:0;color:#163a4a;font-size: 22px;}

.content h2{margin-top:0;color:#163a4a;font-size: 18px;}

/* Target links inside elements with class "content" */
.content a {
  color: #3076AB;        /* link color */
  text-decoration: none; /* remove underline */
  font-weight: 700;      /* optional: change weight/style */
  transition: color 150ms ease;
}

/* Hover / focus state */
.content a:hover,
.content a:focus {
  color: #4D9FDE;        /* slightly darker on hover */
  text-decoration: none; /* still no underline */
  outline: none;
}

/* Visited state (optional) */
.content a:visited {
  color: #591E7D;
}



hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin: 24px;
  margin-bottom: 1.714285714rem;
}

.responsive {
  max-width: 100%;
  height: auto;
}

/* footer */
.site-footer{
  border-top:6px solid var(--accent);
  background:linear-gradient(#0f3a4b, #07202a);
  color:#ddd;
  padding:10px 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
}
.site-footer .left{opacity:0.9}
.site-footer .right{opacity:0.8}

/* mobile: collapse menu into button */
.menu-toggle{
  display:none;
  background:transparent;
  border:0;
  color:#fff;
  font-size:20px;
  cursor:pointer;
}
@media(max-width:720px){
  .menu{display:none;flex-direction:column;width:100%}
  .menu a{width:100%;padding:12px}
  .menu .dropdown-menu{position:relative;box-shadow:none}
  .menu-toggle{display:inline-block}
  .navbar{padding:8px}
  .menu.show{display:flex}
  .wrapper{margin:12px}
  .site-header img{max-height:120px}
}








/* textarea background, padding, border radius */
#msg {
  background-color: #f6f8fa;   /* change color f6f8fa */ 
  color: #111;                 /* text color */
  padding: 5px;
  border: 1px solid #d0d7de; 
  border-radius: 8px;
  width: 100%;
  min-height: 10px;
  box-sizing: border-box;
  font-size: 14px;
}

/* basic send button */
#send {
  background: linear-gradient(180deg, #0B4356, #0097B8);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: transform .08s ease, box-shadow .08s ease;
}

/* hover/focus/active states */
#send:hover { box-shadow: 0 6px 18px rgba(2,132,199,0.18); transform: translateY(-1px); }
#send:active { transform: translateY(0); box-shadow: none; }
#send:focus { outline: 2px solid rgba(6,182,212,0.25); outline-offset: 2px; }





.responsive {
  max-width: 100%;
  height: auto;
}

.about-card1 {
  margin-top:18px;
  padding:12px;
  border:1px solid #ccc;   
  border-radius:8px;     
  background:#fff;
  box-shadow: none;
  overflow:auto;  
} 

.about-card2 {
  margin-top:18px;
  padding:12px;
  border:1px solid #ccc;   
  border-radius:8px;     
  background:#FAF3C8;
  box-shadow: none;
  overflow:auto;  
} 