@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
/* ================================
   POLYSPECTIVE GLOBAL CSS THEME
   Clean • Professional • International Standard
   Colors based on sidebar scheme provided
   Primary: #00286D (Deep Blue)
   Secondary: #2b8f00 (Accent Green)
   Highlight: #eaff00 (Neon Yellow)
   Neutral: #ffffff, #f5f8ff, #d9e2f5
================================== */

/* Global Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
}

body {
  background: #00286D;
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
  border: none;
}
/* Remove unwanted borders or background in header */
header, footer {
  border: none;
  background: none;
}


/* Example of section padding reset */
section {
  padding: 0;
  margin: 0;
}

/* ================================
   TYPOGRAPHY SYSTEM (Headings & Text)
================================== */
:root {
  --primary: #00286D;
  --secondary: #2b8f00;
  --highlight: #eaff00;
  --light-bg: #f5f8ff;
  --border-light: #d9e2f5;
  --text-dark: #000000;
  --text-light: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

h4 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

h5 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

h6 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: #333;
}

p, li, span {
  font-size: 1rem;
  color: #333;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  border-left: 6px solid var(--secondary);
  padding-left: 12px;
  margin-bottom: 1rem;
}

/* ================================
   GLOBAL LINKS & BUTTONS
================================== */

a {
  text-decoration: none;
  color: var(--primary);
  transition: 0.25s ease;
}

a:hover {
  color: var(--secondary);
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: var(--highlight);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.25s;
  border: none;
}

.btn-primary:hover {
  background: var(--secondary);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--highlight);
}

/* ================================
   PAGE CONTAINERS & LAYOUT
================================== */
.container {
  width: min(1200px, 95%);
  margin: auto;
  padding: 2rem 0;
}

.card {
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}

/* ================================
   NAVIGATION (MAIN TOP MENU)
================================== */
nav {
  width: 100%;
  background: var(--primary);
  padding: 16px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav ul li a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 4px;
}

nav ul li a:hover {
  background: var(--secondary);
  color: var(--highlight);
}

/* ================================
   JOURNAL SECTIONS LAYOUT
================================== */
.journal-section {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.journal-header {
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.journal-header h2 {
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--primary);
}

.journal-meta {
  font-size: 0.95rem;
  color: #ffffff;
}

/* ================================
   TABLE STYLING (Matches Sidebar Theme)
================================== */
.table-custom {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
}

.table-custom th {
  height: 45px;
  background: #ffffff;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
}

.table-custom td {
  height: 40px;
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.table-custom tr:nth-child(even) {
  background: #f0f4ff;
}

.table-custom tr:hover {
  background: var(--secondary);
  color: #fff;
}

/* ================================
   FOOTER
================================== */
footer {
  background: var(--primary);
  padding: 2rem;
  color: #fff;
  text-align: center;
  margin-top: 3rem;
  border-top: none;
}

footer a {
  color: var(--highlight);
  font-weight: 600;
}

footer a:hover {
  color: var(--secondary);
}

/* ================================
   BREADCRUMB STYLE (Text White)
================================== */
.breadcrumb, .breadcrumb a, .breadcrumb span {
  color: #ffffff !important;
}
.breadcrumb a:hover {
  color: var(--highlight) !important;
}

.hover {
	width: 100%;
	border-collapse:collapse;
}
.hover th {
    height: 30px;
    background:#ffffff;
    color: #00286D
}
.hover td{
   height:30px;
   padding-top:3px;
   vertical-align:middle;
   border-bottom:1px solid #ffffff; 
   text-align:center;
}
.hover td a {
	width:100%;
	display: block;        
}
.hover tr {
	background:#00286D;
	color:#ffffff;
}
.hover tr:hover {
	background-color:#2b8f00;
}
.hover tr a {
	color:#eaff00;
}


/* Blue Bar Below Menu and Above Page Heading */
.page-header-bar {
  background-color: #00286D; /* Dark Blue */
  color: #fff;
  padding: 8px 0; /* Adjust padding as needed */
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Page Heading */
.page-heading {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  margin-top: 1.5rem; /* Space above the heading */
  margin-bottom: 0.75rem; /* Space below the heading */
}


/* CONTACT FORM — POLYSPECTIVE DESIGN */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --primary: #00286D;      /* Deep Blue */
  --secondary: #2b8f00;    /* Green */
  --highlight: #eaff00;    /* Yellow */
  --light-bg: #f5f8ff;
  --border-light: #d9e2f5;
}

.contact-container {
  width: min(650px, 95%);
  margin: 3rem auto;
  background: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.10);
}

.contact-title {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-left: 6px solid var(--secondary);
  padding-left: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: #ffffff;
  outline: none;
  font-family: Roboto, sans-serif;
  transition: 0.25s ease;
}

/* Input Focus State */
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 40, 109, 0.18);
}

/* Button */
.contact-btn {
  background: var(--primary);
  color: var(--highlight);
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: var(--secondary);
  color: #fff;
}

/* Mobile Response */
@media (max-width: 480px) {
  .contact-title {
    font-size: 1.6rem;
  }
  .contact-container {
    padding: 1.4rem 1.2rem;
  }
}



/* SOCIAL MEDIA SECTION */
.social-contact {
  text-align: center;
  margin-top: 2.5rem;
}

.social-contact h3 {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Icon Row */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

/* Individual Icons */
.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  color: #ffffff;
  transition: 0.3s ease;
}

/* Facebook */
.social-icon.facebook {
  background: #1877f2;
}
.social-icon.facebook:hover {
  background: #1053a6;
}

/* Twitter */
.social-icon.twitter {
  background: #1da1f2;
}
.social-icon.twitter:hover {
  background: #0d81c2;
}

/* Instagram */
.social-icon.instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285AEB);
}
.social-icon.instagram:hover {
  opacity: 0.8;
}

/* LinkedIn */
.social-icon.linkedin {
  background: #0a66c2;
}
.social-icon.linkedin:hover {
  background: #084a8f;
}



/* TWO-COLUMN CONTACT PAGE */
.contact-page {
  display: flex;
  gap: 2rem;
  width: min(1200px, 95%);
  margin: 2rem auto;
}

/* LEFT COLUMN — FORM */
.contact-left {
  flex: 2;
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* RIGHT COLUMN — PORTRAIT + INFO */
.contact-right {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.portrait-box {
  width: 100%;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.portrait-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.side-info {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.side-info h3 {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.side-info p {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

/* SOCIAL ICONS—REUSING PREVIOUS STYLES */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  transition: 0.3s;
}

.social-icon.facebook { background: #1877f2; }
.social-icon.twitter { background: #1da1f2; }
.social-icon.instagram { background: #d6249f; }
.social-icon.linkedin { background: #0a66c2; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-page {
    flex-direction: column;
  }
}
